-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (63 loc) · 1.45 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<title>Hi</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="dome.js" defer></script>
<style type="text/css">
body > div#main > span > div#static_links {
height: 30px;
}
body > div#main > span > form > input {
border: none;
height: 50px;
}
div#links > div.section {
display: inline-block;
vertical-align: top;
height: 200px;
width: 300px;
margin: 2px;
}
div#links > div.section > div {
padding: 15px;
}
div#wiper {
display: block;
position: fixed;
width: 100vw;
height: 100vh;
background-color: #121B18;
opacity: 1;
z-index: 100;
transition: .5s opacity .5s, .5s z-index .5s;
}
html, body {
margin: 0;
background-color: #121B18;
}
</style>
</head>
<body onresize="matchLinks()" onunload="">
<div id="wiper"></div>
<div id="main" style="max-width: 912px;">
<span style="display: block">
<div id="static_links">
<span id="clock">
<!-- dome.js: displayDate() fills this element -->
</span>
<a href="mailto:">Compose E-Mail</a>
<a href="steam:">Open Steam</a>
</div>
<form method="GET" id="action">
<input type="text" oninput="matchLinks(this.value)" autofocus autocomplete="off">
</form>
<div id="links">
<!-- dome.js: matchLinks() fills this element -->
</div>
</span>
</div>
</body>
</html>