-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteams.css
More file actions
236 lines (206 loc) · 5 KB
/
Copy pathteams.css
File metadata and controls
236 lines (206 loc) · 5 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
/* 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: 220px;
height: 300px;
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.1);
border-width: 3px;
border-color: #f39c12;
}
.member-card img {
width: 100%;
height: 160px;
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 styles */
footer {
background-color: #000;
color: #fff;
padding: 20px 10px;
}
.footer-container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}
.footer-container p {
margin: 0;
text-align: center;
flex-grow: 1;
}
.social-links {
display: flex;
align-items: center;
z-index: 1;
}
.social-links a {
margin: 0 10px;
z-index: 1;
}
.social-links img {
width: 24px;
height: 24px;
z-index: 1;
}
/* 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);
}