-
Notifications
You must be signed in to change notification settings - Fork 47
/
global.css
76 lines (64 loc) · 849 Bytes
/
global.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
html, body {
font-family: Montserrat,sans-serif;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
body {
display: table;
}
a {
font-weight: 700;
color: inherit;
}
h1 {
font-size: 3rem;
}
table {
margin: 0 auto;
margin-bottom: 50px;
}
td {
width: 100px;
}
.active
,.inertial
,.inactive {
font-weight: 700;
}
.active {
color: #1AB742;
}
.inertial {
color: #E8305D;
}
.inactive {
color: gray;
}
.indicator.active {
background-color: #1AB742;
}
.indicator.inertial {
background-color: #E8305D;
}
.indicator.inactive {
background-color: gray;
}
.indicator {
height: 30px;
width: 30px;
border-radius: 15px;
display: inline-block;
}
.content {
text-align: center;
display: table-cell;
vertical-align: middle;
}
.content > p, .content > h3 {
width: 400px;
max-width: 80%;
margin-left: auto;
margin-right: auto;
}