-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
44 lines (39 loc) · 807 Bytes
/
index.css
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
*, *:before, *:after {
box-sizing: inherit;
}
.light-theme {
--background-color: #FFF1DD;
--background-color-secondary: white;
--color-label-text: rgb(168, 101, 0);
--generic-button-color: #47b960;
--generic-button-border-color: #43634a;
--translate-y: 0;
--translate-x: 0;
}
.dark-theme {
--background-color: #000435;
--background-color-secondary: #212557;
--color-label-text: white;
--generic-button-color: #31c5ff;
--generic-button-border-color: #0b455c;
--translate-y: 0;
--translate-x: 0;
}
html {
box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
margin: 0;
}
body {
width: 100vw;
height: 100vh;
margin: 0;
padding: 0;
}
#root {
height: 100%;
width: 100%;
--translate-y: 0;
--translate-x: 0;
}