chs/src-web/main.css

42 lines
703 B
CSS
Raw Normal View History

:root {
--background: #13092b;
--background-transparent: #13092baa;
--background-2: #090f2b;
--foreground: #ddd;
--foreground-bright: #fff;
--foreground-dim: #aaa;
--accent: #f9027a;
--accent-dim: hsl(331, 50%, 49%);
}
2022-10-31 13:25:32 +00:00
html {
box-sizing: border-box;
}
html, body {
padding: 0;
margin: 0;
font-family: Ubuntu, sans-serif;
font-size: 16px;
background-color: var(--background);
color: var(--foreground);
2022-10-31 13:25:32 +00:00
}
* {
box-sizing: inherit;
}
body {
display: grid;
place-items: center;
width: 100%;
min-height: 100vh;
}
#root {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}