forked from Nailington/gba-host
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.html
64 lines (52 loc) · 2.34 KB
/
settings.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="ghpages_files/user_css/index.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GBA Settings</title>
<meta charset="UTF-8">
<meta name="description" content= "Settings page for Free GBA Games site! Gba Github!." />
<meta name="robots" content= "index, follow">
<meta name="keywords" content="gba, games, unblocked, play, free, gameboy, advance, emulator, roms, rom">
<link rel="shortcut icon" href="Binaries/gb.ico">
<link rel = "stylesheet" href = "ghpages_files/user_css/themes.css">
</head>
<nav>
<div class="wrappers">
<p class="main-div main-div2"><a href="settings.html">Switch Theme</a></p>
<p class="main-div main-div2"><a href="https://discord.gg/nZrabh4cgH">Want more games?</a></p>
</div>
</nav>
<body>
<h2>Welcome to the Retro Emulator</h2>
<ul class="menu">
<li><a href="index.html" data-bubble="Home...">Return Home</a></li>
</ul>
<h1>Settings</h1>
<main>
<h2>Themes</h3>
<div class="theme-container">
<div class="light-theme-container">
<h3 class="light-theme-content"><a href="#" onclick="themeValue(1);"> Light Theme </a></h3>
</div>
<div class="dark-theme-container">
<h3 class="dark-theme-content"><a href="#" onclick="themeValue(2);"> Dark Theme </a></h3>
</div>
<div class="pink-theme-container">
<h3 class="pink-theme-content"><a href="#" onclick="themeValue(3);"> Pink Theme </a></h3>
</div>
<div class="green-theme-container">
<h3 class="green-theme-content"><a onclick="themeValue(4);"> Green Theme - Made by Nailington </a></h3>
</div>
<button type="button" class="collapsible-theme">Custom Theme Picker</button>
<div class="custom-theme-content">
<p>Color Picker: Coming soon...</p>
<P>Background Picker: Coming soon...</P>
<p>More: Coming soon...</p>
</div>
<h1> More Themes soon + More Settings </h1>
</div>
</main>
</body>
<script src="ghpages_files/user_scripts/theme.js"></script>
</html>