1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2025-01-04 16:47:40 +01:00
smov/src/index.css

39 lines
765 B
CSS
Raw Normal View History

2021-07-15 00:09:42 +02:00
:root {
--theme-color: #E880C5;
--theme-color-text: var(--theme-color);
--failed: #d85b66;
--body: #16171D;
--card: #22232A;
--text: white;
--text-secondary: #BCBECB;
2021-07-15 18:41:51 +02:00
--text-tertiary: #585A67;
2021-07-15 00:09:42 +02:00
--content: #36363e;
--content-hover: #3C3D44;
--button: #A73B83;
--button-hover: #9C3179;
--button-active: #8b286a;
--choice: #2E2F37;
--choice-hover: #45464D;
--choice-active: #45464D;
}
2021-07-14 00:31:37 +02:00
body, html {
margin: 0;
2021-07-15 00:09:42 +02:00
background-color: var(--body);
2021-07-14 00:31:37 +02:00
min-height: 100vh;
}
body, html, input, button {
font-family: 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 1rem;
}