59 lines
912 B
CSS
59 lines
912 B
CSS
@font-face {
|
|
font-family: "Lexend Deca";
|
|
src: url("/assets/fonts/Lexend Deca/Variable.ttf");
|
|
}
|
|
@font-face {
|
|
font-family: "Minecraft";
|
|
src: url("/assets/fonts/Minecraft/Regular.otf");
|
|
}
|
|
@font-face {
|
|
font-family: "Renogare";
|
|
src: url("/assets/fonts/Renogare/Regular.otf");
|
|
}
|
|
@font-face {
|
|
font-family: "NDS12";
|
|
src: url("/assets/fonts/NDS12/Regular.otf");
|
|
}
|
|
:root {
|
|
--font-family: "Lexend Deca";
|
|
}
|
|
|
|
#accessibility {
|
|
/* position: sticky;
|
|
bottom: 1em;
|
|
left: 1em; */
|
|
padding: 0.5em;
|
|
}
|
|
|
|
#accessibility fieldset {
|
|
margin-block: 0;
|
|
}
|
|
|
|
/* * {
|
|
font-smooth: never;
|
|
-webkit-font-smoothing: subpixel-antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
} */
|
|
|
|
.nav {
|
|
max-width: 38em;
|
|
margin: auto;
|
|
}
|
|
|
|
.nav p {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
gap: 1em;
|
|
}
|
|
|
|
.nav p a {
|
|
text-align: center;
|
|
}
|
|
|
|
html.base .nav {
|
|
margin: 0;
|
|
}
|
|
|
|
html.base .nav p a {
|
|
text-align: start;
|
|
}
|