-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (74 loc) · 1.23 KB
/
style.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
h1 {
font-size: 3em;
font-weight: 300;
margin: 1em 5vw;
}
h2 {
font-size: 2em;
margin: 1.5em 5vw 0em;
}
p {
font-size: 1.2em;
width: 80vw;
max-width: 1200px;
text-align: justify;
text-align-last: center;
}
body.online #home {
background-color: #01a651;
}
body.offline #home {
background-color: #ed1d25;
}
body.partially #home {
background-color: #d58a00;
}
#home {
background-color: #04adef;
transition: background-color 1s !important;
color: white;
text-align: center;
}
#home h1 {
font-size: 2em;
margin-bottom: 1rem;
margin-top: 1rem;
font-weight: 300;
}
#status-short {
font-size: 10em;
line-height: 1em;
margin-bottom: 1rem;
display: block;
}
#status-long {
font-size: 2em;
font-weight: 300;
}
body {
margin: 0;
font-family: Roboto, sans-serif;
background-color: #fafafa;
}
section {
min-height: 50vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
table {
width: 100vw;
max-width: 850px;
text-align: center;
}
th {
position: sticky;
top: 0;
background: #fafafa;
}
footer {
text-align: center;
height: 2em;
line-height: 2em;
}