mirror of
https://github.com/okiba-org/frontend.git
synced 2025-04-20 01:16:56 +00:00
22 lines
300 B
CSS
22 lines
300 B
CSS
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&display=swap");
|
|
|
|
* {
|
|
margin: 0;
|
|
font-family: "IBM Plex Mono", monospace;
|
|
}
|
|
|
|
body {
|
|
background: black;
|
|
color: white;
|
|
}
|
|
|
|
#root {
|
|
height: 100vh;
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
#root {
|
|
height: 93vh;
|
|
}
|
|
}
|