-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwriteSelf.html
44 lines (40 loc) · 853 Bytes
/
writeSelf.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript" src="writeSelfMain.js" async></script>
<link href="https://fonts.googleapis.com/css?family=Overpass+Mono" rel="stylesheet">
<style>
html, body {
margin-top: 0;
height: 100%;
overflow: hidden;
color: black;
}
pre {
overflow: auto;
z-index: 3;
border-radius: 1px; /* Prevents bad clipping in Chrome */
max-height: 100%;
}
::selection {
color: white;
background: #ef5300;
}
input{
position: fixed;
left: 15px;
bottom: 20px;
}
#speed{
position: fixed;
left: 64px;
bottom: 5px;
color: #d3d3d3;
}
</style>
</head>
<body>
</body>
</html>