-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (87 loc) · 1.41 KB
/
style.css
File metadata and controls
109 lines (87 loc) · 1.41 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
:root {
--black: #4D4C59;
--purple: #6C63FF;
--light-grey: #C8C8C8;
--text-color: #9C9AB6;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: Poppins;
}
.container {
width: 100vw;
height: 100vh;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.top-wave, .bottom-wave {
width: 100%;
position: absolute;
z-index: -1;
}
.top-wave {
top: 0;
}
.bottom-wave {
bottom: 0;
}
.content {
max-width: 1180px;
display: flex;
align-items: center;
gap: 82px;
}
.countdown {
display: flex;
flex-direction: column;
align-items: center;
}
.countdown-title {
font-size: 36px;
letter-spacing: 10.5%;
color: #FF63EF;
text-transform: uppercase;
margin-bottom: 19px;
}
.countdown-description {
font-size: 14px;
color:#9C9AB6;
margin: 46px 0px 31px;
}
.countdown-button {
background-color: #FF63EF;
border-radius: 10px;
border: none;
padding: 16px 32px;
font-family: Poppins;
font-size: 16px;
color: #FFFFFF;
cursor: pointer;
transition: filter 0.2s;
}
.countdown-button:hover {
filter: brightness(0.9);
}
.timer {
display: flex;
text-align: center;
}
.timer-label {
font-size: 14px;
color:#0f0c0c;
font-weight: 300;
}
.timer-value, .timer-separator {
font-size: 72px;
color: #0f0c0c;
}
.timer-separator {
margin: 0 12px;
margin-top: 20px;
}