-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyless.css
More file actions
183 lines (152 loc) · 3.34 KB
/
Copy pathstyless.css
File metadata and controls
183 lines (152 loc) · 3.34 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
/* General body styling */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
/* Navigation bar */
header {
background-color: white;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo-container {
display: flex;
align-items: center;
}
.club-logo {
height: 80px;
margin-right: 20px;
}
.college-logo {
height: 80px;
}
.nav-links {
list-style-type: none;
display: flex;
}
.nav-links li {
margin: 0 15px;
}
.nav-links a {
color:#0700C4;
text-decoration: none;
font-weight: bold;
font-size: 18px;
}
.nav-links a:hover {
text-decoration: underline;
}
.main-section {
text-align: center;
padding: 100px;
background-color: #ffffff;
margin: 50px auto; /* Added auto to center the content horizontally */
max-width: 800px; /* Added max-width to control the maximum width */
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 2.5em;
margin-bottom: 20px;
}
p {
font-size: 1.2em;
line-height: 1.6;
margin-bottom: 30px;
}
.explore-btn {
padding: 15px 30px;
font-size: 1.1em;
background-color: #28a745;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.explore-btn:hover {
background-color: #218838;
}
/* Coordinators Section Styling */
.coordinators {
padding: 40px;
text-align: center;
background-color: #f4f4f4;
}
.coordinator-list {
display: flex;
flex-direction: column;
gap: 50px;
align-items: center;
}
.coordinator-group {
width: 100%;
}
.coordinator-row {
display: flex;
justify-content: center;
gap: 20px; /* Space between the cards */
flex-wrap: nowrap; /* Prevent wrapping to a new line */
overflow-x: auto; /* Enable horizontal scrolling if necessary */
}
.coordinator-card {
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 200px; /* Adjust the width to fit the cards in one line */
padding: 20px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coordinator-card:hover {
transform: translateY(-10px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.coordinator-card img {
border-radius: 50%;
width: 100px;
height: 100px;
object-fit: cover;
margin-bottom: 10px;
}
.coordinator-card h3 {
font-size: 1.2em;
margin-bottom: 5px;
}
.coordinator-card p {
font-size: 0.9em;
color: #555;
}
/* Responsive Design */
@media (max-width: 768px) {
.coordinator-row {
flex-direction: column; /* Stack vertically on smaller screens */
}
.coordinator-card {
width: 100%; /* Full width on smaller screens */
max-width: 300px; /* Maximum width for cards */
}
}
/* Footer styling */
.footer {
text-align: center; /* Center the footer content */
}
.social-icons {
display: inline-flex; /* Make the social icons inline-flex */
justify-content: center; /* Center the social icons horizontally */
margin-top: 10px;
}
.social-icons a {
margin: 0 10px;
font-size: 1.5em;
color: #333;
transition: color 0.3s ease;
}
.social-icons a:hover {
color: #007bff; /* Adjust to your desired hover color */
}
/* #0700C4; */