-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
34 lines (30 loc) · 1.25 KB
/
popup.html
File metadata and controls
34 lines (30 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<title>SoarBulba</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="">
<div id="main" class="">
<button class="sectionButton" value="Game_data">Game Data</button>
<button class="sectionButton" value="Game_locations">Game Locations</button>
<button class="sectionButton" value="Stats">Stats</button>
<button class="sectionButton" value="Type_effectiveness">Type Matchups</button>
<button class="sectionButton" value="Learnset">Moveset</button>
<button class="sectionButton" value="Evolution_data">Evolution</button>
</div>
<div id="colorSelect" class="option-mode">
<button value="green" class="colorButton green"></button>
<button value="red" class="colorButton red"></button>
<button value="blue" class="colorButton blue"></button>
<button value="yellow" class="colorButton yellow"></button>
</div>
<div class="bottom">
<br>
<button id="toggleMode">💡</button>
<button id="options">⚙</button>
<a id="credits" href="https://github.com/Iced-code/SoarBulba" target="_blank" class="option-mode">Created by Ayaan Modak (GitHub: Iced-code)</a>
</div>
<script src="content.js"></script>
</body>
</html>