-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·92 lines (84 loc) · 1.7 KB
/
index.html
File metadata and controls
executable file
·92 lines (84 loc) · 1.7 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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/png" href="/aaxolotl.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<meta name="description" content="My personal website">
<style>
#background {
height: 100%;
position: fixed;
width: 100%;
background-color:black;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
body {
margin: auto;
}
pre {
font-size: larger;
margin:auto;
}
canvas {
width:100%;
height:100%;
}
#nav_bar {
position:fixed;
width:100%;
}
#desktop {
height: 100%;
}
.line_br {
height:10px;
}
.ascii {
font-size: 10px;
height:10px;
font-stretch:200%;
}
.ascii_held {
font-family: Monospace;
white-space: pre;
text-align: center;
}
.ascii_small {
font-stretch:200%;
height:11px;
letter-spacing: 1px;
}
.slider::-moz-range-thumb {
width: 25px;
height: 25px;
background: #fff;
border-radius: 35%;
cursor: pointer;
}
</style>
</head>
<body>
<div id=background>
<noscript style="color:white">
<pre> [ 0.0001 ] Kernel Panic! </pre>
<pre> [ 0.0023 ] Please Enable JavaScript </pre>
</noscript>
<div id=content>
<div id="desktop">
</div>
</div>
<canvas id=logon>
</canvas>
</div>
<div id=nav_bar>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/p5@1.11.11/lib/p5.min.js"></script>
<script src="globals.js"></script>
<script src="main_thread.js"></script>
<script src="logon_scr.js"></script>
</html>