-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmerch.css
More file actions
338 lines (293 loc) · 7.65 KB
/
Copy pathmerch.css
File metadata and controls
338 lines (293 loc) · 7.65 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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
/* Background video styling */
#background-video {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
h1, h2, h3, h4, h5, h6, p, a, .navbar, .member-role, .member-name, .member-contact, .footer-container {
font-family: 'Russo One', sans-serif;
}
.navbar {
background-color: rgba(21, 22, 24, 0.7); /* Semi-transparent background */
color: white;
padding: 2px 0px; /* Increased padding for better spacing */
position: fixed;
width: 100%; /* Full-width navbar */
top: 0;
z-index: 100; /* Ensure navbar is above all elements */
display: flex; /* Use flexbox for layout */
justify-content: space-between; /* Space between logo and links */
align-items: center; /* Vertically center items */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
text-align: center;
}
.navbar-logo img {
height: 40px; /* Adjust the logo height */
}
.navbar-links {
display: flex; /* Arrange links horizontally */
gap: 20px; /* Space between links */
}
.navbar-links a {
float: left;
display: block;
color: #ffffff;
/* White text */
text-align: center;
padding: 0.3em 0.5em;
/* Decrease padding by 3px */
text-decoration: none;
border-radius: 20px;
/* Circular edges */
font-family: 'Russo One', sans-serif;
/* Change font style to Russo One */
margin: auto 0.3em;
transition: 0.2s ease-in;
}
.navbar-links a:hover {
background-color: rgba(255, 20, 147, 0.7); /* Highlight color on hover */
}
/* General styles */
body, html {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Russo One', sans-serif;
color: white;
scroll-behavior: smooth;
}
/* Style the scrollbar track */
::-webkit-scrollbar {
width: 0; /* Width of the scrollbar */
}
::-webkit-scrollbar-track {
background: #f1f1f1; /* Background of the scrollbar track */
border-radius: 10px; /* Rounding the corners of the track */
}
/* Style the scrollbar thumb */
::-webkit-scrollbar-thumb {
background: #888; /* Color of the scrollbar thumb */
border-radius: 10px; /* Rounding the corners of the thumb */
}
::-webkit-scrollbar-thumb:hover {
background: #555; /* Color when hovering over the scrollbar thumb */
}
/* Main content styling */
.content {
padding: 20px;
text-align: center;
}
.main-heading {
font-size: 3rem;
text-transform: uppercase;
margin-bottom: 40px;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
/* Club sections */
.club-section {
text-align: center;
margin: 40px auto;
padding: 20px;
border-radius: 10px;
background-color: rgba(0, 0, 0, 0.7);
box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
width: 80%;
}
.club-title {
text-align: center;
font-size: 2rem;
text-transform: uppercase;
margin-bottom: 20px;
color: #ffffff;
text-shadow: 0 0 5px #a7f2fc, 0 0 5px #a4def6, 0 0 3px #a4d2e8;
}
/* Members container - horizontal alignment */
.members {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.member-card {
background-color: #111;
border-radius: 10px;
width: auto;
height: auto;
text-align: center;
padding: 15px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.member-card:hover {
transform: scale(1.03);
border-width: 3px;
border-color: #f39c12;
}
.member-card img {
width: 70%;
height:auto;
object-fit: cover;
border-radius: 10px;
margin-bottom: 10px;
}
.member-name {
font-size: 1rem;
font-weight: bold;
margin-bottom: 5px;
}
.member-contact {
font-size: 0.9rem;
color: lightgray;
}
footer {
position: absolute; /* Keep the footer at the bottom */
bottom: 0; /* Align the footer to the bottom */
left: 0; /* Align to the left edge */
width: 100%; /* Ensure the footer spans the full width */
background-color: #000; /* Background color */
color: #fff; /* Text color */
padding: 20px 10px;
text-align: center; /* Center-align text */
z-index: 10; /* Keep it above background elements */
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow above the footer */
}
.footer-container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px; /* Optional: Max width for the content inside */
margin: 0 auto; /* Center the content */
}
.footer-container p {
margin: 0;
text-align: center;
flex-grow: 1;
}
.social-links {
display: flex;
align-items: center;
}
.social-links a {
margin: 0 10px;
}
.social-links img {
width: 24px;
height: 24px;
}
/* Blur-In Effect */
.container {
opacity: 0;
filter: blur(10px);
transform: translateY(20px);
transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}
.container.visible {
opacity: 1;
filter: blur(0);
transform: translateY(0);
}
.club-name {
font-size: 3.5em; /* Adjust size as needed */
font-weight: bold;
text-align: center;
color: transparent;
background: linear-gradient(45deg, #ff7e5f, #feb47b, #86a8e7);
-webkit-background-clip: text;
background-clip: text;
text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, text-shadow 0.3s ease;
display: inline-block;
width: 100%;
margin: 0 auto;
}
.club-name:hover {
transform: scale(1.1);
}
.Register {
font-family: 'Russo One', sans-serif;
display: flex; /* Change to flexbox for centering */
justify-content: center; /* Horizontally center the text */
align-items: center; /* Vertically center the text */
padding: 15px 30px;
font-size: 16.8px;
color: #fff;
background-color: #040726a5;
border-radius: 25px; /* Circular edges for a consistent look */
text-transform: uppercase;
text-decoration: none;
transition: transform 0.3s ease, background-color 0.3s ease;
position: relative;
overflow: hidden;
margin: 0 auto; /* Center the button horizontally */
width: 200px; /* Fixed width */
height: 50px; /* Fixed height */
border: 2px solid #00ffff2f; /* Cyan border */
box-shadow: 0 0 5px #00ffff52, 0 0 10px #00ffff88, 0 0 15px #00ffff60;
}
.Register::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.2);
transform: skewX(-30deg);
transition: left 0.4s ease;
}
.Register:hover {
background-color: #040e44ad;
transform: scale(1.05);
}
.Register:hover::before {
left: 100%;
}
.Register:hover {
animation: glow-cyan-animation 1.5s infinite alternate;
}
@keyframes glow-cyan-animation {
0% {
box-shadow: 0 0 5px #00ffff8f, 0 0 10px #00ffffa1, 0 0 15px #00ffff7d;
transform: scale(1);
}
100% {
box-shadow: 0 0 20px #00ffffab, 0 0 30px #00ffffa8, 0 0 40px #00ffff9e;
transform: scale(1.1);
}
}
@keyframes glow-cyan-animation {
0% {
box-shadow: 0 0 5px #00ffff8f, 0 0 10px #00ffffa1, 0 0 15px #00ffff7d;
transform: scale(1);
}
100% {
box-shadow: 0 0 20px #00ffffab, 0 0 30px #00ffffa8, 0 0 40px #00ffff9e;
transform: scale(1.1);
}
}
@media (max-width: 768px) {
.event-description h1 {
font-size: 2rem;
}
.event-description p {
font-size: 1rem;
}
.register-button {
padding: 0.6rem 1.5rem;
}
}
@media (max-width: 480px) {
.event-description h1 {
font-size: 1.8rem;
}
.event-description p {
font-size: 0.95rem;
}
.register-button {
padding: 0.5rem 1.2rem;
}
}