You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.5 KiB
39 lines
1.5 KiB
4 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
4 years ago
|
<title>Keyzo</title>
|
||
4 years ago
|
<link rel="stylesheet" href="stylesheets/bootstrap.min.css">
|
||
|
<link rel="stylesheet" href="stylesheets/index.css">
|
||
|
<link rel="stylesheet" href="stylesheets/main.css">
|
||
4 years ago
|
<link rel="stylesheet" href="stylesheets/icons/iconfont/material-icons.css">
|
||
4 years ago
|
</head>
|
||
|
<body>
|
||
|
<div class="wrapper">
|
||
4 years ago
|
<webview id="main-page" nodeintegration src="/pages/devices.html"></webview>
|
||
4 years ago
|
</div>
|
||
|
<div class="nav-left position-absolute">
|
||
|
<ul class="nav-list-top nav-list p-0 text-center position-absolute m-0">
|
||
4 years ago
|
<li title="Devices" class="nav-item" id="devices">
|
||
|
<i class="material-icons">devices</i>
|
||
4 years ago
|
</li>
|
||
|
<li title="Keybinds" class="nav-item" id="keybinds">
|
||
4 years ago
|
<i class="material-icons">keyboard</i>
|
||
4 years ago
|
</li>
|
||
|
<li title="Macro's" class="nav-item" id="macros">
|
||
4 years ago
|
<i class="material-icons">build</i>
|
||
4 years ago
|
</li>
|
||
|
</ul>
|
||
|
<ul class="nav-list nav-list-bottom p-0 text-center position-absolute m-0">
|
||
|
<li title="Account" class="nav-item" id="account">
|
||
4 years ago
|
<i class="material-icons">person</i>
|
||
4 years ago
|
</li>
|
||
|
<li title="Settings" class="nav-item" id="settings">
|
||
4 years ago
|
<i class="material-icons">settings</i>
|
||
4 years ago
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<script src="javascripts/index.js"></script>
|
||
|
</body>
|
||
|
</html>
|