36 lines
607 B
CSS
36 lines
607 B
CSS
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
|
|
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
|
}
|
|
|
|
:root {
|
|
/* Ready or Not vars */
|
|
--background_black: #000;
|
|
--background_grey_opaque: #131313ee;
|
|
--background_grey: #333;
|
|
--background_red: #300;
|
|
|
|
--button_border_normal: #666;
|
|
--button_border_pressed: #333;
|
|
|
|
--floor_selector: #999;
|
|
|
|
--red: #600;
|
|
--red_light: #a00;
|
|
|
|
--text_normal: #ddd;
|
|
--text_dark: #999;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|