-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (55 loc) · 2.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Streetpass tool in electron</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-black.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./css/style_index.css">
</head>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-theme w3-top w3-left-align w3-large">
<a class="w3-bar-item w3-button w3-right w3-hide-large w3-hover-white w3-large w3-theme-l1"
href="javascript:void(0)" onclick="w3_open()"><i class="fa fa-bars"></i></a>
<a id="about" href="#" class="w3-bar-item w3-button w3-hide-small w3-hover-white active"
onclick="load_about()">About</a>
<label for="CEC_folder" class="w3-bar-item w3-button w3-hide-small w3-hover-white">Import</label>
<input type="file" id="CEC_folder" name="fileList" webkitdirectory />
<a href="#" class="w3-bar-item w3-button w3-hide-small w3-hover-white">Export</a>
<a id="list" href="#" class="w3-bar-item w3-button w3-hide-small w3-hover-white"
onclick="load_list()">Supported Game</a>
</div>
</div>
<!-- Sidebar -->
<nav class="w3-sidebar w3-bar-block w3-collapse w3-large w3-theme-l5 w3-animate-left" id="mySidebar">
<a href="javascript:void(0)" onclick="w3_close()"
class="w3-right w3-xlarge w3-padding-large w3-hover-black w3-hide-large" title="Close Menu">
<i class="fa fa-remove"></i>
</a>
<div id="titleSelector">
<h4 class="w3-bar-item"><b>Menu</b></h4>
<!-- <a class="w3-bar-item w3-button w3-hover-black" href="#">Link</a> "Template"-->
</div>
</nav>
<!-- Overlay effect when opening sidebar on small screens -->
<div class="w3-overlay w3-hide-large" onclick="w3_close()" style="cursor:pointer" title="close side menu"
id="myOverlay"></div>
<!-- Main content: shift it to the right by 250 pixels when the sidebar is visible -->
<div class="w3-main" style="margin-left:250px; height: 100%;">
<iframe class="main" id="main" src="about.html" onLoad="iframe_reload_event();" title="Main"></iframe>
<!-- varies from games/situation, you can do without iframe but I'm noob !-->
<footer id="myFooter">
<div class="w3-container w3-theme-l2 myFooter">
<h4>3DS Streetpass Tool created by Pixelbo</h4>
</div>
</footer>
<!-- END MAIN -->
</div>
<script src="./libs/HTMLjs/index.js"></script>
</body>
</html>