-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmonitor.css
More file actions
51 lines (51 loc) · 697 Bytes
/
monitor.css
File metadata and controls
51 lines (51 loc) · 697 Bytes
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
/**
* Style for load monitor
*/
.wrapper {
margin: 0 auto 0 auto;
width: 600px;
font-family: 'Quicksand', sans-serif;
}
.box {
width: 300px;
height: 180px;
float: left;
color: white;
}
.full {
width: 600px;
}
.title {
display: block;
text-align: center;
margin-top: 60px;
}
.value {
display: block;
text-align: center;
font-size: 2.5em;
}
.black {
background-color: black;
}
.orange {
background-color: orange;
}
.orangered {
background-color: orangered;
}
.green {
background-color: green;
}
.purple {
background-color: mediumpurple;
}
.blue {
background-color: dodgerblue;
}
.grey {
background-color: darkgrey;
}
.pink {
background-color: hotpink;
}