-
Notifications
You must be signed in to change notification settings - Fork 28
/
transcript.html
118 lines (98 loc) · 1.59 KB
/
transcript.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
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html>
<head>
<title>Transcript Browser</title>
<style id="bodycss" type="text/css">
body {
background: #E4E4E4;
color: black;
font-family: "Lora", Georgia, serif;
margin: 0px;
font-size: 1.0em;
}
body.DarkMode {
background: #343434;
color: white;
}
button {
font-size: 1.0em;
border: 1px solid #888;
border-radius: 4px;
}
button:active {
background: #7788FF;
}
.DarkMode button {
background: #111;
color: white;
}
.DarkMode button:active {
background: #5566FF;
}
.DarkMode button:disabled {
background: #555;
color: #888;
}
#list {
position: absolute;
width: 100%;
top: 0px;
bottom: 0px;
overflow-y: scroll;
padding-top: 4px;
padding-bottom: 8px;
}
.EntryBox {
padding-left: 12px;
padding-right: 12px;
padding-top: 4px;
padding-bottom: 4px;
}
.Entry {
position: relative;
background: white;
font-size: 0.9em;
border-radius: 8px;
padding: 8px 16px;
}
.DarkMode .Entry {
background: black;
color: white;
}
.Entry.Selected {
background: #7788FF;
color: white;
}
.DarkMode .Entry.Selected {
background: #5566FF;
color: black;
}
.InBackground .Entry.Selected {
background: #AAAAAA;
}
.DarkMode.InBackground .Entry.Selected {
background: #666666;
}
.Entry .Label {
font-size: 0.9em;
font-style: italic;
}
.Entry .Title {
font-weight: bold;
}
.Entry button {
position: absolute;
right: 10px;
top: 10px;
}
</style>
<script type="text/javascript">
window.$ = window.jQuery = require('./quixe/lib/jquery-1.12.4.min.js');
require('./transcript.js');
</script>
</head>
<body>
<div id="list">
</div>
</body>
</html>