mirror of
https://github.com/smartyellow/status.git
synced 2025-01-18 21:47:58 +00:00
31 lines
551 B
CSS
31 lines
551 B
CSS
|
html, body {
|
||
|
--body-bg: #000;
|
||
|
--tile-bg: #181818;
|
||
|
--red: red;
|
||
|
--green: green;
|
||
|
--radius: 10px;
|
||
|
--cols: 4;
|
||
|
--rows: 3;
|
||
|
|
||
|
background-color: var(--body-bg);
|
||
|
color: #fff;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||
|
}
|
||
|
|
||
|
.theme-light {
|
||
|
--body-bg: #fff;
|
||
|
--tile-bg: #dedede;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
transition: linear 0.4s;
|
||
|
cursor: pointer;
|
||
|
background: none;
|
||
|
border: none;
|
||
|
appearance: none;
|
||
|
padding: 1rem;
|
||
|
color: inherit;
|
||
|
}
|