2020-05-09 16:18:36 +00:00
|
|
|
@import './normalize.css';
|
|
|
|
@import './typography.css';
|
|
|
|
|
2020-05-09 16:47:03 +00:00
|
|
|
/* * {
|
2020-05-03 20:08:59 +00:00
|
|
|
transition: background-color 500ms ease-in-out;
|
2020-05-09 16:47:03 +00:00
|
|
|
} */
|
2020-04-24 19:54:12 +00:00
|
|
|
|
2020-05-03 20:08:59 +00:00
|
|
|
html {
|
2020-05-09 17:27:47 +00:00
|
|
|
height: 100vh;
|
2020-04-24 19:54:12 +00:00
|
|
|
|
2020-04-14 20:05:22 +00:00
|
|
|
--main-background: #ffffff;
|
|
|
|
--secondary-background: #eeeeee;
|
|
|
|
--main-text: #333333;
|
2020-05-09 17:27:47 +00:00
|
|
|
--main-text-inverted: #eeeeee;
|
2020-04-14 20:05:22 +00:00
|
|
|
--main-scroll: #555;
|
|
|
|
--panels-background: #222324;
|
|
|
|
--panels-text: #ffffff;
|
|
|
|
--panels-scroll: #2a2c2c;
|
2020-04-24 19:54:12 +00:00
|
|
|
--accent-color: #0a84ff;
|
2020-04-14 20:05:22 +00:00
|
|
|
--accent-text: #ffffff;
|
|
|
|
--tag-background: #0062c4;
|
|
|
|
--tag-text: #ffffff;
|
|
|
|
--toast-background: #000000dd;
|
|
|
|
--toast-secondary: #ffffff22;
|
|
|
|
--toast-text: #ffffffde;
|
2020-05-09 16:18:36 +00:00
|
|
|
--separator: #8f8f8f;
|
2020-04-14 20:05:22 +00:00
|
|
|
}
|
|
|
|
|
2020-05-03 20:08:59 +00:00
|
|
|
html[data-theme='dark'] {
|
2020-04-14 20:05:22 +00:00
|
|
|
--main-background: #141414;
|
|
|
|
--secondary-background: #242424;
|
|
|
|
--main-text: #eeeeee;
|
2020-05-09 17:27:47 +00:00
|
|
|
--main-text-inverted: #333333;
|
2020-04-14 20:05:22 +00:00
|
|
|
--panels-background: #1a1a1a;
|
|
|
|
--panels-text: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0px;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
font-family: 'Open Sans';
|
|
|
|
overflow: hidden;
|
2020-05-03 20:08:59 +00:00
|
|
|
background: var(--main-background);
|
2020-04-14 20:05:22 +00:00
|
|
|
color: var(--main-text);
|
|
|
|
}
|