41 lines
703 B
CSS
41 lines
703 B
CSS
: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%);
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
* {
|
|
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;
|
|
}
|