-
Notifications
You must be signed in to change notification settings - Fork 28
/
index.html
42 lines (42 loc) · 835 Bytes
/
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
<!doctype html>
<head>
<meta charset="utf-8">
<title>Simple Console</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="simple-console.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
</head>
<body>
<style>
html,
body {
height: 100%;
margin: 0;
display: flex;
flex: 1;
}
h1, p {
margin: 0.5rem 0;
}
h1, h2 {
font-family: "Open Sans", sans-serif;
}
h1 {
font-weight: normal;
}
a {
color: #4078c0;
}
a:not(:hover) {
text-decoration: none;
}
code {
font-family: inherit;
padding: 0.1em 0.2em;
border: 1px solid rgba(128, 128, 128, 0.5);
border-radius: 0.1em;
}
</style>
<script src="simple-console.js"></script>
<script src="demo.js"></script>
</body>