-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
100 lines (100 loc) · 1.54 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
.header {
margin-top: 48px;
margin-bottom: 8px;
font-size: 24px;
color: #0a376e;
font-weight: bold;
}
#NumberCount {
font-size: 28px;
font-weight: bold;
color: #2c2c2c;
}
#NumberCountDesc {
font-size: 14px;
color: #6e6e6e;
}
@font-face {
font-family: SFProDisplay;
src: url('./Fonts/FontsFree-Net-SFProDisplay-Regular.ttf');
}
@font-face {
font-family: SFProDisplay;
src: url('./Fonts/FontsFree-Net-SFProDisplay-Bold.ttf');
font-weight: bold;
}
.center {
text-align: center;
}
.centerblock {
display: block;
margin: 20px auto;
}
body {
font-family: SFProDisplay;
}
.box {
width: 343px;
height: 219px;
margin: 8px auto 8px auto;
border-radius: 4px;
border: 1px solid #e5e5e5;
}
.box2 {
width: 343px;
height: 312px;
margin: 8px auto 8px auto;
border-radius: 4px;
border: 1px solid #e5e5e5;
}
.box-header {
font-size: 14px;
margin: 8px;
font-family: SFProDisplay;
font-weight: bold;
color: #6e6e6e;
}
.flex-container {
flex-direction: column;
display: flex;
justify-content: space-between;
}
.dot {
height: 12px;
width: 12px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
vertical-align: bottom;
}
.graph-desc {
font-size: 10px;
}
#blue {
background-color: #2d9cdb;
}
#light-blue {
background-color: #56ccf2;
}
.label-gap {
margin: 2px;
}
.footer {
position: fixed;
padding: 8px;
left: 0;
bottom: 0;
width: 100%;
background-color: black;
color: white;
text-align: center;
}
#chart {
margin: 1em auto;
width: 800px;
}
/*
class .
id #
tag no prefix
*/