-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (81 loc) · 1.29 KB
/
style.css
File metadata and controls
97 lines (81 loc) · 1.29 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
body{
background-color: lightgrey;
}
#container{
margin: auto;
margin-top: 50px;
width: 40%;
}
#inner-circle {
position: absolute;
top: 2%;
left: 2%;
width: 96%;
height: 96%;
background-color: white;
border-radius: 50%;
}
#outer-circle {
position: absolute;
width: 410px;
height: 410px;
background-color: white;
border-radius: 50%;
}
#second-hand {
position: absolute;
top: 49.5%;
left: 0%;
width: 100%;
height: 1%;
}
.visible{
position: absolute;
top: 0%;
left:50%;
}
#sec{
background: red;
width: 45%;
height: 100%;
/*border-radius: 90%;*/
box-shadow: 3px 3px 5px #888888;
}
#minute-hand {
position: absolute;
top: 49%;
left: 0%;
width: 100%;
height: 2%;
}
#min{
background: black;
width: 38%;
height: 100%;
/* border-radius: 90%; */
box-shadow: 3px 3px 5px #888888;
}
#hour-hand {
position: absolute;
top: 48.5%;
left: 0%;
width: 100%;
height: 3%;
}
#hour{
background: black;
width: 30%;
height: 100%;
/* border-radius: 90%; */
box-shadow: 3px 3px 5px #888888;
}
#center-dot {
position: absolute;
top: 48%;
left: 48%;
width: 4%;
height: 4%;
background: black;
border-radius: 50%;
box-shadow: 3px 3px 5px #888888;
}