-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
90 lines (76 loc) · 1.34 KB
/
main.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
body {
height: 100%;
width: 100%;
background: #466368;
background: -webkit-linear-gradient(#cffdf8,#216583);
background: -moz-linear-gradient(#cffdf8,#216583);
background: linear-gradient(#cffdf8,#216583);
}
html {
height: 100%;
}
.inline-p {
color: white;
}
.count-wrapper {
display: inline;
top:40%;
width:80%;
left: 20%;
position: absolute;
}
.count-wrapper2 {
display: inline;
top:30%;
width:80%;
left: 20%;
position: absolute;
}
.count-wrapper3 {
display: inline;
top:50%;
width:80%;
left: 20%;
position: absolute;
}
.bar-wrapper {
left:24%;
border-radius: 20px;
position: absolute;
height:40px;
width: 50%;
background: #00204a;
}
.bar {
border-radius: 20px;
color: aliceblue;
text-align: center;
position: absolute;
height: 100%;
font-size: 18px;
font-weight:bold;
width: 1%;
background: #fd5f00;
transition: width 1.5s;
-webkit-transition: width 1.5;
}
.text-wrapper {
font-size: 25px;
text-align: center;
position: absolute;
width: 23%;
}
.inline-p {
display: inline;
}
#clock {
text-align: center;
font-size: 70px;
padding-top: 50px;
top: 60%;
width: 50%;
left: 25%;
position: absolute;
color: white;
font-weight:bold;
}