44 lines
616 B
CSS
44 lines
616 B
CSS
#accessibility {
|
|
/* position: sticky;
|
|
bottom: 1em;
|
|
left: 1em; */
|
|
background-color: var(--background-color);
|
|
padding: 0.5em;
|
|
}
|
|
|
|
#accessibility fieldset {
|
|
margin-block: 0;
|
|
}
|
|
|
|
/* * {
|
|
font-smooth: never;
|
|
-webkit-font-smoothing: subpixel-antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
} */
|
|
|
|
* {
|
|
transition: background-color 0.25s, color 0.25s, opacity 0.25s;
|
|
}
|
|
|
|
.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;
|
|
}
|