-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
79 lines (70 loc) · 1.99 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
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>hello, friend</title>
<script src="options.js"></script>
<script src="utils.js"></script>
<script src="render.js"></script>
<script src="script.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
background-color: black;
color: white;
margin: 0;
font-family: monospace;
font-size: 14px;
line-height: 1.2rem;
text-transform: lowercase;
margin: 33vh auto;
cursor: default;
overflow: hidden;
transition: 0.2s background-color;
}
#container {
display: grid;
align-self: center;
justify-content: center;
justify-items: center;
justify-self: center;
grid-gap: 2rem;
height: auto;
}
h1 {
color: rgb(66, 66, 66);
display: flex;
align-items: center;
justify-content: center;
}
h2 {
font-size: 1rem;
}
a {
text-decoration: none;
color: #c5c8c6;
}
.separator {
line-height: 0.75rem;
}
a:hover {
color: white;
font-weight: bold;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
div.column {
justify-self: center;
grid-area: 1;
}
</style>
</head>
<body>
<h1 id="welcome"></h1>
<div id="container"></div>
</body>
</html>