-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmembers.html
126 lines (125 loc) · 4.37 KB
/
members.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<link rel="stylesheet" href="main.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.green.min.css"
/>
<link rel="shortcut icon" type="image/jpg" href="favicon.jpg">
<title>Team Green Menace</title>
</head>
<body>
<div id="fancy-background"></div>
<nav>
<ul>
<li>
<a href="/#home" title="Fear The Green">Green Menace</a>
</li>
<li>
<a href="./members.html">Team Members</a>
</li>
<li>
<a href="./about.html">About</a>
</li>
</ul>
<ul>
<li>
<a href="./un-goals.html">UN Goals</a>
</li>
<li>
<a href="./community.html">Connection to Community</a>
</li>
<li>
<a href="./fundraisers.html">Fundraisers</a>
</li>
<li>
<a href="./contact.html">Contact</a>
</li>
<li>
<a href="./credits.html">Credits</a>
</li>
<li>
<a
href="https://github.com/acuccoder/ftc-greenmenace-website"
><i class="fa-brands fa-github"></i
></a>
</li>
</ul>
</nav>
<main class="container">
<h1 id="typed-title"></h1>
<div class="parent">
<img src="imgs/shivan.jpg">
<img src="imgs/abhi.jpg">
<img src="imgs/sehbi.jpg">
<img src="imgs/aaravv.jpg">
<img src="imgs/aaryan.jpg">
<img src="imgs/ryan.jpg">
<img src="imgs/pranshu.jpg">
<img src="imgs/kai.jpg">
<img src="imgs/juan.jpg">
<img src="imgs/pujan.png">
<img src="imgs/" alt="Coming Soon">
<img src="imgs/jaskaran.jpg">
</div>
</main>
</body>
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
<script>
const typed = new Typed("#typed-title", {
strings: ["Our Team Members"],
typeSpeed: 50,
cursorChar: "_",
});
/* Just in case a toggle is added later,
I have stored the darkmode value in a variable. */
const prefersDark =
window.matchMedia &&
window.matchMedia("(prefers-color-scheme: dark)").matches;
if (prefersDark) {
// VANTA.JS Imports
VANTA.NET({
el: "#fancy-background",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.0,
minWidth: 200.0,
scale: 1.0,
scaleMobile: 1.0,
color: 0x841b,
backgroundColor: 0x15173c,
points: 8.0,
maxDistance: 22.0,
});
} else {
VANTA.NET({
el: "#fancy-background",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.0,
minWidth: 200.0,
scale: 1.0,
scaleMobile: 1.0,
color: 0xffffff,
backgroundColor: 0x9eff9e,
points: 8.00,
maxDistance: 22.00
});
}
</script>
</html>