abtmtr-v4/views/styles/style.css

49 lines
644 B
CSS
Raw Normal View History

2023-11-23 08:53:28 +00:00
#accessibility {
2023-11-27 00:58:46 +00:00
/* position: sticky;
2023-11-23 08:53:28 +00:00
bottom: 1em;
2023-11-27 00:58:46 +00:00
left: 1em; */
2023-11-23 08:53:28 +00:00
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;
}
2023-11-26 07:37:29 +00:00
img {
max-width: 100%;
}
2023-11-26 19:14:50 +00:00
2023-12-01 04:48:59 +00:00
.nav {
max-width: 38em;
margin: auto;
}
2023-11-26 19:14:50 +00:00
.nav p {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 1em;
}
2023-12-01 04:48:59 +00:00
.nav p a {
text-align: center;
}
html.base .nav {
margin: 0;
}
html.base .nav p a {
text-align: start;
}