-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboard.html
More file actions
551 lines (529 loc) · 20.2 KB
/
Copy pathboard.html
File metadata and controls
551 lines (529 loc) · 20.2 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
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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WCO | Board</title>
<link rel="stylesheet" href="style.css" />
<style>
:root {
--transition-speed: 0.4s;
--primary-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
--bg-color: #ffffff;
--text-color: #000000;
--nav-bg: rgba(255, 255, 255, 0.8);
--nav-text-color: #000000;
--accent-color: #000000;
}
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #000000;
--text-color: #ffffff;
--nav-bg: rgba(0, 0, 0, 0.8);
--nav-text-color: #ffffff;
--accent-color: #ffffff;
}
}
body {
margin: 0;
padding: 0;
font-family: var(--primary-font);
background: var(--bg-color);
color: var(--text-color);
transition: background var(--transition-speed) ease,
color var(--transition-speed) ease;
margin-top: 80px; /* Increase margin-top to ensure content starts below the fixed nav */
}
nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: var(--nav-bg);
backdrop-filter: blur(10px);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.5rem 1rem;
z-index: 9999;
flex-wrap: wrap;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
width: 40px;
height: 40px;
margin-right: 0.5rem;
border-radius: 50%;
}
.nav-container {
display: flex;
align-items: center;
gap: 2rem;
flex: 1;
justify-content: center;
max-width: 800px;
margin: 0 auto;
}
.menu-toggle {
display: block; /* Change to block to make it visible */
cursor: pointer;
font-size: 1.5rem;
color: var(--nav-text-color);
}
nav ul {
list-style: none;
display: flex;
gap: 2rem;
margin: 0;
padding: 0;
flex-direction: column;
display: none; /* Ensure it's hidden by default */
width: 100%;
}
nav ul.active {
display: flex; /* Show the menu when active */
}
nav a {
text-decoration: none;
color: var(--nav-text-color);
font-weight: 500;
transition: color var(--transition-speed) ease;
padding: 0.5rem 1rem;
}
nav a:hover {
color: #0070c9;
}
.dark-mode-toggle {
cursor: pointer;
font-size: 1.2rem;
color: var(--nav-text-color);
display: flex;
align-items: center;
transition: color var(--transition-speed) ease;
}
.logo, .dark-mode-toggle {
flex-shrink: 0;
}
@media (min-width: 768px) {
nav ul {
flex-direction: row;
display: flex; /* Ensure it's visible on larger screens */
}
.menu-toggle {
display: none; /* Hide the toggle button on larger screens */
}
}
h1,
h2 {
text-align: center;
margin-top: 1rem;
margin-bottom: 0.5rem;
}
.president,
.board-members {
max-width: 1000px;
margin: 1.5rem auto;
padding: 0 1rem;
}
.president {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px; /* Added gap between president and vice president cards */
}
.president-card {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
border: 1px solid #ddd;
border-radius: 6px;
padding: 1rem;
margin-bottom: 2rem;
}
.president-card-left {
grid-column: 1 / span 2;
}
.president-card-right {
grid-column: 3 / span 2;
}
.president-card img {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 1rem;
}
.president-card h3 {
margin: 0.5rem 0;
font-size: 1.2rem;
}
.president-links a {
display: inline-block;
padding: 0.5rem 1rem;
margin: 0.5rem;
background: var(--accent-color);
color: var(--bg-color);
border-radius: 4px;
text-decoration: none;
transition: background 0.3s ease;
}
.president-links a:hover {
background: #0070c9;
}
.board-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 1rem;
}
.board-member {
border: 1px solid #ddd;
border-radius: 6px;
padding: 1rem;
text-align: center;
}
.board-member img {
width: 100px;
height: 100px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 0.5rem;
}
.board-member h4 {
margin: 0.5rem 0;
font-size: 1rem;
}
.member-links a {
display: inline-block;
padding: 0.4rem 0.8rem;
margin: 0.3rem;
background: var(--accent-color);
color: var(--bg-color);
border-radius: 4px;
text-decoration: none;
font-size: 0.85rem;
transition: background 0.3s ease;
}
.member-links a:hover {
background: #0070c9;
}
footer {
text-align: center;
padding: 0.5rem;
font-size: 0.8rem;
margin-top: 2rem;
}
body.dark-mode {
--bg-color: #000000;
--text-color: #ffffff;
--nav-bg: rgba(0, 0, 0, 0.8);
--nav-text-color: #ffffff;
--accent-color: #ffffff;
}
.button-container {
/* ...existing styles... */
margin-top: 20px; /* Add space above the buttons */
}
</style>
</head>
<body>
<!-- NAV -->
<nav>
<div class="logo">
<a href="index.html">
<img src="./assets/IMG_1362-removebg-preview.png" alt="WCO Logo" />
<span style="font-weight: bold">WCO</span>
</a>
</div>
<div class="menu-toggle" id="menuToggle">☰</div>
<div class="nav-container">
<ul id="navMenu">
<li><a href="index.html">Home</a></li>
<li><a href="board.html">Board</a></li>
<li><a href="resources.html">Resources</a></li>
</ul>
</div>
<div
class="dark-mode-toggle"
id="darkModeToggle"
title="Toggle Dark Mode">
☼
</div>
</nav>
<h1>Our Board</h1>
<section class="president">
<h2 style="grid-column: 1 / -1; text-align: center">
President & Vice President
</h2>
<div class="president-card president-card-left">
<!-- Replace with actual president headshot -->
<img src="./assets/enzo_headshot.jpg" alt="President Headshot" />
<h3>Enzo Weiss - President</h3>
<p>
Computer Scientist with a passion for technology and innovation. I
want to help you reach all of your technology career wants and needs.
</p>
<div class="president-links">
<!-- LinkedIn & Resume -->
<a href="https://www.linkedin.com/in/enzoweiss/" target="_blank"
>LinkedIn</a
>
<a href="./WCO/assets/Enzo_WordResume.pdf" target="_blank">Resume</a>
</div>
</div>
<div class="president-card president-card-right">
<img src="./assets/calebHeadshot.png" alt="Vice President" />
<h3>Caleb Dickson - Vice President</h3>
<p>
Sophomore studying Computer Science, eager to help members grow their
skills, network, and career.
</p>
<div class="president-links">
<a href="https://linkedin.com/in/caleb-n-dickson" target="_blank"
>LinkedIn</a
>
<a href="./assets/calebCV.pdf" target="_blank">Resume</a>
</div>
</div>
</section>
<section class="board-members">
<h2>Board Members</h2>
<div class="board-grid">
<!-- 8 placeholders below. Duplicate/remove as needed. -->
<!-- TO ADD PICTURE/MAJOR/ROLE PICK AN EMPTY SPOT, ADD IMAGE TO ASSETS FOLDER, AND REFERENCE IMAGE-->
<!-- EX: -->
<!-- <img src="./assets/jacobsilvaHeadshot.png" alt="Board Member 2" /> -->
<!-- <h4>Jacob Silva/h4> -->
<!-- <p> Computer Science / Board Member </p> -->
<div class="board-member">
<img src="./assets/Jacob Silva Headshot.jpeg" alt="Board Member 1" />
<h4>Jacob Silva</h4>
<p>Computer Science<br />Co-Founder</p>
<div class="member-links">
<a
href="https://www.linkedin.com/in/jacob-silva-561582256/"
target="_blank"
>LinkedIn</a
>
<a href="./assets/Jacob Silva Resume.pdf" target="_blank">Resume</a>
</div>
</div>
<div class="board-member">
<img src="./assets/braydon_headshot.jpeg" alt="Board Member 2" />
<h4>Braydon Johnston</h4>
<p>Computer Science<br />Secretary</p>
<div class="member-links">
<a href="https://linkedin.com/in/caleb-n-dickson" target="_blank"
>LinkedIn</a
>
<a href="./assets/calebCV.pdf" target="_blank">Resume</a>
</div>
</div>
<div class="board-member">
<img src="./assets/adam_headshot.png" alt="Board Member 3" />
<h4>Adam Macfarlane</h4>
<p>Computer Science<br />Director of Projects</p>
<div class="member-links">
<a
href="https://www.linkedin.com/in/adam-macfarlane/"
target="_blank"
>LinkedIn</a
>
<a href="assets\Resume Macfaralne 2025.pdf" target="_blank">Resume</a>
</div>
</div>
<div class="board-member">
<img src="./assets/kody_headshot.jpeg" alt="Board Member 4" />
<h4>Kody Kobayashi</h4>
<p>Computer Science<br />Director of Engineers</p>
<div class="member-links">
<a
href="https://www.linkedin.com/in/kody-kobayashi-224b43294/"
target="_blank"
>LinkedIn</a
>
<a href="./WCO/assets/Kody_.pdf" target="_blank">Resume</a>
</div>
</div>
<div class="board-member">
<img src="./WCO/assets/Amanda_Headshot.png" alt="Board Member Amanda" />
<h4>Amanda Smith</h4>
<p>Marketing<br />Director of Marketing</p>
<div class="member-links">
<a href="https://www.linkedin.com/in/amanda-almanzor-a4ab26297/?profileId=ACoAAEfkRFoBeBKpflZMvRuFddsEs0hzCE6jZhQ" target="_blank">LinkedIn</a>
<a href="./resources/amanda_resume.pdf" target="_blank">Resume</a>
</div>
</div>
<div class="board-member">
<img src="./resources/headshot5.png" alt="Board Member 5" />
<h4>Board Member 5</h4>
<p>Major<br />Role</p>
<div class="member-links">
<a href="https://linkedin.com/in/..." target="_blank">LinkedIn</a>
<a href="./resources/member5_resume.pdf" target="_blank">Resume</a>
</div>
</div>
<div class="board-member">
<img src="./resources/headshot6.png" alt="Board Member 6" />
<h4>Board Member 6</h4>
<p>Major<br />Role</p>
<div class="member-links">
<a href="https://linkedin.com/in/..." target="_blank">LinkedIn</a>
<a href="./resources/member6_resume.pdf" target="_blank">Resume</a>
</div>
</div>
<div class="board-member">
<img src="./resources/headshot7.png" alt="Board Member 7" />
<h4>Board Member 7</h4>
<p>Major<br />Role</p>
<div class="member-links">
<a href="https://linkedin.com/in/..." target="_blank">LinkedIn</a>
<a href="./resources/member7_resume.pdf" target="_blank">Resume</a>
</div>
</div>
</div>
</section>
<div class="button-container">
<button class="button flex-center">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
width="22px"
class="btn-svg"
viewBox="0 0 24 24">
<g stroke-width="0" id="SVGRepo_bgCarrier"></g>
<g
stroke-linejoin="round"
stroke-linecap="round"
id="SVGRepo_tracerCarrier"></g>
<g id="SVGRepo_iconCarrier">
<path
fill="#fff"
d="M12 18C15.3137 18 18 15.3137 18 12C18 8.68629 15.3137 6 12 6C8.68629 6 6 8.68629 6 12C6 15.3137 8.68629 18 12 18ZM12 16C14.2091 16 16 14.2091 16 12C16 9.79086 14.2091 8 12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16Z"
clip-rule="evenodd"
fill-rule="evenodd"></path>
<path
fill="#fff"
d="M18 5C17.4477 5 17 5.44772 17 6C17 6.55228 17.4477 7 18 7C18.5523 7 19 6.55228 19 6C19 5.44772 18.5523 5 18 5Z"></path>
<path
fill="#fff"
d="M1.65396 4.27606C1 5.55953 1 7.23969 1 10.6V13.4C1 16.7603 1 18.4405 1.65396 19.7239C2.2292 20.8529 3.14708 21.7708 4.27606 22.346C5.55953 23 7.23969 23 10.6 23H13.4C16.7603 23 18.4405 23 19.7239 22.346C20.8529 21.7708 21.7708 20.8529 22.346 19.7239C23 18.4405 23 16.7603 23 13.4V10.6C23 7.23969 23 5.55953 22.346 4.27606C21.7708 3.14708 20.8529 2.2292 19.7239 1.65396C18.4405 1 16.7603 1 13.4 1H10.6C7.23969 1 5.55953 1 4.27606 1.65396C3.14708 2.2292 2.2292 3.14708 1.65396 4.27606ZM13.4 3H10.6C8.88684 3 7.72225 3.00156 6.82208 3.0751C5.94524 3.14674 5.49684 3.27659 5.18404 3.43597C4.43139 3.81947 3.81947 4.43139 3.43597 5.18404C3.27659 5.49684 3.14674 5.94524 3.0751 6.82208C3.00156 7.72225 3 8.88684 3 10.6V13.4C3 15.1132 3.00156 16.2777 3.0751 17.1779C3.14674 18.0548 3.27659 18.5032 3.43597 18.816C3.81947 19.5686 4.43139 20.1805 5.18404 20.564C5.49684 20.7234 5.94524 20.8533 6.82208 20.9249C7.72225 20.9984 8.88684 21 10.6 21H13.4C15.1132 21 16.2777 20.9984 17.1779 20.9249C18.0548 20.8533 18.5032 20.7234 18.816 20.564C19.5686 20.1805 20.1805 19.5686 20.564 18.816C20.7234 18.5032 20.8533 18.0548 20.9249 17.1779C20.9984 16.2777 21 15.1132 21 13.4V10.6C21 8.88684 20.9984 7.72225 20.9249 6.82208C20.8533 5.94524 20.7234 5.49684 20.564 5.18404C20.1805 4.43139 19.5686 3.81947 18.816 3.43597C18.5032 3.27659 18.0548 3.14674 17.1779 3.0751C16.2777 3.00156 15.1132 3 13.4 3Z"
clip-rule="evenodd"
fill-rule="evenodd"></path>
</g>
</svg>
</button>
<button class="button flex-center">
<svg
stroke="#fff"
fill="#fff"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
class="btn-svg"
width="22px"
viewBox="0 0 20 20">
<g stroke-width="0" id="SVGRepo_bgCarrier"></g>
<g
stroke-linejoin="round"
stroke-linecap="round"
id="SVGRepo_tracerCarrier"></g>
<g id="SVGRepo_iconCarrier">
<title>github [#fff142]</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g
fill-rule="evenodd"
fill="none"
stroke-width="1"
stroke="none"
id="Page-1">
<g
fill="#fff"
transform="translate(-140.000000, -7559.000000)"
id="Dribbble-Light-Preview">
<g transform="translate(56.000000, 160.000000)" id="icons">
<path
id="github-[#fff142]"
d="M94,7399 C99.523,7399 104,7403.59 104,7409.253 C104,7413.782 101.138,7417.624 97.167,7418.981 C96.66,7419.082 96.48,7418.762 96.48,7418.489 C96.48,7418.151 96.492,7417.047 96.492,7415.675 C96.492,7414.719 96.172,7414.095 95.813,7413.777 C98.04,7413.523 100.38,7412.656 100.38,7408.718 C100.38,7407.598 99.992,7406.684 99.35,7405.966 C99.454,7405.707 99.797,7404.664 99.252,7403.252 C99.252,7403.252 98.414,7402.977 96.505,7404.303 C95.706,7404.076 94.85,7403.962 94,7403.958 C93.15,7403.962 92.295,7404.076 91.497,7404.303 C89.586,7402.977 88.746,7403.252 88.746,7403.252 C88.203,7404.664 88.546,7405.707 88.649,7405.966 C88.01,7406.684 87.619,7407.598 87.619,7408.718 C87.619,7412.646 89.954,7413.526 92.175,7413.785 C91.889,7414.041 91.63,7414.493 91.54,7415.156 C90.97,7415.418 89.522,7415.871 88.63,7414.304 C88.63,7414.304 88.101,7413.319 87.097,7413.247 C87.097,7413.247 86.122,7413.234 87.029,7413.87 C87.029,7413.87 87.684,7414.185 88.139,7415.37 C88.139,7415.37 88.726,7417.2 91.508,7416.58 C91.513,7417.437 91.522,7418.245 91.522,7418.489 C91.522,7418.76 91.338,7419.077 90.839,7418.982 C86.865,7417.627 84,7413.783 84,7409.253 C84,7403.59 88.478,7399 94,7399"></path>
</g>
</g>
</g>
</g>
</svg>
</button>
<button class="button flex-center">
<svg
viewBox="0 -3 20 20"
width="22px"
class="btn-svg"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
fill="#fff"
stroke="#fff">
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
<g
id="SVGRepo_tracerCarrier"
stroke-linecap="round"
stroke-linejoin="round"></g>
<g id="SVGRepo_iconCarrier">
<title>youtube [#fff168]</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g
id="Page-1"
stroke="none"
stroke-width="1"
fill="none"
fill-rule="evenodd">
<g
id="Dribbble-Light-Preview"
transform="translate(-300.000000, -7442.000000)"
fill="#fff">
<g id="icons" transform="translate(56.000000, 160.000000)">
<path
d="M251.988432,7291.58588 L251.988432,7285.97425 C253.980638,7286.91168 255.523602,7287.8172 257.348463,7288.79353 C255.843351,7289.62824 253.980638,7290.56468 251.988432,7291.58588 M263.090998,7283.18289 C262.747343,7282.73013 262.161634,7282.37809 261.538073,7282.26141 C259.705243,7281.91336 248.270974,7281.91237 246.439141,7282.26141 C245.939097,7282.35515 245.493839,7282.58153 245.111335,7282.93357 C243.49964,7284.42947 244.004664,7292.45151 244.393145,7293.75096 C244.556505,7294.31342 244.767679,7294.71931 245.033639,7294.98558 C245.376298,7295.33761 245.845463,7295.57995 246.384355,7295.68865 C247.893451,7296.0008 255.668037,7296.17532 261.506198,7295.73552 C262.044094,7295.64178 262.520231,7295.39147 262.895762,7295.02447 C264.385932,7293.53455 264.28433,7285.06174 263.090998,7283.18289"
id="youtube-[#fff168]"></path>
</g>
</g>
</g>
</g>
</svg>
</button>
</div>
<footer>© 2024 World Computing Organization</footer>
<script>
const menuToggle = document.getElementById("menuToggle");
const navMenu = document.getElementById("navMenu");
menuToggle.addEventListener("click", () => {
navMenu.classList.toggle("active");
});
const toggleBtn = document.getElementById("darkModeToggle");
let isDarkMode = false;
if (localStorage.getItem("theme") === "dark") {
document.body.classList.add("dark-mode");
isDarkMode = true;
toggleBtn.innerHTML = "☽";
} else {
const prefersDark = window.matchMedia(
"(prefers-color-scheme: dark)"
).matches;
if (prefersDark) {
document.body.classList.add("dark-mode");
isDarkMode = true;
toggleBtn.innerHTML = "☽";
}
}
toggleBtn.addEventListener("click", () => {
isDarkMode = !isDarkMode;
document.body.classList.toggle("dark-mode");
toggleBtn.innerHTML = isDarkMode ? "☽" : "☼";
localStorage.setItem("theme", isDarkMode ? "dark" : "light");
});
</script>
</body>
</html>