-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplayer.css
More file actions
78 lines (60 loc) · 1.51 KB
/
player.css
File metadata and controls
78 lines (60 loc) · 1.51 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
/** Language tandem and coaching player style. **/
/* id identifiers are prefixed with pl_, which stands as a sort of
namespace identifier, in order to make name collisions less likely. */
#pl_translations {
float: left;
}
#audio_controls {
float: right;
clear: right;
font-size: 0.7em;
padding: 1.12em 0 1.12em 1.12em;
}
#audio_controls fieldset {
padding-left: 1.12em;
padding-right: 1.12em;
}
#pl_l1, #pl_l2 {
margin-right: .313em;
}
#pl_comments {
clear: left;
}
#pl_translations dt {
margin: 1em 1em 0.5em 2em;
}
#pl_translations dd {
margin: 0.5em 1em 0.5em 2.5em;
}
#pl_translations dd textarea {
vertical-align: bottom;
margin: 0 0 0 0;
border: 1px solid #ccc;
}
#pl_translations dd button {
vertical-align: bottom;
margin: 0 0 0 0.5em;
}
#pl_definitions_l1 li, #pl_definitions_l2 li {
margin: 0.5em;
}
/* For missing flags. */
#pl_translations dd ul {
list-style-type: square;
}
/* Unfortunately there is no good way to set the size of images used as list
bullets and using svg results in either too large or too small bullets:
http://stackoverflow.com/questions/7775594/css-list-style-image-size */
#pl_translations [lang="en"] ul {
list-style-image: url(../imgs/fotw/gb.png);
}
#pl_translations [lang="de"] ul {
list-style-image: url(../imgs/fotw/de.png);
}
#pl_translations [lang="es"] ul {
list-style-image: url(../imgs/fotw/es.png);
}
#pl_translations [lang="it"] ul {
list-style-image: url(../imgs/fotw/it.png);
}
/* TODO add other countries from here: http://hewgill.com/flags/ */