-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathversions.html
More file actions
27 lines (27 loc) · 1.09 KB
/
versions.html
File metadata and controls
27 lines (27 loc) · 1.09 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Versions</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/icon type" href="images/icon.png">
<link rel="stylesheet" type="text/css" href="style.css"/>
<link rel="preload" type="image/svg+xml" as="image" href="images/button_active.svg"/>
</head>
<body class="dirt grid">
<div class="fgtop flex_space" style="padding-top: calc(var(--local-scale) * 4px);">
<h2 style="position:absolute">Versions (v1)</h2>
<input class="mctextfield center" style="z-index:1" oninput="updateSearch(this, false)" onkeypress="if(event.keyCode == 13) updateSearch(this, true)">
</div>
<div class="scrollcontent dirt darkbg">
<div class="menucontainer" id="vers">
</div>
</div>
<!-- Invisible grid row -->
<div style="height: calc(var(--local-scale) * 32px);"></div>
<!-- Fixed row -->
<div style="position:fixed; bottom:0" class="fgbottom">
<a href="index.html" class="mcbutton center">Back</a>
</div>
<script src="script/versions.js"></script>
</body>
</html>