Add /wish

This commit is contained in:
2024-12-14 20:20:33 -06:00
parent b0106e6666
commit 5b46c84afb
7 changed files with 118 additions and 10 deletions

View File

@ -233,6 +233,9 @@ button {
button {
margin-top: var(--space-s);
}
&.galleryButtons {
margin-top: calc(var(--space-l) * -1);
}
}
button,
.nav-item {
@ -265,7 +268,7 @@ nav {
.now {
display: grid;
grid-column: var(--span-grid);
padding-bottom: var(--space-xl);
padding-bottom: var(--space-l);
}
section {
display: grid;
@ -290,13 +293,17 @@ section {
grid-column: var(--span-grid);
font-size: var(--step-1);
margin: 0;
padding-bottom: var(--space-xl);
padding-top: var(--space-l);
padding-bottom: var(--space-l);
line-height: calc(var(--step-1) * 0.5 + var(--step-1));
&:has(+ a > button) {
padding-bottom: 0;
}
}
ul {
margin: 0;
grid-column: var(--span-grid);
padding-bottom: var(--space-s);
}
a {
text-decoration-color: var(--contrast-color);
@ -342,6 +349,7 @@ h1 {
font-size: var(--step-5);
font-style: normal;
line-height: calc(var(--step-5) * 0.25 + var(--step-5));
padding-bottom: var(--space-l);
}
h2 {
font-size: var(--step-2);
@ -351,7 +359,7 @@ h2 {
"SOFT" 20,
"WONK" 1;
padding-bottom: var(--space-s);
padding-top: var(--space-l);
padding-top: var(--space-s);
}
h3 {
font-size: var(--step-1);
@ -369,11 +377,11 @@ main > p > a > img {
width: 100%;
padding-top: var(--space-l);
}
.post > p {
.post > p,
section > p {
margin: 0;
padding-bottom: var(--space-s);
&:has(wc-card),
&:last-child {
&:has(wc-card) {
padding-bottom: 0;
}
}
@ -856,7 +864,7 @@ a.post-tag:hover {
.post-metadata {
display: flex;
flex-flow: row nowrap;
padding: var(--space-m) 0 var(--space-l) 0;
padding: 0 0 var(--space-l) 0;
}
.post-metadata-copy {
@ -887,6 +895,7 @@ time,
}
.profilePic:not(.links-container > img.profilePic) {
height: var(--space-xl);
width: var(--space-xl);
border-radius: 100%;
}