You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.0 KiB
CSS
50 lines
1.0 KiB
CSS
* { box-sizing: border-box; }
|
|
html { color: white; background-color: black; font-size: clamp(16px, 2vw, 24px); width: 100%; }
|
|
body { margin: 0; padding: 2rem; width: 100%; line-height: 1.5; }
|
|
a { color: hsl(210, 100%, 60%); }
|
|
pre, .code { background-color: #222; font-size: 0.9rem; white-space: break-spaces; overflow: auto; }
|
|
pre { padding: 1em; }
|
|
.code { padding: 0.1em 0.25em; }
|
|
.hidden { display: none; }
|
|
|
|
footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
max-width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
footer { font-size: 0.85em; margin-top: 2em; padding-top: 2em; border-top: 1px white solid; }
|
|
|
|
footer:last-of-type {
|
|
padding-bottom: 1em;
|
|
}
|
|
|
|
footer p {
|
|
max-width: 40em;
|
|
margin: .5em;
|
|
text-align: center;
|
|
}
|
|
|
|
footer nav:first-of-type {
|
|
margin-block-start: 1em;
|
|
}
|
|
|
|
footer nav :is(a, span) {
|
|
display: inline-block;
|
|
padding: .5em;
|
|
margin-inline: .1em;
|
|
margin-block: .1em;
|
|
min-width: 3em;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
footer h2 {
|
|
margin-block: 0.5em;
|
|
}
|
|
|
|
#more-sites-info-button {
|
|
font-size: 1.25em;
|
|
}
|