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.
|
|
|
<!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">
|
|
|
|
<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>
|
|
|
|
</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>
|
|
|
|
</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>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="../javascripts/keybinds.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|