-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (39 loc) · 915 Bytes
/
style.css
File metadata and controls
46 lines (39 loc) · 915 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
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
* {
box-sizing: border-box;
}
body {
background: url(https://images.unsplash.com/photo-1473691955023-da1c49c95c78?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=870&q=80);
margin: 0;
font-family: "Open Sans", sans-serif;
min-height: 100vh;
background-size: cover;
background-position: center center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
font-weight: normal;
font-size: 4rem;
margin-top: -10rem;
}
.countdown-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.big-text {
font-weight: bold;
font-size: 4em;
margin-top: -0.10em;
line-height: 1;
margin: 0 2rem;
}
.countdown-el {
text-align: center;
}
.countdown-el span {
font-size: 1rem;
}