feat: finish breaking up the stylesheets

This commit is contained in:
Kat Inskip 2025-11-09 13:54:39 -08:00
parent 35f5f48cc9
commit 8ef43c8de1
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
10 changed files with 158 additions and 148 deletions

23
sass/images.scss Normal file
View file

@ -0,0 +1,23 @@
img {
/* Make sure that the images do not overflow the body */
max-width: 100%;
/* Make sure that the images are not too tall as to be annoying */
max-height: 50ch;
}
#gallery {
ul {
list-style-type: none;
margin: 0;
padding: 0;
column-count: 2;
}
}
a:has(img) {
border-bottom: none !important;
padding: 0.02rem;
img {
border: 0.01em transparent solid;
}
}