-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (54 loc) · 1.01 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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
html{
background-color: #55c9ac;
}
#clock{
margin:auto;
top:90px;
border-radius: 100%;
background-image: url('clock.gif');
background-size: 100%;
position: relative;
width: 40vw;
height: 40vw;
}
#hour-hand,#minute-hand,#second-hand{
position: absolute;
}
#hour-hand{
width: 1.5%;
height: 29%;
border-radius: 30%;
background-color: black;
top:21%;
left: 49.2%;
transform-origin: center bottom;
}
#minute-hand{
width: 1.3%;
height: 33%;
border-radius: 30%;
background-color: black;
top:17%;
left: 49.2%;
transform-origin: center bottom;
}
#second-hand{
width: 1%;
height: 38%;
border-radius: 30%;
background-color: black;
top:12%;
left: 49.2%;
transform-origin: center bottom;
}
@media screen and (max-width:1080px) {
#clock{
width: 70vw;
height: 70vw;
}
}