-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstevenssmash.html
63 lines (60 loc) · 2.43 KB
/
stevenssmash.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
<!DOCTYPE html>
<html>
<head>
<title>Super Smash Bros.</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<link href="https://fonts.googleapis.com/css?family=Lato|Roboto&display=swap" rel="stylesheet">
<script src="script.js"></script>
<script src="http://code.jquery.com/jquery-3.1.0.min.js"></script>
</head>
<body>
<div id="fullheader">
<h1>Super Smash Bros. Ultimate</h1>
<div>
<!-- this is going to be the navbar eventually -->
<nav>
<a href="index.html">Home</a> | <a href="info.html">Info</a> | <a href="news.html">News/Media</a> | <a href="stevenssmash.html">Smash at Stevens</a>
</nav>
</div>
</div>
<h3>Change color theme</h3>
<div id="colorElements">
<div>
<input type="radio" class="colorTheme" name="colorTheme" value="redTheme" onchange="redTheme(this);">
<label for="head">Mario</label>
</div>
<div>
<input type="radio" class="colorTheme" name="colorTheme" value="blueTheme" onchange="blueTheme(this);">
<label for="head">Marth</label>
</div>
<div>
<input type="radio" class="colorTheme" name="colorTheme" value="greenTheme" onchange="greenTheme(this)">
<label for="head">Yoshi</label>
</div>
<div>
<input type="radio" class="colorTheme" name="colorTheme" value="pinkTheme" onchange="pinkTheme(this);">
<label for="head">Peach</label>
</div>
</div>
<div id="discordLinkWrapper">
<a href="https://discord.gg/HgakcD6" id="discordLink">Join the C2GS Discord to stay up-to-date with SSBU at Stevens</a>
</div>
<h2>Stevens Competitive Ruleset</h2>
<div id="rulesetContainer">
<ul id="ruleset">
<li>3 stock</li>
<li>7 minutes</li>
<li>Hazards Off</li>
<li>Legal Stages</li>
<ul>
<li>Battlefield</li>
<li>Final Destination</li>
<li>Pokemon Stadium 2</li>
<li>Town and City</li>
<li>Smashville</li>
<li>Kalos Pokemon League</li>
</ul>
</ul>
</div>
</body>
</html>