-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (46 loc) · 884 Bytes
/
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
58
59
60
61
62
63
body{
/* background-color: aqua; */
color: rgb(166, 0, 255);
td{
border: 2px solid black;
}
a{
text-decoration: none;
}}
#set-time{
background-color: rgb(235, 162, 229);
}
#clockcontainer{
position: relative;
color: aqua;
margin: auto;
height: 40vw;
width: 40vw;
background: url('clock\ image.jpg')no-repeat;
background-size: 100%;
bottom: 145px;
}
#hour,#minute,#second{
position: absolute;
background:black;
border-radius: 15px;
transform-origin: bottom;
}
#hour{
width: 1.5%;
height: 24%;
top: 27%;
left: 49.8%;
}
#minute{
width: 1.3%;
height: 28%;
top: 21%;
left: 49.9%;
}
#second{
width: 1%;
height: 38%;
top: 12%;
left:50%;
}