forked from lopezs/ableplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathableplayer-transcript.css
More file actions
89 lines (82 loc) · 1.82 KB
/
ableplayer-transcript.css
File metadata and controls
89 lines (82 loc) · 1.82 KB
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
/*
Able Player interactive transcript styles
*/
.able-transcript {
position: relative; /* must be positioned for scrolling */
overflow-y: scroll;
padding-left: 5%;
padding-right: 5%;
width: 90%;
height: 400px;
}
.able-transcript div {
margin: 1em 0;
}
.able-transcript-heading {
font-size: 1.4em;
font-weight: bold;
}
.able-transcript div.able-desc {
background-color: #FEE;
border: thin solid #336;
font-style: italic;
padding: 1em;
}
.able-transcript span.able-unspoken {
font-weight: bold;
}
.able-transcript span.hidden {
position: absolute !important;
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
clip: rect(1px, 1px, 1px, 1px);
}
.able-highlight {
background: #FF6; /* light yellow */
}
.able-previous {
background: black !important;
font-style: italic;
}
.able-transcript span:hover,
.able-transcript span:focus,
.able-transcript span:active {
background: #CF6; /* light green */
cursor: pointer;
}
.able-transcript-toolbar {
padding: 10px;
background-color: #DDDDDD;
border-style: solid;
border-width: 0 0 1px 0;
}
.able-transcript-toolbar label {
margin-right: 10px;
}
.able-transcript-area {
margin: 1em;
border-width: 1px;
border-style: solid;
}
.able-transcript-toolbar input:focus,
.able-transcript-toolbar input:hover,
.able-controller input:focus,
.able-controller input:hover,
.able-controller button:focus,
.able-controller button:hover,
.able-seek-head:focus,
.able-seek-head:hover {
outline-style: solid;
outline-width: 2px;
}
.able-transcript-toolbar input:focus,
.able-controller input:focus,
.able-controller button:focus,
.able-seek-head:focus {
outline-color: #ffbb37; /* yellow */
}
.able-transcript-toolbar input:hover,
.able-controller input:hover,
.able-controller button:hover,
.able-seek-head:hover {
outline-color: #8AB839; /* green */
}