-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (44 loc) · 748 Bytes
/
style.css
File metadata and controls
46 lines (44 loc) · 748 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
44
45
46
body {
font-size: 15pt;
background-color: black;
}
#clock{
position: relative;
/* border: 2px solid red;*/
margin: auto ;
height: 90vw;
width: 90vw;
background: url(png-clipart-clock-position-clock-face-digital-clock-clock.png) no-repeat;
background-size: 100%;
}
#hr, #min, #sec{
position: absolute;
background: black;
border-radius :10px ;
transform-origin:bottom;
}
#hr{
width: 1.8%;
height: 20%;
top: 22.6%;
left: 49.5%;
opacity: 0.8;
/* display: none ;*/
}
#min{
width: 1.6%;
height: 26%;
top: 16.5%;
left: 49.5%;
opacity: 0.8;
/* display: none;*/
}
#sec{
width: 1.2%;
height: 31%;
top: 11.5%;
left: 49.6%;
opacity: 0.8;
-ms-transform-origin: bottom;
/* display: none;*/
}