-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathindex.css
More file actions
43 lines (42 loc) · 790 Bytes
/
index.css
File metadata and controls
43 lines (42 loc) · 790 Bytes
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
#clockContainer{
/* border: 2px solid red; */
height: 42vw;
width: 42vw;
background: url('clock.jpg') no-repeat;
background-size: 100%;
margin: auto;
position: relative;
}
#hour, #minute, #second{
position: absolute;
/* background-color: black; */
border-radius: 10px;
transform-origin: bottom;
}
#hour{
opacity: 0.9;
width: 1.8%;
height: 25%;
top: 23%;
left: 48.48%;
background-color: #032639;
/* display: none; */
}
#minute{
width: 0.9%;
height: 31%;
top: 17%;
left: 49%;
opacity: 0.8;
background-color: rgb(63 4 4);
/* display: none; */
}
#second{
width: 0.6%;
height: 36%;
top: 12%;
left: 49.1%;
opacity: 0.7;
background-color: black;
/* display: none; */
}