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-scroll: #555;
|
|
|
|
--panels-scroll: #2a2c2c;
|
2020-04-24 19:54:12 +00:00
|
|
|
--accent-color: #0a84ff;
|
2020-04-14 20:05:22 +00:00
|
|
|
--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-05-12 18:42:01 +00:00
|
|
|
|
|
|
|
--explicit-separator: 0.3125em;
|
2020-04-14 20:05:22 +00:00
|
|
|
}
|
|
|
|
|
2020-05-14 16:57:43 +00:00
|
|
|
html[data-theme='light'] {
|
|
|
|
--main-background: #ffffff;
|
|
|
|
--secondary-background: #eeeeee;
|
|
|
|
--main-text: #333333;
|
|
|
|
--main-text-inverted: #eeeeee;
|
|
|
|
--panels-background: #222324;
|
|
|
|
--panels-text: #ffffff;
|
|
|
|
--accent-text: #ffffff;
|
2020-05-27 20:03:09 +00:00
|
|
|
|
|
|
|
--table-bg: #ffffff;
|
|
|
|
--table-zebra: #c9c9c9;
|
|
|
|
--table-highlight: #8f8f8f;
|
2020-05-14 16:57:43 +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;
|
2020-05-12 12:18:27 +00:00
|
|
|
--accent-text: #dfdfdf;
|
2020-05-27 20:03:09 +00:00
|
|
|
|
|
|
|
--table-bg: #141414;
|
|
|
|
--table-zebra: #242424;
|
|
|
|
--table-highlight: #747474;
|
2020-04-14 20:05:22 +00:00
|
|
|
}
|
|
|
|
|
2020-05-13 21:18:11 +00:00
|
|
|
html[data-theme='purple'] {
|
|
|
|
--main-background: #0c041b;
|
|
|
|
--secondary-background: #130a29;
|
|
|
|
--main-text: #eeeeee;
|
|
|
|
--accent-color: #460ead;
|
|
|
|
--main-text-inverted: #100822;
|
|
|
|
--panels-background: #100727;
|
|
|
|
--panels-text: #ffffff;
|
|
|
|
--accent-text: #dfdfdf;
|
2020-05-27 20:03:09 +00:00
|
|
|
|
|
|
|
--table-bg: #0c041b;
|
|
|
|
--table-zebra: #130a29;
|
|
|
|
--table-highlight: #321874;
|
2020-05-13 21:18:11 +00:00
|
|
|
}
|
|
|
|
|
2020-04-14 20:05:22 +00:00
|
|
|
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);
|
|
|
|
}
|