This repository has been archived on 2024-08-06. You can view files and clone it, but cannot push or open issues or pull requests.
readyornot/styles/globals.css

36 lines
607 B
CSS
Raw Permalink Normal View History

2022-12-03 20:02:18 +00:00
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;
}