23 lines
292 B
CSS
23 lines
292 B
CSS
* {
|
|
color: inherit;
|
|
margin: 0;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
body {
|
|
color: white;
|
|
overflow: hidden;
|
|
background-color: black;
|
|
}
|
|
|
|
button {
|
|
cursor: pointer;
|
|
border: solid 1px white;
|
|
padding: 1em;
|
|
background-color: transparent;
|
|
|
|
&.solid {
|
|
color: black;
|
|
background-color: white;
|
|
}
|
|
}
|