-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (48 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Index</title>
</head>
<body>
{%DIRECTORY%}
<style>
html {
--blue: white;
--yellow: black;
--subtle: rgba(0, 0, 0, 0.1);
margin: 0;
}
h2 { text-align: center; }
body {
font-family: monospace;
font-weight: 200;
background: var(--blue);
color: black;
font-size: 1.0em;
}
a {
color: var(--yellow);
display: block;
padding: 5px 10px;
text-decoration: none;
display: flex;
gap: 8px;
align-items: center;
}
a.changed { background: var(--subtle); }
a:hover { background: var(--subtle); }
li { border-bottom: 1px solid gray; }
li svg { width: 15px; }
li:last-child { border-bottom: none; }
ul {
margin: 0 auto;
max-width: 800px;
border: 1px solid gray;
padding: 0;
border-radius: 4px;
list-style:none;
}
</style>
</body>
</html>