tidying up stuff i forgot to change

This commit is contained in:
sundae 2025-08-10 17:05:40 +03:00
parent c091831537
commit f20b697aed
No known key found for this signature in database
77 changed files with 1014 additions and 660 deletions

View file

@ -1,7 +1,16 @@
:root {
--thumb: 16rem;
}
#gallery {
& time {
display: flex;
align-self: center;
}
}
#artworks {
& p {
font-size: 1.2rem;
}
& ul {
display: grid;
grid-template-columns: repeat(
@ -11,6 +20,9 @@
padding: 0;
margin: 0;
gap: var(--pad-l);
& a {
display: block;
}
}
& h2 {
@ -21,27 +33,27 @@
margin-top: 0;
}
}
& figure {
margin: 0;
padding: var(--pad-sm);
border-width: 2px;
border-style: solid;
& img {
display: flex;
width: 100%;
height: var(--thumb);
border-bottom: unset;
object-fit: contain;
}
& a {
display: block;
text-decoration: unset;
& figure {
margin: 0;
padding: var(--pad-sm);
border-width: 2px;
border-style: solid;
& img {
display: flex;
width: 100%;
height: var(--thumb);
border-bottom: unset;
object-fit: contain;
}
& figcaption {
font-family: Urbanist, sans-serif;
font-size: var(--pad-lm);
}
& figcaption {
font-family: Urbanist, sans-serif;
font-size: var(--pad-lm);
display: flex;
align-items: baseline;
}
& .count {
margin: auto 0 0 auto;
}
}
}
@ -49,8 +61,11 @@
#art {
display: flex;
flex-direction: column;
width: fit-content;
h3 {
font-family: "Urbanist", sans-serif;
display: flex;
gap: var(--pad-sm);
}
& section:has(a:nth-child(n + 2)) {
display: flex;
@ -58,17 +73,12 @@
gap: var(--pad-l);
}
& section {
margin: var(--pad-l) 0;
& a {
display: flex;
width: calc(var(--post) - var(--view));
width: calc(var(--post) - var(--view) * 1.2);
flex-direction: column;
}
}
& time {
display: flex;
font-weight: bold;
}
}
@media screen and (max-width: 1400px) {
#art section:has(a:nth-child(n + 2)) {
@ -85,4 +95,4 @@
#art section:has(a:nth-child(n + 2)) {
flex-direction: column;
}
}
}