-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (45 loc) · 800 Bytes
/
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-image: url("./imgs/bg-countdown.jpg");
color: #FFFFFF;
font-family: 'Poppins', sans-serif;
}
.container {
align-items: center;
background-color: #00000050;
display: flex;
flex-direction: column;
height: 100vh;
justify-content: center;
justify-content: space-evenly;
text-align: center;
width: 100vw;
}
.title {
font-size: calc(1px + 1.5vw);
}
.title p {
font-size: calc(1px + 1vw);
}
.countdown {
display: flex;
width: 60vw;
justify-content: space-between;
flex-wrap: wrap;
}
.countdown h2 {
font-size: calc(10px + 8vw);
text-shadow: 0 0 10px #d3d3d3c6;
}
span > img {
border-radius: 103px;
position: absolute;
height: 18.5vh;
left: 45vw;
top: 30vh;
width: 9vw;
}