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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

35 lines
1.4 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">
<title>Keybinds</title>
<link rel="stylesheet" href="../stylesheets/bootstrap.min.css">
<link rel="stylesheet" href="../stylesheets/main.css">
<link rel="stylesheet" href="../stylesheets/icons/iconfont/material-icons.css">
4 years ago
<link rel="stylesheet" href="../stylesheets/keybinds.css">
</head>
<body>
<div class="container pt-3 h-100">
<h1>
Keybinds
<i class="material-icons float-right mt-4 add-keybind">add</i>
4 years ago
</h1>
<hr class="dark">
<div class="dark-overlay position-absolute w-100 h-100 justify-content-center align-items-center" style="display: none;">
<div class="select-function" style="display: none;">
<nav>
<div class="nav-item"></div>
</nav>
4 years ago
</div>
<input type="text" readonly class="keybind-input border-0 keybind-input text-center" placeholder="Recording keys">
<div class="btn-container position-absolute">
<a href="#" class="cancel-btn mr-3 text-muted">Cancel</a>
<button class="btn btn-info done-btn">Next</button>
4 years ago
</div>
</div>
</div>
4 years ago
<script src="../javascripts/keybinds.js"></script>
</body>
</html>