-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
55 lines (53 loc) · 1.02 KB
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');
*{
box-sizing: border-box;
}
body{
background-color: black;
background-image:linear-gradient(#000000, #000000), url("");
font-family: 'poppins',sans-serif;
min-height: 100vh;
background-size: cover;
background-position: center center;
margin: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: aliceblue;
}
.countdown-container{
display: flex;
flex-wrap: wrap;
}
h2{
font-size: 3rem;
margin-top: -10rem;
}
.big-test{
font-size: 6rem;
line-height: 1;
margin: 0 2rem;
}
.countdown-el{
text-align: center;
}
.countdown-el span{
font-size: 1.5rem;
}
@media screen and (max-width: 800px) {
h2{
font-size: 2rem;
}
.big-test{
font-size: 2rem;
line-height: 1;
margin: 0 1rem;
}
.countdown-el span{
font-size: 1rem;
}
}
.text-below{
font-size: 1rem;
}