-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
70 lines (63 loc) · 1.16 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
* {
margin: 0;
padding: 0;
border: 0;
}
body {
background-color: #000;
}
.clock {
height: 500px;
width: 500px;
background-color: #DDDDDD;
border-radius: 100%;
border: 3px solid #AAAAAA;
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
align-items: center
}
.time {
position: absolute;
font-style: italic;
font-family: "Verdana";
text-align: center;
align-items: center
}
.center {
width: 10px;
height: 10px;
position: absolute;
left: 0; right: 0; bottom: 0; top: 0;
margin: auto;
background: #000;
border-radius: 100%;
}
#seconds {
position: absolute;
height: 160px;
width: 2px;
left: 0; right: 0; bottom: 160px; top: 0px;
margin: auto;
background: #000;
-webkit-transform-origin: bottom;
background: #FF4136;
}
#minutes {
position: absolute;
height: 200px;
width: 2px;
left: 0; right: 0; bottom: 200px; top: 0px;
margin: auto;
background: #000;
-webkit-transform-origin: bottom;
}
#hours {
position: absolute;
height: 80px;
width: 6px;
left: 0; right: 0; bottom: 80px; top: 0px;
margin: auto;
background: #000;
-webkit-transform-origin: bottom;
}