-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
78 lines (64 loc) · 1.19 KB
/
index.css
File metadata and controls
78 lines (64 loc) · 1.19 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#clockContainer{
/* border: 2px solid red; */
height: 30vw;
width: 30vw;
/* height: 440px;
width: 440px; */
background: url(./images/clock.png) no-repeat;
background-size: 100%;
margin: auto;
opacity: 0.8;
position: relative;
}
#hour, #minute, #second{
position: absolute;
background: black;
border-radius: 10px;
transform-origin: bottom;
}
#hour {
width: 2%;
height: 24%;
top: 26%;
left: 48.9%;
/* display: none; */
}
#minute {
width: 1%;
height: 34%;
top: 16%;
left: 49.4%;
opacity: 0.8;
/* display: none; */
}
#second {
color: red;
background: red;;
width: .5%;
height: 38%;
top: 12%;
left: 49.6%;
opacity: 0.8
/* display: none; */
}
#date-container{
width: 100%;
max-width: 500px;
height: 50px;
max-height: auto;
color:#fff;
align-items: center;
text-align: center;
background:#232323;
opacity: 0.8;
margin: 0.5em auto;
border-radius: 30px;
padding: 0.3em 1em;
/* margin: 1em 1em; */
font-size: 1em;
}
.fullDate{
display: inline-block;
align-items: center;
padding-top: 0.5em;
}