-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (59 loc) · 1.05 KB
/
style.css
File metadata and controls
61 lines (59 loc) · 1.05 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
*{
background-color: rgb(33, 34, 34);
}
#clock{
position: relative;
border: 60px solid rgb(33, 34, 34);
margin: auto;
height: 40vw;
width: 40vw;
background: url(clock.png) no-repeat;
background-size: 100%;
}
#hour, #minute, #second{
position: absolute;
border-radius: 50px;
transform-origin: bottom;
}
#hour{
background: rgb(132, 149, 132);
width: 1.9%;
height: 23%;
top: 27.4%;
left: 49.05%;
}
#minute{
background: rgb(125, 132, 125);
width: 1.2%;
height: 34%;
top: 16.45%;
left: 49.4%;
}
#second{
background: rgba(202, 14, 14, 0.911);
width:0.8%;
height: 36%;
top: 14.1%;
left: 49.67%;
opacity: 0.8;
}
#point{
position: absolute;
border-radius: 50px;
background-color: rgb(119, 121, 119);
width: 3%;
height: 3%;
top: 48.5%;
left: 48.6%;
opacity: 0.8;
}
#points{
position: absolute;
border-radius: 50px;
background-color: rgb(32, 26, 26);
width: 2%;
height: 2%;
top: 49%;
left: 49%;
opacity: 1;
}