-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (52 loc) · 1003 Bytes
/
styles.css
File metadata and controls
60 lines (52 loc) · 1003 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
52
53
54
55
56
57
58
59
60
html, body {
height: 100%;
overflow: hidden;
width: 100%;
}
body {
font-family: 'Open Sans', sans-serif;
position: relative;
}
body.black { background-color: black; }
body.red { background-color: red; }
body.yellow { background-color: yellow; }
body.green { background-color: green; }
body.blue { background-color: blue; }
.circle, .time, .value {
position: absolute;
text-align: center;
width: 100%;
}
.time {
color: white;
font-size: 40px;
line-height: 40px;
top: 30px;
}
.yellow .time {
color: black;
}
.circle {
background-color: white;
border-radius: 50%;
height: 260px;
margin-left: -210px;
margin-top: -110px;
left: 50%;
top: 50%;
transform: rotate(-50deg);
width: 420px;
}
.black .circle {
background-color: red;
}
.value {
font-size: 220px;
left: 50%;
line-height: 360px;
margin-left: -170px;
margin-top: -160px;
top: 50%;
vertical-align: middle;
width: 340px;
}