1
0
Fork 0
yummy.cricket/index.css

60 lines
957 B
CSS
Raw Normal View History

2022-05-18 08:29:00 -04:00
@import url(base.css);
2024-03-02 12:23:17 -05:00
:root {
width: 100vw; height: 100vh;
margin: 0; padding: 0;
display: grid;
align-items: center;
justify-content: center;
}
2022-05-18 08:29:00 -04:00
main {
2024-03-02 12:23:17 -05:00
width: 35em;
padding: 2em;
2022-05-18 08:29:00 -04:00
}
#mlem {
margin: 36px auto -50px;
position: relative;
height: 219px;
width: 420px;
2024-03-02 12:23:17 -05:00
cursor-events: none;
2022-05-18 08:29:00 -04:00
}
.mlem-text {
font-size: 110%;
position: absolute;
font-weight: 700;
margin: 0;
}
.niss { bottom: 100%; left: 20px; }
.nisse { bottom: 85%; right: 0; }
#mlem img {
/* firefox doesn't support "pixelated" but does treat "crisp-edges"
* to mean that */
image-rendering: crisp-edges;
image-rendering: pixelated;
}
2024-03-02 12:23:17 -05:00
#links img {
margin-right: 0.75em;
2022-05-18 08:29:00 -04:00
height: 1.5em;
width: 1.5em;
filter: drop-shadow(0 0 10px var(--glow-col));
2024-03-02 12:23:17 -05:00
vertical-align: middle;
2022-05-18 08:29:00 -04:00
}
2024-03-02 12:23:17 -05:00
menu {
2022-05-18 08:29:00 -04:00
display: grid;
2024-03-02 12:23:17 -05:00
gap: 1em;
grid-template-columns: 1fr 1fr;
2022-05-18 08:29:00 -04:00
max-width: 85%;
margin: auto;
padding: 0;
font-size: 125%;
}
2024-03-02 12:23:17 -05:00
li { list-style: none; }