-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
69 lines (60 loc) · 1.27 KB
/
index.css
File metadata and controls
69 lines (60 loc) · 1.27 KB
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
66
67
68
69
main {
font-family: "Roboto", Arial, Helvetica, sans-serif;
align-content: center;
background: linear-gradient(180deg, #191a24 17%, #1e1f29 51%, #2b212d 83%);
position: relative;
.particle-canvas {
top: 0;
left: 0;
position: absolute;
width: 100%;
height: 100%;
}
.mountain-hills {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
transition: transform 1s ease-in;
transform: translateY(100%);
z-index: 1;
&.animate {
transform: translateY(0);
}
}
}
.countdown-wrapper {
width: clamp(21rem, 90svw, 61rem);
margin-inline: auto;
> :first-child {
text-align: center;
font-weight: 700;
letter-spacing: 4px;
font-size: 1.5rem;
}
.timer-wrapper {
display: flex;
justify-content: space-evenly;
margin-top: 1rem;
}
}
.time-unit {
display: flex;
flex-direction: column;
align-items: center;
> :first-child {
text-shadow: 0 0 9px rgb(214, 23, 6);
color: rgba(220, 20, 60, 0.703);
font-size: 2.5rem;
padding-inline: 0.5rem;
background-color: rgba(0 0 0 / 0.2);
backdrop-filter: blur(7px);
box-shadow: 0 7px 4px rgb(0 0 0 / 0.4);
}
> :last-child {
font-size: 0.7rem;
letter-spacing: 2px;
color: #8a8a9b;
margin-top: 0.7rem;
}
}