53 lines
No EOL
761 B
CSS
53 lines
No EOL
761 B
CSS
body, html {
|
|
height: 100%;
|
|
margin: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
color: white;
|
|
background-color: black;
|
|
|
|
font-family: 'B612', 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
font-size: min(1.5vw, 1.5vh);
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
a {
|
|
color: white;
|
|
}
|
|
|
|
|
|
h1, h2, h3 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
button, .button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.25em;
|
|
text-decoration: none;
|
|
border: 1px solid white;
|
|
cursor: pointer;
|
|
|
|
padding: 0.25em 0.5em;
|
|
border-radius: 0.25em;
|
|
|
|
background: black;
|
|
color: white;
|
|
}
|
|
|
|
select {
|
|
background: black;
|
|
color: white;
|
|
padding: 0.25em 0.5em;
|
|
border-radius: 0.25em;
|
|
border: 1px solid white;
|
|
|
|
&:disabled {
|
|
opacity: 0.7;
|
|
}
|
|
} |