-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (40 loc) · 808 Bytes
/
style.css
File metadata and controls
41 lines (40 loc) · 808 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
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@700&family=Nunito+Sans:ital@1&display=swap');
* {
box-sizing: border-box;
}
body {
background-image: url('./background.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
font-family: 'Libre Baskerville', serif;
margin: 0;
}
.countdown-timer {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
h1 {
font-size: 4rem;
color: #fff;
text-align: center;
}
.big-text {
font-size: 6rem;
color: #fff;
margin: 0 2rem;
line-height: 1;
font-weight: bolder;
}
.countdown {
text-align: center;
}
.countdown span {
font-size: 1.3rem;
color: #fff;
}