-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
45 lines (42 loc) · 810 Bytes
/
index.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
#clockContainer{
background-color: red;
height: 40vw;
width: 40vw;
margin: auto;
background: url(clock.jpg) no-repeat;
/* border: 2px solid red; */
background-size: 100%;
position: relative;
}
#hours, #minutes, #seconds{
/* background: black; */
position: absolute;
border-radius: 10px;
}
#hours{
top: 14.7vw;
left: 19.5vw;
background: black;
height: 8vw;
width: 1vw;
transform-origin: bottom;
/* display: none; */
}
#minutes{
top: 12.7vw;
left: 19.6vw;
background: red;
height: 10vw;
transform-origin: bottom;
width: 0.8vw;
/* display: none; */
}
#seconds{
top: 10.7vw;
left: 19.6vw;
background: blue;
height: 12vw;
width: 0.6vw;
transform-origin: bottom;
/* display: none; */
}