-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
339 lines (293 loc) · 6.24 KB
/
styles.css
File metadata and controls
339 lines (293 loc) · 6.24 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
339
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Nunito:wght@300;600&display=swap');
/* Global Styles */
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
color: #000000;
background-color: #ffffff;
}
header {
background-color: #0156a7;
color: #ffffff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
}
header img {
max-height: 50px;
}
nav {
display: flex;
gap: 1rem;
}
nav a {
color: #ffffff;
text-decoration: none;
font-family: 'Nunito', sans-serif;
font-weight: 600;
transition: color 0.3s ease;
}
nav a:hover {
color: #ff9E4A;
}
.container {
padding: 2rem;
max-width: 800px;
margin: auto;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #0156a7;
font-family: 'Nunito', sans-serif;
}
p, ul {
font-size: 1rem;
color: #000000;
}
img {
max-width: 100%;
border-radius: 8px;
}
a {
color: #0156a7;
text-decoration: none;
}
/*
a:hover {
text-decoration: unerline;
}
*/
.highlight {
font-style: italic;
color: #ff9E4A;
}
ul {
list-style-type: square;
margin: 1rem 0 0 1.5rem;
}
/* Inline CSS for List Styling */
ol {
margin: 0;
padding-left: 1.5rem; /* Indentation for ordered list */
}
ol li {
margin-bottom: 1rem; /* Space between main topics */
}
ol li ul {
margin-top: 0.5rem;
padding-left: 1.5rem; /* Indentation for subpoints */
}
ol li ul li {
margin-bottom: 0.3rem; /* Space between subpoints */
}
.topic-title {
font-weight: bold;
color: #0156a7; /* Matches your theme */
}
/*Contact Page*/
.team {
margin-top: 2rem;
}
.team h3 {
margin-bottom: 1rem;
/* color: #0156a7; Match your theme */
}
.team a {
display: block;
margin-bottom: 0.5rem;
text-decoration: none;
color: #0156a7;
font-weight: bold;
}
.team a:hover {
color: #ff9E4A; /* Hover highlight color */
}
/* Footer styles */
footer {
background-color: #0156a7; /* Same as header */
color: white;
display: flex;
justify-content: space-between; /* Center everything first */
align-items: center;
padding: 1rem 2rem;
gap: 2rem; /* Space between logos and text */
flex-wrap: wrap; /* So it doesn't break on small screens */
}
/* Left: Logos */
.footer-logos {
display: flex;
gap: 1rem;
align-items: center;
}
/* Logos inside footer */
.footer-logos img {
max-height: 50px;
}
.footer-text {
text-align: center; /* Center: Text */
color: white;
flex: 1; /* Take the available space */
}
footer .counter {
text-align: right;
}
footer a {
color: white; /* Ensure links are visible in white */
text-decoration: none;
font-size: 0.8rem; /* Slightly smaller font for footer links */
}
footer a:hover {
color: #ff9E4A; /* Highlight link on hover */
}
.theses-section details {
margin-bottom: 1rem;
background: #f9f9f9;
padding: 1rem;
border-left: 4px solid #0156a7;
border-radius: 8px;
}
.theses-section summary {
cursor: pointer;
font-size: 1.1rem;
font-family: 'Roboto', sans-serif;
color: #2d2e2f;
}
.theses-section p {
font-family: 'Nunito', sans-serif;
margin-top: 0.5rem;
margin-left: 1rem;
}
/* Hover effect */
.theses-section summary:hover {
color: #ff9E4A; /* Orange on hover */
}
/* Open state (when the parent <details> is open) */
.theses-section details[open] summary {
color: #ff9E4A; /* Stay orange when expanded */
}
/* .talks-section details {
margin-bottom: 1rem;
background: #f9f9f9;
padding: 1rem;
border-left: 4px solid #0156a7;
border-radius: 8px;
} */
.talks-section summary {
cursor: pointer;
font-size: 1.1rem;
font-family: 'Roboto', sans-serif;
color: #0156a7;
transition: color 0.3s ease; /* Smooth transition */
}
/* Hover effect */
.talks-section summary:hover {
color: #ff9E4A; /* Orange on hover */
}
/* Open state (when the parent <details> is open) */
.talks-section details[open] summary {
color: #ff9E4A; /* Stay orange when expanded */
}
.talks-section details[open]::after {
content: "";
display: block;
border-bottom: 1px solid #ff9E4A; /* the line */
margin-top: 0.1em; /* space above the line */
padding-top: 0.1em;
}
/* Contact Page */
.team-member, .student-devs ul li {
margin-bottom: 0.5rem;
}
.contact-info, .team-section, .student-devs {
margin-bottom: 2rem;
}
.contact-info a, .team-section a {
color: #0156a7;
text-decoration: none;
}
.contact-info a:hover, .team-section a:hover {
color: #ff9E4A;
}
/* --- Burger Menu (Mobile) --- */
.burger {
display: none;
font-size: 1.8rem;
background: none;
border: none;
color: white;
cursor: pointer;
}
/* Overlay menu */
.mobile-menu {
position: fixed;
inset: 0;
background-color: #0156a7;
z-index: 9999;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
transform: translateX(100%);
transition: transform 0.3s ease;
}
.mobile-menu.open {
transform: translateX(0);
}
.mobile-menu a {
font-family: 'Nunito', sans-serif;
font-size: 2rem;
color: rgb(255, 255, 255);
text-decoration: none;
margin: 1rem 0;
border-bottom: 2px solid #ff9E4A;
width: 80%;
text-align: center;
padding-bottom: 0.5rem;
}
.close-menu {
position: absolute;
top: 1.5rem;
right: 1.5rem;
font-size: 2rem;
background: none;
border: none;
cursor: pointer;
color: rgb(255, 255, 255);
}
/* Responsive behavior */
@media (max-width: 768px) {
.nav-desktop {
display: none;
}
.burger {
display: block;
}
}
/* .talks-section p {
font-family: 'Nunito', sans-serif;
margin-top: 0.5rem;
margin-left: 1rem;
} */
/*
.poster-section {
background-color: #f9f9f9;
padding: 2rem 1rem;
border-left: 6px solid #0156a7;
border-radius: 8px;
text-align: center;
}
.poster-section img.poster-thumbnail {
max-width: 100%;
max-height: 400px;
border-radius: 8px;
margin: 1rem 0;
transition: transform 0.3s ease;
}
.poster-section img.poster-thumbnail:hover {
transform: scale(1.02);
} */