-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (53 loc) · 1007 Bytes
/
style.css
File metadata and controls
64 lines (53 loc) · 1007 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
*{
box-sizing: border-box;
}
body{
background-image: url("./image.jpg");
background-size: cover;
background-position: center center;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
font-family: font-family: 'Audiowide', cursive;
margin: 0;
}
h1{
font-weight: normal;
font-size: 4rem;
margin-top: 5rem;
color: rgb(190, 202, 212);
}
.countdown-container{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.big-text{
font-weight: bold;
font-size: 4rem;
/* line-height: 1; */
margin: 1rem 2rem;
color: rgb(190, 202, 212);
}
#days, #hours, #mins, #secs{
text-align: center;
}
span{
font-size: x-large;
padding: 5rem 2rem;
color: rgb(190, 202, 212);
}
p#secs{
margin: 2px 2px;
}
p#days{
margin: 2px 2px;
}
p#hours{
margin: 2px 2px;
}
p#mins{
margin: 2px 2px;
}