forked from EmulatorJS/EmulatorJS
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsupported-systems.html
More file actions
239 lines (214 loc) · 8.85 KB
/
supported-systems.html
File metadata and controls
239 lines (214 loc) · 8.85 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
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<!DOCTYPE html>
<html>
<head>
<title>Supported Systems - Not EmulatorJS</title>
<link rel="icon" href="docs/favicon.ico" sizes="16x16 32x32 48x48 64x64" type="image/vnd.microsoft.icon">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
body, html {
height: 100vh;
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
color: #ffffff;
margin: 0;
font-family: 'Inter', sans-serif;
display: flex;
flex-direction: column;
position: relative;
overflow-x: hidden;
width: 100vw;
}
body {
flex: 1;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
margin: 2rem;
width: 100%;
max-width: 800px; /* Limit the width for better readability */
}
h1 {
font-size: 3rem;
font-weight: 700;
background: linear-gradient(90deg, #ffffff, #a0a0a0);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
margin-bottom: 1rem;
text-align: center;
}
h2 {
font-size: 1.75rem;
font-weight: 600;
color: #e0e0e0;
margin: 1.5rem 0 1rem;
text-align: center;
}
.systems-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
margin-bottom: 2rem;
width: 100%;
}
.system-item {
background: rgba(40, 40, 40, 0.95);
color: #e0e0e0;
padding: 0.75rem 1.5rem;
border-radius: 0.75rem;
font-weight: 600;
font-size: 1rem;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
backdrop-filter: blur(5px);
}
.system-item:hover {
background: rgba(90, 90, 90, 0.9);
color: #ffffff;
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
footer {
width: 100%;
padding: 0.7rem 1rem;
color: #e0e0e0;
font-style: italic;
font-size: 0.9rem;
font-weight: 400;
background: rgba(30, 30, 30, 0.8);
backdrop-filter: blur(5px);
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
z-index: 5;
margin-top: auto;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.github-button {
position: absolute;
right: 1.15rem;
bottom: 0.2rem;
display: flex;
justify-content: center;
align-items: center;
padding: 2px 6px;
gap: 4px;
background-color: #181717;
outline: 2px #181717 solid;
outline-offset: -2px;
border-radius: 5px;
border: none;
cursor: pointer;
transition: 400ms;
z-index: 10;
text-decoration: none;
font-style: normal;
}
.github-button .text {
color: white;
font-weight: 700;
font-size: 0.6em;
transition: 400ms;
}
.github-button svg {
width: 12px;
height: 12px;
}
.github-button svg path {
transition: 400ms;
}
.github-button:hover {
background-color: transparent;
}
.github-button:hover .text {
color: #181717;
}
.github-button:hover svg path {
fill: #181717;
}
.back-link {
color: #e0e0e0;
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 1.25rem;
text-decoration: underline;
margin: 1rem 0;
transition: color 0.3s ease, transform 0.3s ease;
}
.back-link:hover {
color: #ffffff;
transform: translateY(-2px);
}
</style>
</head>
<body>
<div class="container">
<h1>Supported Systems for EmulatorJS</h1>
<h2>Nintendo</h2>
<div class="systems-list">
<div class="system-item">Game Boy Advance</div>
<div class="system-item">Famicom / NES</div>
<div class="system-item">Virtual Boy</div>
<div class="system-item">Game Boy</div>
<div class="system-item">SNES</div>
<div class="system-item">DS</div>
<div class="system-item">64</div>
</div>
<h2>Sega</h2>
<div class="systems-list">
<div class="system-item">Master System</div>
<div class="system-item">Mega Drive</div>
<div class="system-item">Game Gear</div>
<div class="system-item">Saturn</div>
<div class="system-item">32X</div>
<div class="system-item">CD</div>
</div>
<h2>Atari</h2>
<div class="systems-list">
<div class="system-item">2600</div>
<div class="system-item">5200</div>
<div class="system-item">7800</div>
<div class="system-item">Lynx</div>
<div class="system-item">Jaguar</div>
</div>
<h2>Commodore</h2>
<div class="systems-list">
<div class="system-item">Commodore 64</div>
<div class="system-item">Commodore 128</div>
<div class="system-item">Commodore Amiga</div>
<div class="system-item">Commodore PET</div>
<div class="system-item">Commodore Plus/4</div>
<div class="system-item">Commodore VIC-20</div>
</div>
<h2>Others</h2>
<div class="systems-list">
<div class="system-item">PlayStation</div>
<div class="system-item">PlayStation Portable</div>
<div class="system-item">Arcade</div>
<div class="system-item">3DO</div>
<div class="system-item">MAME 2003</div>
<div class="system-item">ColecoVision</div>
</div>
<a href="index.html" class="back-link">Back to Home</a>
</div>
<footer>
<span>Not EmulatorJS: A lightweight, browser-based emulator using EmulatorJS.</span>
<a href="https://github.com/hackz00/NotEmulatorJS" class="github-button">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 0.296997C5.37 0.296997 0 5.67 0 12.297C0 17.6 3.438 22.097 8.205 23.682C8.805 23.795 9.025 23.424 9.025 23.105C9.025 22.82 9.015 22.065 9.01 21.065C5.672 21.789 4.968 19.455 4.968 19.455C4.422 18.07 3.633 17.7 3.633 17.7C2.546 16.956 3.717 16.971 3.717 16.971C4.922 17.055 5.555 18.207 5.555 18.207C6.625 20.042 8.364 19.512 9.05 19.205C9.158 18.429 9.467 17.9 9.81 17.6C7.145 17.3 4.344 16.268 4.344 11.67C4.344 10.36 4.809 9.29 5.579 8.45C5.444 8.147 5.039 6.927 5.684 5.274C5.684 5.274 6.689 4.952 8.984 6.504C9.944 6.237 10.964 6.105 11.984 6.099C13.004 6.105 14.024 6.237 14.984 6.504C17.264 4.952 18.269 5.274 18.269 5.274C18.914 6.927 18.509 8.147 18.389 8.45C19.154 9.29 19.619 10.36 19.619 11.67C19.619 16.28 16.814 17.295 14.144 17.59C14.564 17.95 14.954 18.686 14.954 19.81C14.954 21.416 14.939 22.706 14.939 23.096C14.939 23.411 15.149 23.786 15.764 23.666C20.565 22.092 24 17.592 24 12.297C24 5.67 18.627 0.296997 12 0.296997Z" fill="white"></path>
</svg>
<p class="text">Github</p>
</a>
</footer>
</body>
</html>