blob: 4f3329713fdf37840b3826c60fb7ee40ccc12ea1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
@import url(variables.css);
@import url(fonts.css);
html {
background-color: #282828;
text-align: center;
color: #ebdbb2;
}
body {
margin: 0;
color: #ebdbb2;
font-family: "JetBrains Mono", monospace;
height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#app {
height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
|