1
0
Fork 0
mirror of https://github.com/movie-web/movie-web.git synced 2025-03-10 02:16:22 +00:00
movie-web/src/index.css

41 lines
782 B
CSS
Raw Normal View History

2021-07-14 22:09:42 +00:00
:root {
/* TODO finish theming for entire css */
--theme-color: #E880C5;
--theme-color-text: var(--theme-color);
--failed: #d85b66;
--body: #16171D;
--card: #22232A;
--text: white;
--text-secondary: #BCBECB;
--content: #36363e;
--content-hover: #3C3D44;
--button: #A73B83;
--button-hover: #9C3179;
--button-active: #8b286a;
--choice: #2E2F37;
--choice-hover: #45464D;
--choice-active: #45464D;
}
2021-07-13 22:31:37 +00:00
body, html {
margin: 0;
2021-07-14 22:09:42 +00:00
background-color: var(--body);
2021-07-13 22:31:37 +00: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;
}