-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
49 lines (42 loc) · 876 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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
* {
box-sizing: border-box;
}
body {
background: url(newYear.png);
background-repeat: no-repeat;
background-size: 100%;
justify-content: center;
min-height: 100vh;
font-family: 'Poppins';
color:rgb(240, 240, 240);
font-size: 10px;
overflow: hidden;
}
.container{
z-index: 99999999;
}
.countdown {
text-align: center;
margin-top: 14rem;
font-size: 3rem;
}
.countdown-container span{
font-size: 30px;
color: #cacaca;
}
.timer {
display: flex;
flex-wrap: wrap;
justify-content: center;
text-align: center;
}
.time {
font-weight: bold;
padding: 1rem 2rem;
font-size: 3rem;
border: 4px solid #96a8a7;
border-radius: 1rem;
margin: 0 1rem;
backdrop-filter: blur(10px);
}