-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (57 loc) · 1.22 KB
/
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
64
65
* {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
line-height: 1;
list-style: none;
quotes: none;
content: '';
content: none;
border-collapse: collapse;
border-spacing: 0;
}
body {
background-image: url("https://media.giphy.com/media/l2oRndKUPpnJNPu1q4/giphy.gif");
background-attachment: fixed;
background-position:center;
background-repeat:no-repeat;
background-size:cover;
}
.container {
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-evenly;
padding-top: 225px;
align-items: center;
}
h1 {
font-style: normal;
color: rgb(139, 232, 255);
text-align: center;
font-size: 80px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif ;
}
.clock {
display: flex;
flex-direction: row;
justify-content: space-evenly;
font-size: 50px;
color:white;
text-align: center;
}
.clock #days::after {
content: ' Days ';
}
.clock #hours::after {
content: ' Hours ';
}
.clock #minutes::after {
content: ' Minutes ';
}
.clock #seconds::after {
content: ' Seconds ';
}