88x31s are a thing

This commit is contained in:
erin 2024-09-06 07:07:41 -04:00
parent 8438c0428a
commit 93be5b8d4a
4 changed files with 93 additions and 1 deletions

View file

@ -239,6 +239,8 @@ main {
font-family: "SOADialogue";
// font exported with 10px ascenders, 2px descenders
font-size: 12rem;
// this element might be a heading; we don't care
font-weight: normal;
// trying our goddamn best to make the browser render the pixel font
// correctly, except i dont think this actually helps lol
@ -371,3 +373,23 @@ ul {
margin-bottom: -5rem;
}
}
.eightyeightbythirtyones {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
padding: calc(2px * var(--pixel-scale));
gap: calc(2px * var(--pixel-scale));
img {
display: block;
box-shadow: 0 0 0 calc(1px * var(--pixel-scale)) rgb(255 255 255 / 0.5)
}
}
small {
display: inline-block;
font-size: 10px;
line-height: 1.5;
}