73 lines
No EOL
910 B
CSS
73 lines
No EOL
910 B
CSS
body {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
background: #eff1f5;
|
|
color: #4c4f69;
|
|
|
|
font-family: "Terminess Nerd Font Mono", monospace;
|
|
}
|
|
|
|
a {
|
|
color: #8839ef;
|
|
text-decoration: none;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background: #1e1e2e;
|
|
color: #cdd6f4;
|
|
}
|
|
|
|
a {
|
|
color: #cba6f7;
|
|
}
|
|
}
|
|
|
|
th,
|
|
td {
|
|
text-align: left;
|
|
}
|
|
|
|
fieldset {
|
|
border: 1px solid currentColor;
|
|
}
|
|
|
|
.container {
|
|
width: auto;
|
|
height: auto;
|
|
display: inline;
|
|
}
|
|
|
|
legend {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.nf-spin {
|
|
display: inline-block;
|
|
|
|
animation-delay: 0;
|
|
animation-direction: normal;
|
|
|
|
animation-name: spin;
|
|
animation-duration: 2s;
|
|
animation-iteration-count: infinite;
|
|
animation-timing-function: linear
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg)
|
|
}
|
|
|
|
to {
|
|
transform: rotate(1turn)
|
|
}
|
|
} |