-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
215 lines (195 loc) · 7.14 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<style>
html {
background-color: black;
scroll-behavior: smooth;
}
#navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 30px;
background: linear-gradient(180deg, rgba(0, 86, 255, 1) 0%, rgba(0, 0, 0, 1) 100%);
z-index: 1;
}
#bgDiv {
background: url('./bg.gif');
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
#mainDiv {
position: fixed;
top: 30px;
left: 0;
width: 100%;
height: calc(100% - 30px);
background: #00000098;
color: white;
overflow-y: scroll;
}
#headerDiv {
position: relative;
width: 100%;
}
h1#header {
text-align: center;
font-size: 40px;
margin: 15px auto 15px auto;
}
#contentDiv {
margin: 10px;
}
#screenshotsDiv {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-items: center;
justify-content: space-around;
align-items: center;
}
#screenshotsDiv .screenshot {
margin: 5px;
}
#qnaDiv {
margin-left: 10px;
}
#qnaDiv hr {
margin: 0 0 0 0;
}
figcaption {
text-align: center;
}
a:link {
color: #50ff85;
}
a:visited {
color: #bb3baa;
}
a.button {
background: black;
color: white;
padding: 1px 6px 1px 6px;
border-radius: 2px;
background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgb(132, 0, 255) 50%, rgba(0, 0, 0, 1) 100%);
height: 100%;
font-size: x-large;
}
a.button:link,
a.button:visited {
color: white;
text-decoration: none;
}
</style>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>rsbsPLUS</title>
</head>
<body>
<div id="bgDiv"></div>
<div id="navbar">
<a class="button" href="#downloads">Downloads</a>
<a class="button" href="#screenshots">Screenshots</a>
<a class="button" href="#qna">Q&A</a>
</div>
<div id="mainDiv">
<div id="headerDiv">
<h1 id="header">Welcome to the rsbsPLUS website!</h1>
<h2 style="text-align: center;">Here you can find all the info you need to get your rsbsPLUS adventure started!
</h2>
</div>
<hr>
<div id="contentDiv">
<h2 id="downloads">⚙ Downloads</h2>
<div id="downloadsDiv">
<h3>You can currently download rsbsPLUS for:</h3>
<ul>
<li>
<a href="https://github.com/rsbsPLUS-org/rsbsPLUS-gb">Nintendo GameBoy (also compatible with
Color)</a>
</li>
<li>
<a href="https://github.com/rsbsPLUS-org/rsbsPLUS-gba">Nintendo GameBoy Advance</a>
</li>
<li>
<a href="https://github.com/rsbsPLUS-org/rsbsPLUS-nds">Nintendo DS port</a>
</li>
<li>
<a href="https://github.com/rsbsPLUS-org/rsbsPLUS-gcn">Nintendo GameCube</a>
</li>
<li>
<a href="https://github.com/rsbsPLUS-org/rsbsPLUS-nx">Nintendo Switch</a>
</li>
<li>
<a href="https://github.com/rsbsPLUS-org/rsbsPLUS-xboxen">Microsoft Xbox</a>
</li>
<li>
<a href="https://github.com/rsbsplus-org/rsbsplus-sdl">SDL2 general port</a>
</li>
<li>
<a href="https://github.com/rsbsplus-org/rsbsplus-smd">Sega Mega Drive</a>
</li>
</ul>
</div>
<h2 id="screenshots">⚙ Screenshots</h2>
<div id="screenshotsDiv">
<figure>
<img class="screenshot" src="screenshots/gb_dmg.png" alt="">
<figcaption>rsbsPLUS-gb on Nintendo GameBoy (VBAM)</figcaption>
</figure>
<figure>
<img class="screenshot" src="screenshots/gb_gbc.png" alt="">
<figcaption>rsbsPLUS-gb on Nintendo GameBoy Color (VBAM)</figcaption>
</figure>
<figure>
<img class="screenshot" src="screenshots/gba.png" alt="">
<figcaption>rsbsPLUS-gb on Nintendo GameBoy Advance (VBAM)</figcaption>
</figure>
<figure>
<img class="screenshot" src="screenshots/nds.png" alt="">
<figcaption>rsbsPLUS-gb on Nintendo DS (melonDS)</figcaption>
</figure>
<figure>
<img class="screenshot" src="screenshots/gcn.png" alt="">
<figcaption>rsbsPLUS-gcn on Nintendo GameCube (Dolphin)</figcaption>
</figure>
<figure>
<img class="screenshot" src="screenshots/xbox.png" alt="">
<figcaption>rsbsPLUS-xboxen on Microsoft Xbox (xemu)</figcaption>
</figure>
<figure>
<img class="screenshot" src="screenshots/sdl.png" alt="">
<figcaption>rsbsPLUS-sdl on Manjaro Linux KDE</figcaption>
</figure>
<figure>
<img class="screenshot" src="screenshots/smd.png" alt="">
<figcaption>rsbsPLUS-smd on Sega Mega Drive (DGen)</figcaption>
</figure>
<figure>
<img class="screenshot" src="screenshots/nx.png" alt="">
<figcaption>rsbsPLUS-nx on Nintendo Switch (real hw)</figcaption>
</figure>
</div>
<h2 id="qna">⚙ Q&A</h2>
<div id="qnaDiv">
<h3>Q: what is rsbsPLUS?</h3>
<h4>A: rsbsPLUS is a series of ports with enhancements of jefe (a.k.a. JayFoxRox)'s RSBS homebrew for the V.Smile. It then became a meme and I'm here beating on a dead horse making this basically another kind of "Hello World!"</h4>
<hr>
<h3>Q: Why would I choose one version over the other?</h3>
<h4>A: Well, first off, so you can play the game on whatever platform you like among the supported ones. Secondly, I am trying to spice things up by giving each port something special</h4>
<h4>For example: the GB<C> version is pretty cute imo. The DS version uses both screens with the console held like a book and seamless transition from top to bottom and vice-versa. The GBA version has a nice scrolling background... etc
etc</h4>
<hr>
<h3>Q: Why?</h3>
<h4>A: Why not?</h4>
</div>
</div>
</div>
</body>
</html>