-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (92 loc) · 1.6 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
89
90
91
92
93
94
95
96
97
body {
background-color: darkslategray;
}
.watch {
background-color: gray;
height: 150px;
width: 150px;
margin:auto;
border-radius: 50%;
}
.rotate-time-marker {
height: 150px;
width: 150px;
/* background-color: red; */
position: relative;
}
.time-marker {
background-color: black;
height: 20px;
width: 3px;
position: relative;
top: 0px;
left: 74px;
}
.rotate-three {
transform: rotate(90deg);
top: -150px;
}
.rotate-six {
transform: rotate(180deg);
top: -300px;
}
.rotate-nine {
transform: rotate(270deg);
top: -450px;
}
.watch-center {
position: relative;
top: -976px;
left: 74px;
/* background-color: rgba(0,0,150,0.6); */
height: 2px;
width: 2px;
border-radius: 50%;
}
.rotate-hand {
height: 150px;
width: 150px;
}
.hand {
}
.rotate-hour {
position: relative;
top: -600px;
transform: rotate();
}
.hour-hand {
background-color: black;
height: 35px;
width: 5px;
position: relative;
top: 37px;
left: 73px;
}
.rotate-minute {
position: relative;
top: -750px;
transform: rotate();
/* background-color: rgba(0,150,0,0.3); */
}
.minute-hand {
background-color: black;
height: 55px;
width: 3px;
position: relative;
top: 17.5px;
left: 74px;
}
.rotate-second {
position: relative;
top: -900px;
transform: rotate();
/* background-color: rgba(150,0,0,0.3); */
}
.second-hand {
background-color: red;
height: 55px;
width: 1px;
position: relative;
top: 20px;
left: 75px;
}