forked from nickolasburr/qtls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetrics.html
108 lines (95 loc) · 1.74 KB
/
metrics.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!doctype html>
<html>
<head>
<title>qTLS</title>
<script src="js/metrics.js"></script>
<style>
html {
font-family: monospace;
font-size: 16px;
line-height: 16px;
min-height: 435px;
width: 435px;
}
.arrow-down {
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 6px solid #000;
}
.arrow-right {
width: 0;
height: 0;
border-bottom: 4px solid transparent;
border-left: 6px solid #000;
border-top: 4px solid transparent;
}
.container {
margin: 0 auto;
width: 100%;
}
.expanded {
display: block !important;
}
img[name="loading"] {
bottom: 0;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 0;
}
.list {
display: none;
list-style-type: decimal;
margin: 1em;
padding-left: 25px;
}
.notice-message {
font-size: 1rem;
padding: 1rem;
}
.notice-title {
font-size: 1.5rem;
margin: 2rem auto;
text-align: center;
}
.ref {
margin: 0 0 -3px 5px;
}
.section {
background-color: lightblue;
border-radius: 3px;
padding: 3px;
}
.section a {
color: #000;
font-weight: 600;
text-decoration: none;
}
.section div,
.section span {
display: block;
font-family: monospace;
font-size: 1em;
font-weight: 500;
margin: 0 5px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.section [name="toggle"] {
cursor: pointer;
display: inline-block;
margin-bottom: -1px;
margin-left: -3px;
}
</style>
</head>
<body>
<div class="main">
<img name="loading" src="icons/loading.gif">
</div>
</body>
</html>