-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (130 loc) · 5.64 KB
/
index.html
File metadata and controls
133 lines (130 loc) · 5.64 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
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="title" content="MCSR Allowed Mod List" />
<meta name="description" content="List of allowed mods of Minecraft speedrunning" />
<meta property="og:image" content="./images/icon.png" />
<title>MCSR Allowed Mod List</title>
<link rel="shortcut icon" href="./images/icon.png" type="image/x-icon" />
<link rel="stylesheet" href="./css/materialize.css">
<link href="./stylesheet.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="./js/bin/materialize.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://unpkg.com/compare-versions/lib/umd/index.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jszip@3.7.1/dist/jszip.min.js"></script>
</head>
<body>
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper">
<span class="white-text" style="font-size: 1.75em; font-weight: bold; padding-left: 1em;">MCSR Mod List</span>
</div>
</nav>
</div>
<main>
<div class="container">
<center><img src="./images/end_crystal.png" width="25%" style="margin: auto 0"></center>
<div style="font-size: 2.5em; text-align: center;">Minecraft SpeedRun Mods</div>
<div style="font-size: 1.5em; text-align: center; color: rgb(255, 87, 87);">Do not use Fabric API!</div>
</br>
<div style="text-align: center;">
<a class="waves-effect waves-light btn" href="http://bombch.us/DOOK" target="_blank">Mods & Optifine Rules Document</a>
</div>
</br>
<div class="row">
<div class="col s3">
<p>Resource Type</p>
<p>
<label>
<input class="with-gap" name="resource-type" type="radio" value="mods" checked />
<span>Mods</span>
</label>
</p>
<p>
<label>
<input class="with-gap" name="resource-type" type="radio" value="modpack" />
<span>Modpack</span>
</label>
</p>
<br>
<p>Minecraft Version</p>
<div class="input-field" id="game-versions">
</div>
<br>
<p>Run Type</p>
<p>
<label>
<input class="with-gap" name="run-type" type="radio" value="rsg" checked />
<span>Random Seed</span>
</label>
</p>
<p>
<label>
<input class="with-gap" name="run-type" type="radio" value="ssg" />
<span>Set Seed</span>
</label>
</p>
<p>
<label>
<input class="with-gap" name="run-type" type="radio" value="all" />
<span>All</span>
</label>
</p>
<br>
<p>OS</p>
<p>
<label>
<input class="with-gap" name="os-type" type="radio" value="windows" />
<span>Windows</span>
</label>
</p>
<p>
<label>
<input class="with-gap" name="os-type" type="radio" value="osx" />
<span>MacOS</span>
</label>
</p>
<p>
<label>
<input class="with-gap" name="os-type" type="radio" value="linux" />
<span>Linux</span>
</label>
</p>
<br>
<p>Additional Options</p>
<p>
<label>
<input type="checkbox" name="medical-issue" class="filled-in" />
<span>Accessibility Mods<p style="padding-left: 35px;" class="light-font description">You may utilize these mods ONLY if you tell the MCSR Team about a medical condition that makes them necessary in advance.</p></span>
</label>
</p>
</div>
<div class="col s9">
<ul class="collapsible" id="resources-tab">
</ul>
</div>
</div>
</div>
</main>
<footer class="page-footer">
<div class="container">
<ul style="text-align: center; color: white;">
<li><a href="https://me.redlimerl.com/" target="_blank">Made by RedLime</a></li>
<li><br></li>
<li><a href="https://discord.gg/jmdFn3C" target="_blank">MCSR Javacord</a></li>
<li><a href="https://github.com/RedLime/MCSRMods" target="_blank">Github Repository</a></li>
</ul>
</div>
</footer>
</body>
<script>
M.AutoInit();
var elem = document.querySelector('.collapsible.expandable');
var instance = M.Collapsible.init(elem, {
accordion: false
});
</script>
<script src="./index.js"></script>
</html>