-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredits.html
114 lines (113 loc) · 4.35 KB
/
credits.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
<!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>
<p>This website was coded and designed by Aaravv Chopra. The paragraphs were written by Shivan Luthra and Abhi Patel. The photos were taken by Ryan Kumar. We use the <a href="https://picocss.com">PicoCSS</a>, <a href="https://mattboldt.github.io/typed.js/">Typed.js</a>, and <a href="https://vantajs.com">Vanta.js</a> JavaScript and CSS libraries. Our website is licenced under the <a href="https://www.gnu.org/licenses/gpl.html">GNU GPLv3</a>. All other trademarks, logos, or external content are the property of their respective owners.
</p>
</main>
</body>
<script src="https://unpkg.com/typed.js@2.1.0/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: ["Credits"],
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>