-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
145 lines (126 loc) · 2.46 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/* General Styling */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #181818;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
overflow: hidden;
}
.container {
width: 90%;
max-width: 800px;
}
/* Countdown Styling */
.countdown {
display: flex;
justify-content: center;
gap: 30px; /* Adds spacing between countdown items */
margin: 20px 0 40px; /* Adds spacing below countdown */
}
.countdown div {
text-align: center;
}
.countdown span {
font-size: 3rem; /* Increase font size */
font-weight: bold;
display: block;
}
.countdown p {
font-size: 1.2rem;
margin-top: 10px;
}
/* Video Frame Styling */
.preview {
margin-bottom: 40px; /* Adds spacing below the video */
display: flex;
justify-content: center;
}
.video-frame {
width: 100%;
max-width: 700px;
aspect-ratio: 16 / 9;
border: 2px solid #555;
border-radius: 8px;
}
/* Subtitle */
.subtitle {
margin-bottom: 30px; /* Adds spacing before the waitlist button */
font-size: 1.4rem;
}
/* Waitlist Button */
.waitlist-btn {
background-color: #6c63ff;
color: white;
padding: 15px 25px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1.2rem;
transition: background-color 0.3s ease;
}
.waitlist-btn:hover {
background-color: #594de6;
}
/* Popup Styling */
.popup {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
justify-content: center;
align-items: center;
}
.popup-content {
background-color: #fff;
color: #000;
padding: 20px;
border-radius: 10px;
width: 90%;
max-width: 400px;
position: relative;
}
.popup-content h2 {
margin-bottom: 20px;
}
.popup-content form {
display: flex;
flex-direction: column;
}
.popup-content label {
margin: 10px 0 5px;
}
.popup-content input,
.popup-content select {
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
}
.join-btn {
background-color: #6c63ff;
color: white;
border: none;
padding: 10px;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
}
.join-btn:hover {
background-color: #594de6;
}
.close-btn {
position: absolute;
top: 10px;
right: 15px;
font-size: 1.5rem;
cursor: pointer;
}