blob: f9a98636c668e4852df6a514c34d291dfe8596a9 (
plain)
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
|
.player-transcript {
position: absolute;
top: 0; left: 0;
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: scroll;
}
.player-transcript .header,
.player-transcript .paragraph {
font-family: "Freight Text", serif;
font-size: 3rem;
line-height: 1.28;
width: 70rem;
max-width: 80%;
margin: 0 auto;
padding-bottom: 2rem;
}
.player-transcript .header {
text-align: center;
}
.player-transcript .header:first-child {
margin-top: 8rem;
}
/* transcript scroll bar */
.player-transcript::-webkit-scrollbar {
cursor: pointer;
user-select: none;
width: 4px
}
.player-transcript::-webkit-scrollbar-button {
display: block;
width: 0;
height: 0;
}
.player-transcript::-webkit-scrollbar-track-piece {
background:rgba(211,211,211,0.8);
}
.player-transcript::-webkit-scrollbar-thumb {
display: block;
background: #000;
}
/* paragraph subtypes */
.player-transcript .header {
text-align: center;
padding-top: 2rem;
}
.player-transcript .header:first-of-type {
padding-top: 0;
}
.player-transcript .header span {
}
.player-transcript .paragraph,
.player-transcript .hidden {
}
.player-transcript .blockquote {
padding-left: 2rem;
line-height: 1.45;
}
/* sentences */
.player-transcript span {
margin-right: 4px;
box-shadow: 0 0 0 rgba(255,255,255,0.0);
}
.player-transcript .media span {
margin-right: 0;
border-bottom: 1px solid;
cursor: pointer;
}
.player-transcript .paragraph .current {
box-shadow: -5px -1px 0 #e8e8e8,
5px -1px 0 #e8e8e8,
-5px 1px 0 #e8e8e8,
5px 1px 0 #e8e8e8;
box-decoration-break: clone;
background: #e8e8e8;
color: #000;
transition: all 0.2s;
}
|