-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
75 lines (75 loc) · 1.16 KB
/
Copy pathstyles.css
File metadata and controls
75 lines (75 loc) · 1.16 KB
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
body {
background-color: #5c67c1;
}
.watch {
position: relative;
width: 300px;
height: 300px;
border: 8px solid #fff;
border-radius: 50%;
}
.dot {
position: absolute;
top: 48%;
left: 48%;
border: 10px solid;
border-radius: 50%;
z-index: 999;
}
.second {
position: absolute;
width: 46%;
border: 2px solid #bf8222;
top: 50%;
left: 4%;
transform: rotate(90deg);
transform-origin: 100%;
transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
z-index: 998;
}
.minute {
position: absolute;
width: 37%;
border: 4px solid #111c71;
top: 50%;
left: 11%;
transform: rotate(90deg);
transform-origin: 100%;
}
.hour {
position: absolute;
width: 28%;
border: 4px solid #111c71;
top: 50%;
left: 20%;
transform: rotate(90deg);
transform-origin: 100%;
}
.twelve {
position: absolute;
left: 47%;
top: 2%;
font-size: 1.4rem;
color: #fff;
}
.six {
position: absolute;
left: 47%;
top: 90%;
font-size: 1.4rem;
color: #fff;
}
.three {
position: absolute;
left: 92%;
top: 47%;
font-size: 1.4rem;
color: #fff;
}
.nine {
position: absolute;
left: 4%;
top: 47%;
font-size: 1.4rem;
color: #fff;
}