-
Notifications
You must be signed in to change notification settings - Fork 93
/
player.css
90 lines (80 loc) · 1.81 KB
/
player.css
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
body {
margin: 0px;
padding: 0;
width: 100%;
height: 100%;
border: none;
}
video {
outline: none;
}
#player_div {
position: absolute;
height: 100%!important;
}
#player_div .jw-button-color.jw-toggle:not(.jw-icon-cast),
#player_div .jw-button-color:hover:not(.jw-icon-cast),
#player_div .jw-button-color:focus:not(.jw-icon-cast),
#player_div .jw-button-color.jw-toggle.jw-off:hover:not(.jw-icon-cast) {
color: rgb(244, 117, 33)!important;
}
#player_div .jw-option.jw-active-option,
#player_div .jw-option:not(.jw-active-option):hover,
#player_div .jw-option:not(.jw-active-option):focus,
#player_div .jw-settings-content-item:hover,
#player_div .jw-nextup-tooltip:hover,
#player_div .jw-nextup-tooltip:focus,
#player_div .jw-nextup-close:hover {
color: rgb(244, 117, 33)!important;
}
.jw-progress {
background-color: rgb(244, 117, 33)!important;
}
.loading_container {
background-color: #000;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
display: flex;
flex-direction: row;
-webkit-flex-direction: row;
-moz-flex-direction: row;
align-items: stretch;
-webkit-align-items: stretch;
padding: 20px;
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
}
.loading_icon {
height: 30px;
width: 30px;
margin-right: 20px;
flex: 0 0 auto;
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
-moz-flex: 0 0 auto;
align-self: center;
-webkit-align-self: center;
}
.loading_text_container {
display: flex;
flex: 1 1 auto;
flex-flow: column;
margin: 0;
overflow-y: auto;
padding: 0;
}
.loading_text {
text-align: start;
color: #FFF;
font: 14px/1.35 Arial, Helvetica, sans-serif;
}
.corta_linha {
display: block;
}