-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
66 lines (56 loc) · 1.21 KB
/
styles.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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");
* {
box-sizing: border-box;
}
body {
background: url("photo.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-color: #a6a183; /* Tint color */
background-blend-mode: multiply;
background-size: cover;
font-family: "Poppins", sans-serif;
color:#ffffff;
margin: 0;
}
.countdown {
text-align: center;
color:#ffffff;
font-size: 25px;
margin-top:20vh;
margin-bottom: -70px;
min-height:10px;
}
.event {
text-align: center;
color:#ffffff;
font-size:5rem;
letter-spacing:20px;
font-weight:800;
}
.timer {
display: flex;
flex-direction: row;
justify-content:space-between;
max-width:1200px;
margin:auto;
padding: 0 2% 0 2%;
}
.time {
min-width: 15%;
background-color: hsla(34, 13%, 24%, 0.652); /* Tint color */
text-align: center;
}
.number {
font-size: 5rem;
font-weight: 100;
margin-top:0;
margin-bottom:-5%
}
.caption {
font-size: 1.5rem;
font-weight: 400;
letter-spacing: 5px;
margin-top: 0;
}