-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
480 lines (405 loc) · 11.6 KB
/
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
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
/* Body Styling */
body {
font-family: Arial, sans-serif;
background-color: #0d0d0d;
background-image: url('bg.jpg'); /* Replace with your image path */
background-size: cover;
background-attachment: fixed; /* This keeps the background from scrolling */
background-position: center;
color: white;
margin: 0;
padding: 0;
}
body, html {
overflow-x: hidden;
scroll-behavior: smooth;
height: 100%; /* Ensure the body takes full height */
}
/* Social Media Icons */
/* Container for left and right sections */
.container {
display: flex;
width: 100%;
height: 100vh; /* Full height of the viewport */
}
/* Club Name Styling (Left Section) */
/* Club Name Styling (Left Section) */
.club-name {
flex: 1; /* Take up 50% of the page */
display: flex;
justify-content: center; /* Center content horizontally */
align-items: center; /* Center content vertically */
text-align: center;
}
.club-name h1 {
font-size: 4em;
color: #fbfeff; /* Light Blue Color */
margin-bottom: 10px;
position: relative; /* To position the image relative to the text */
padding-left: 50px; /* Adds padding to avoid overlap with image */
transition: transform 0.3s ease; /* Smooth transition for scaling effect */
}
/* Adjusting the logo (C.png) positioning and size */
.club-name h1::before {
content: ''; /* Creates a pseudo-element for the image */
position: absolute;
left:-40px; /* Position the image before the "O" */
top: 0;
width: 100px; /* Adjust the size of the image */
height: 100%; /* Ensure the height matches the text height */
background-image: url('C.png');
background-size: contain; /* Ensure the image fits well */
background-repeat: no-repeat;
background-position: center; /* Center the image vertically */
transition: transform 0.3s ease; /* Smooth transition for scaling effect */
}
/* Hover Effect */
.club-name:hover h1 {
transform: scale(1.1); /* Scale up the text */
}
.club-name:hover h1::before {
transform: scale(1.3); /* Scale up the image at the same time */
}
/* Club Head Section (Right Section) */
.club-head {
flex: 1; /* Take up 50% of the page */
display: flex;
justify-content: center; /* Center the profile card horizontally */
align-items: center; /* Center the profile card vertically */
/* Dark background for contrast */
}
#club-head {
text-align: center;
margin-top: 30px;
padding: 50px 20px;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease-in-out;
overflow: hidden; /* Prevents scrollbar */
}
#club-head {
transform: scale(1.01); /* Slightly scale up for effect */
}
/* Position Styling */
.position {
color: #1bb4ec; /* Blue Color */
font-weight: bold;
font-size: 1.3em;
text-transform: uppercase;
letter-spacing: 1px;
}
/* Profile Card Styling */
/* Profile Card */
.profile-card {
display: flex;
flex-direction: column; /* Stack elements vertically */
justify-content: center; /* Center content vertically */
align-items: center; /* Center content horizontally */
padding: 20px;
background-color: #000000;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
width: 280px; /* Width of the profile card */
transition: transform 0.3s ease;
overflow: hidden; /* Prevents scrollbar */
}
/* Profile Image */
.profile-card img {
width: 140px; /* Slightly smaller profile image */
height: 140px;
border-radius: 50%;
border: 4px solid #1bb4ec;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
margin-bottom: 15px;
transition: transform 0.3s ease;
}
.profile-card {
transform: scale(1.04); /* Slight hover effect */
}
/* Profile Image Styling */
.profile-card img:hover {
transform: rotate(8deg) scale(1.03); /* Slight rotation on hover */
}
/* Profile Name Styling */
.profile-card h2 {
text-align: center;
font-size: 2em;
margin: 10px 0;
color: #eaeaea;
font-weight: bold;
letter-spacing: 1px;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}
/* Profile Description */
.profile-card p {
font-size: 1.2em;
color: #ffffff;
line-height: 1.5;
margin: 5px 0;
max-width: 80%;
margin-left: auto;
margin-right: auto;
}
.profile-card p1 {
font-size: 1.2em;
color: #1bb4ec; /* Blue for position text */
}
/* Domain Heads Section */
/* Profile Image Styling */
.card-front img {
width: 120px;
height: 120px;
border-radius: 50%;
margin-bottom: 15px;
border: 4px solid #1bb4ec;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Glowing Effect on Image */
.card-front img {
box-shadow: 0 0 20px 5px rgba(27, 180, 236, 0.7); /* Glow always on image */
}
/* Hover Effect (For Scaling on Hover) */
.card-front:hover img {
transform: scale(1.05); /* Slight zoom-in effect */
}
.card-front h2 {
font-size: 1.5rem;
margin: 0.5rem 0;
}
.card-front p {
font-size: 1rem;
margin-top: auto;
color: #b0b0b0;
}
.card-back {
background-color: #0f4b60;
transform: rotateY(180deg);
}
.domain-card:hover .card-inner {
transform: rotateY(180deg);
}
h1 {
color: #1bb4ec; /* Updated blue */
font-size: 2.5em;
margin-top: 20px;
}
/* Team Members Section */
.domain-section {
margin-top: 40px;
padding: 20px;
background:transparent;
border-radius: 10px;
text-align: center;
}
.team-member {
display: inline-block;
}
.card-back .social-icons {
display: flex;
justify-content: space-around;
align-items: center; /* Center the icons vertically */
margin-top: 20px;
gap: 30px; /* Adds more space between the icons */
}
.card-back .social-icons a {
color: #ffffff;
font-size: 2.5em; /* Increase size slightly for better visibility */
transition: color 0.3s ease, transform 0.3s ease;
}
.card-back .social-icons a:hover {
color: #1bb4ec; /* Change to blue when hovered */
transform: scale(1.2); /* Slightly increase the icon size on hover */
}
/* Social Media Icons on the Left Edge */
/* Social Media Icons on the Left Edge */
.social-icons {
position: fixed;
left: 1px; /* Positioned on the left edge */
top: 50%; /* Center vertically */
transform: translateY(-50%); /* Exact vertical center */
display: flex;
flex-direction: column;
gap: 10px; /* Adding some space between the icons for clarity */
z-index: 9999; /* Keeps the icons above the rest of the content */
}
/* Style for each social icon (Circular) */
.social-icons a {
color: #fff;
font-size: 2em; /* Standard icon size */
transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
display: inline-block;
position: relative;
text-align: center;
padding: 0px; /* Increased padding for circular look */
border-radius: 200%; /* Make the icons circular */
background-color: #333; /* Dark background color for contrast */
width: 60px; /* Set width */
height: 60px; /* Set height */
line-height: 60px;
background-color: transparent;/* Center the icon vertically */
}
/* Hover effect for the icons */
.social-icons a:hover {
transform: translateX(10px) translateY(-10px); /* Shift the icon diagonally */
color: #1bb4ec; /* Change color to a blue when hovered */
box-shadow: 0 0 20px rgba(0, 187, 255, 0.5); /* Soft blue glow effect */
}
/* Style for the icons themselves */
.social-icons i {
transition: transform 0.3s ease; /* Smooth transition on hover */
}
/* Icon Hover Bounce (for fun effect) */
.social-icons a:hover i {
transform: scale(1.2); /* Increase the size of the icon on hover */
}
/* Adding subtle animation to the icons on load */
.social-icons a {
opacity: 0;
animation: slideIn 0.8s forwards;
}
@keyframes slideIn {
0% {
opacity: 0;
transform: translateY(50px);
}
100% {
opacity: 1;
transform: translateY(0); /* Slide into place from below */
}
}
/* Styling the heading for the Development Team */
h2 {
font-size: 3.5em; /* Larger size for impact */
color: #1bb4ec; /* Blue color */
text-align: center;
margin-bottom: 60px; /* Increased spacing for more focus */
font-weight: bold;
letter-spacing: 5px; /* Increased letter spacing for sharpness */
text-transform: uppercase; /* Uppercase text for a more "technical" feel */
font-family: 'Orbitron', sans-serif; /* Futuristic font */
background: linear-gradient(45deg, #1bb4ec, #00aaff, #7f5ac4); /* Multi-gradient for a high-tech feel */
-webkit-background-clip: text; /* Apply gradient only to the text */
color: transparent; /* Makes the text transparent to show the gradient */
position: relative; /* For the metallic line effect below */
}
/* Add a subtle metallic effect at the bottom of the text */
h2::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #ff6600, #1bb4ec, #ff6600); /* Bright neon-like gradient */
opacity: 0.6;
box-shadow: 0 0 10px rgba(255, 102, 0, 0.8), 0 0 30px rgba(255, 102, 0, 0.5); /* Soft glowing effect */
}
/* Profile Card Container */
.team-member {
width: 250px;
height: 350px;
perspective: 1000px;
margin: 30px;
}
/* Card Inner Container */
.card-inner {
width: 100%;
height: 100%;
position: relative;
transform-style: preserve-3d;
transition: transform 0.6s;
}
/* Card Front Styling (Profile Front) */
.card-front {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background-color: #000000;
border-radius: 10px;
padding: 15px;
color: #fff;
}
.card-front img {
width: 120px;
height: 120px;
border-radius: 50%;
margin-bottom: 15px;
border: 4px solid #1bb4ec;
}
.card-front h3 {
font-size: 1.5rem;
font-weight: bold;
margin-bottom: 5px;
}
.card-front p {
font-size: 1.1rem;
color: #aaa;
}
/* Card Back Styling (Social Icons) */
.card-back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
display: flex;
justify-content: center;
align-items: center;
background-color: #222;
border-radius: 10px;
transform: rotateY(180deg);
padding: 10px;
}
.social-icons1 {
display: flex;
gap: 15px;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
/* Individual Social Media Icon Styles */
.social-icons1 a {
font-size: 2em;
color: #fff;
background-color: #1a1a1a;
padding: 10px;
border-radius: 50%;
transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
display: inline-block;
width: 50px;
height: 50px;
text-align: center;
}
.social-icons1 a:hover {
transform: translateY(-5px); /* Slight raise effect */
background-color: #1bb4ec; /* Hover color change */
box-shadow: 0 0 15px rgba(27, 180, 236, 0.7); /* Glowing effect */
}
/* Hover Effects on Card */
.team-member:hover .card-inner {
transform: rotateY(180deg); /* Flip the card on hover */
}
.team-member:hover .card-front {
background-color: #111; /* Darken front during flip */
}
/* Icon Hover Animation */
.social-icons1 a:hover i {
transform: scale(1.2); /* Slightly increase icon size */
}
/* Media Query for Smaller Screens */
@media (max-width: 768px) {
.team-member {
width: 220px;
height: 320px;
}
.social-icons1 a {
font-size: 1.8em;
padding: 8px;
width: 45px;
height: 45px;
}
}