-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
104 lines (85 loc) · 1.85 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
* {
margin: 0;
padding: 0;
}
@font-face {
font-family: "Nunito";
font-style: normal;
font-weight: 400;
src: local(""), url("fonts/nunito-latin-regular.woff2") format("woff2"),
url("fonts/nunito-latin-regular.woff") format("woff");
}
body,
html {
margin: 0.5rem;
font-family: "Nunito", Arial, Helvetica, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: rgb(235, 235, 235);
height: calc(100% - 1rem);
}
.background {
border-radius: 1rem;
background-color: rgb(244, 249, 247);
height: 100%;
}
.shadow-2 {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.02),
0 4px 8px rgba(0, 0, 0, 0.02), 0 8px 16px rgba(0, 0, 0, 0.02),
0 16px 32px rgba(0, 0, 0, 0.02), 0 32px 64px rgba(0, 0, 0, 0.02);
}
.shadow-5 {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.05),
0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05),
0 16px 32px rgba(0, 0, 0, 0.05), 0 32px 64px rgba(0, 0, 0, 0.05);
}
.bg-very-light-grey {
background-color: rgb(240, 240, 240);
}
.bg-white {
background-color: white;
}
.bg-silver {
background-color: rgb(230, 230, 245);
}
.bg-blue {
background: linear-gradient(
0deg,
rgba(90, 142, 239, 1) 0%,
rgba(111, 162, 243, 1) 100%
);
}
.bg-light-grey {
background: linear-gradient(
0deg,
rgb(232, 232, 232) 0%,
rgb(255, 255, 255) 100%
);
}
.bg-super-light-grey {
background-color: rgb(245, 245, 245);
}
.bg-green {
background: linear-gradient(0deg, rgb(73, 158, 71) 0%, rgb(94, 212, 92) 100%);
}
.white {
color: white;
}
.darkgray {
color: rgb(109, 109, 109);
}
.greyBlue {
color: rgb(130, 116, 182);
}
.menuWidth {
min-width: 12rem;
}
.chartHeight {
height: 17rem;
}
.roundedMore {
border-radius: 0.5rem;
}
.border-grey {
border: 1px solid rgb(225, 225, 225);
}