-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
41 lines (40 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<title>pyra-wasm</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="methods/methods.js"></script>
<script src="main.js"></script>
<script src="pyra.js"></script>
<script src="https://cdn.cubing.net/v0/js/cubing/twisty" type="module"></script>
</head>
<body>
<header class="header">
<div>
<p class="header-logo">PYRA-WASM</p>
</div>
</header>
<div class="input-layout">
<twisty-player id="scramble"
puzzle="pyraminx"
back-view="top-right"
background="none"
control-panel="none"></twisty-player>
<div class="search" style="display: flex; flex-direction: column; align-items: center;">
<div class="searchbar" style="display: flex;">
<button class="fa fa-gear settings-button" id="settings"></button>
<textarea id = "input" class="text-area"></textarea>
<button id = "search" class="search-button">🔎︎</button>
</div>
</div>
<div id="settings_menu" style="display: none">
<checkbox>siur</checkbox>
</div>
</div>
<div class="solutions">
<div id = "solution"></div>
</div>
</body>
</html>