-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (56 loc) · 1.04 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
* {
box-sizing: border-box;
margin: 0px;
padding: 0px;
color: white;
}
body {
background-image: url(https://wallpaperaccess.com/full/423924.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
height: 100vh;
font-family: 'Poppins', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
h1 {
font-weight: normal;
font-size: 4vw;
margin-bottom: 15px;
transform: scale(2);
}
.countdown {
display: flex;
gap: 3vw;
}
.time {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: 4vw;
}
.time h2 {
font-weight: bold;
}
footer {
position: fixed;
bottom: 0;
text-align: center;
padding: 20px;
background-color: rgba(255, 255, 255, .2);
width: 100%;
color: black;
}
footer a {
color: inherit;
font-weight: 700;
text-decoration: none;
}
footer span {
color: inherit;
}