Compare commits
1 Commits
e7bf1336da
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
| d7bac9300e |
+9
-3
@@ -250,8 +250,7 @@ video {
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
padding: 0 1rem;
|
padding: 1rem;
|
||||||
/* background-color:; */
|
|
||||||
/* '3px-tile.png', */
|
/* '3px-tile.png', */
|
||||||
/* 'arabesque.png', */
|
/* 'arabesque.png', */
|
||||||
/* 'beige-paper.png', */
|
/* 'beige-paper.png', */
|
||||||
@@ -264,6 +263,13 @@ body {
|
|||||||
var(--primary-10) 70%
|
var(--primary-10) 70%
|
||||||
);
|
);
|
||||||
background-attachment: fixed;
|
background-attachment: fixed;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 640px) {
|
||||||
|
body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
+22
-13
@@ -1,5 +1,6 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import "../app.css";
|
import "../app.css";
|
||||||
|
import sludgeLogo from "$lib/assests/SF26-embroidery.svg";
|
||||||
interface Props {
|
interface Props {
|
||||||
data: {};
|
data: {};
|
||||||
children: any;
|
children: any;
|
||||||
@@ -32,11 +33,11 @@
|
|||||||
<nav>
|
<nav>
|
||||||
<a href="/">Sludge</a>
|
<a href="/">Sludge</a>
|
||||||
<button onclick={change_theme}>🎲🌈</button>
|
<button onclick={change_theme}>🎲🌈</button>
|
||||||
<!-- <a href="/fest">Fest</a> -->
|
<a href="/fest">Fest</a>
|
||||||
<a href="/shirts">Shirts</a>
|
<a href="/shirts">Shirts</a>
|
||||||
<a href="/pork">Pork</a>
|
<a href="/pork">Pork</a>
|
||||||
</nav>
|
</nav>
|
||||||
|
<hr />
|
||||||
<main>
|
<main>
|
||||||
{@render children()}
|
{@render children()}
|
||||||
</main>
|
</main>
|
||||||
@@ -47,13 +48,11 @@
|
|||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
padding: 0.5rem 0;
|
padding: 0.5rem 0;
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
justify-content: flex-end;
|
|
||||||
text-shadow: 3px 3px 3px var(--secondary-7);
|
text-shadow: 3px 3px 3px var(--secondary-7);
|
||||||
a {
|
a {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
color: var(--secondary-1);
|
color: var(--secondary-1);
|
||||||
line-height: 2rem;
|
font-size: 1.25rem;
|
||||||
font-size: 1.5rem;
|
|
||||||
line-height: 1.5rem;
|
line-height: 1.5rem;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
&:first-child {
|
&:first-child {
|
||||||
@@ -70,8 +69,6 @@
|
|||||||
width: fit-content;
|
width: fit-content;
|
||||||
height: fit-content;
|
height: fit-content;
|
||||||
padding: 0.375rem 0.5rem;
|
padding: 0.375rem 0.5rem;
|
||||||
margin: auto 0;
|
|
||||||
font-family: "Baskerville";
|
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
line-height: 1.5rem;
|
line-height: 1.5rem;
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
@@ -82,19 +79,31 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
justify-content: start;
|
||||||
// padding: 1rem;
|
width: 100%;
|
||||||
justify-content: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 640px) {
|
@media screen and (min-width: 640px) {
|
||||||
|
hr {
|
||||||
|
display: block;
|
||||||
|
margin: 0 1.5rem;
|
||||||
|
color: var(--secondary-3);
|
||||||
|
}
|
||||||
nav {
|
nav {
|
||||||
padding: 1rem 20%;
|
margin-top: 4rem;
|
||||||
flex-direction: row;
|
flex-direction: column;
|
||||||
|
gap: 1.5rem;
|
||||||
|
a {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
button {
|
button {
|
||||||
margin: 0 auto 0 0;
|
align-self: end;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<h1><b title="Sludge">S</b>&<b title="Friends">F</b></h1>
|
<h1><b title="Sludge">S</b><b title="Friends">F</b></h1>
|
||||||
<h3>Here we make friends and mistakes</h3>
|
<h3>Here we make friends and mistakes</h3>
|
||||||
<div>
|
<div>
|
||||||
{#each cards as { href, name, blurb }}
|
{#each cards as { href, name, blurb }}
|
||||||
@@ -45,7 +45,8 @@
|
|||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
section {
|
section {
|
||||||
max-width: 60rem;
|
// max-width: 60rem;
|
||||||
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@@ -58,11 +59,11 @@
|
|||||||
color: var(--secondary-3);
|
color: var(--secondary-3);
|
||||||
}
|
}
|
||||||
div {
|
div {
|
||||||
background: transparent(var(--secondary-9));
|
background: transparent(var(--secondary-4));
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
padding: 0.25rem 1.5rem 2rem 1.5rem;
|
padding: 0.25rem 1.5rem 2rem 1.5rem;
|
||||||
border-radius: var(--br);
|
border-radius: var(--br);
|
||||||
max-width: 40rem;
|
// max-width: 40rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
h1 {
|
h1 {
|
||||||
@@ -82,7 +83,6 @@
|
|||||||
font-size: 0.75rem;
|
font-size: 0.75rem;
|
||||||
}
|
}
|
||||||
h2 {
|
h2 {
|
||||||
// line-height: 2rem;
|
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user