blob: c8006d720ec24dfa82b52055b3101154ed956e99 (
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
.vjs-control-hide {
display: none !important;
}
.vjs-ff {
background: #000;
cursor: pointer;
}
.navigation {
display: block;
min-height: 27px;
}
.but-video li {
text-align: center;
display: inline-block;
margin: -1px 2px 0 2px;
background-color: #333333;
color: #dddddd;
border: 0;
font-size: 14px;
font-family: trebuchet ms, sans-serif;
min-width: 38px;
/*min-height: 20px;*/
padding: 5px 5px;
position: relative;
}
.but-video li:hover {
background-color: #666666;
color: white;
}
.but-video {
display: block;
list-style-type:none;
margin: 0;
padding: 0;
min-height: 27px;
position: absolute;
bottom: auto;
right: auto;
}
.arrow-play {
width: 0;
height: 0;
border-top: 4.5px solid transparent;
border-left: 9.5px solid white;
border-bottom: 4.5px solid transparent;
display: inline-block;
}
.arrow-prev {
width: 0;
height: 0;
border-top: 4px solid transparent;
border-right: 4px solid white;
border-bottom: 4px solid transparent;
display: inline-block;
margin: 0;
padding: 0;
font: inherit;
font-size: 100%;
vertical-align: baseline;
}
.arrow-next {
width: 0;
height: 0;
border-top: 4px solid transparent;
border-left: 4px solid white;
border-bottom: 4px solid transparent;
display: inline-block
}
.arrow-pause {
width: 0;
height: 0;
border-top: 5px solid white;
border-right: 2.5px solid white;
border-bottom: 4px solid white;
border-left: 0;
display: inline-block;
margin: 0 2px;
}
.link {
}
.link a {
color: #dddddd;
text-decoration:none;
}
.link:hover {
cursor: pointer;
}
.video-wrapper {
background-color: #000000;
width: 500px;
padding: 10px;
}
.vjs-big-play-button {
left: 37%;
top: 30%;
}
#div_video {
margin-bottom: 10px;
padding: 0;
}
|