forked from codemistic/Web-Development
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
62 lines (49 loc) · 1.04 KB
/
index.css
File metadata and controls
62 lines (49 loc) · 1.04 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
#clockContainer{
/* background-color: red; */
position: relative;
height: 50vw;
width: 50vw;
background: url(clock.png) no-repeat;
background-size: 100%;
/* border: 2px solid black; */
margin: auto;
}
#hour , #minute,#second ,#center{
position: absolute;
background: black;
border-radius: 10px;
}
#hour{
width: 2.3%;
height: 15%;
top: 36%;
left: 49.5%;
/* opacity: 0.8; */
/* display: none; */
transform-origin: bottom;
}
#minute{
width: 1.5%;
height: 25%;
top: 26.2%;
left: 49.8%;
/* opacity: 0.8; */
/* display: none; */
transform-origin: bottom;
}
#second{
width: 1%;
height: 32%;
top: 19%;
left: 50%;
/* opacity: 0.8; */
/* display: none; */
transform-origin: bottom;
}
#center{
width: 6%;
height: 6%;
top: 48%;
left: 47.5%;
/* opacity: 0.8; */
}