tracker-stats/css/style.css
2024-11-03 21:56:08 +01:00

57 lines
No EOL
742 B
CSS

body {
width: 100vw;
height: 100vh;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
background: #eff1f5;
color: #4c4f69;
}
@media (prefers-color-scheme: dark) {
body {
background: #1e1e2e;
color: #cdd6f4;
}
}
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)
}
}