30 lines
548 B
CSS
30 lines
548 B
CSS
:root {
|
|
color-scheme: dark;
|
|
font-family:
|
|
"IBM Plex Mono", "Roboto Mono", "SFMono-Regular", Consolas, monospace;
|
|
background: #050505;
|
|
color: #f4f4f4;
|
|
text-rendering: geometricPrecision;
|
|
}
|
|
|
|
body {
|
|
min-width: 320px;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
background:
|
|
linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
|
|
#050505;
|
|
background-size: 48px 48px;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
textarea,
|
|
select {
|
|
font: inherit;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
}
|