-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
62 lines (54 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>BetterJSONs</title>
<meta charset="UTF-8">
<link rel="icon" type="image/icon type" href="https://resources.download.minecraft.net/92/92750c5f93c312ba9ab413d546f32190c56d6f1f">
<style>
body {
font-family: monospace;
white-space: nowrap;
}
.version, .type, .datetime, .hash {
overflow: hidden;
display: table-cell;
padding: 0px 10px;
}
.header, .entry {
display: table-row;
}
.header {
cursor: pointer;
}
a {
color: #005FD3;
text-decoration: none;
}
#jsonlist {
display: block;
}
.wrapper {
overflow: scroll;
display: block;
color: #2c2c2c;
background-color: #f5f5f5;
border: #CCCCCC 1px solid;
border-radius: 4px;
padding: 8px 12px;
}
.sort::before {
content: "▲ ";
font-weight: bold;
}
.sort-reverse::before {
content: "▼ ";
font-weight: bold;
}
</style>
</head>
<body>
<div class="wrapper" id="jsonlist">
</div>
<script src="index.js"></script>
</body>
</html>