-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle-video.css
105 lines (88 loc) · 2.14 KB
/
style-video.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* ========== Controls ========== */
div#video-player div#controls {
position: relative;
width: 848px;
font-size: 12px;
padding: 1px 2px;
background-color: #000;
text-align: right;
}
div#video-player div#controls input[type="button"] {
margin: 3px 2px;
font-size: 12px;
color: #ccc;
background: #191919 -webkit-gradient(linear, left top, left bottom, from(#191919), to(#090909));
border-radius: 2px;
-moz-border-radius: 2px;
border: 1px solid gray;
}
div#video-player div#controls input[type="button"]:hover {
background: #333 -webkit-gradient(linear, left top, left bottom, from(#393939), to(#191919));
border-color: #ccc;
-webkit-transition: border-color 0.8s linear;
}
div#video-player div#controls input#button-play-pause {
float: left;
}
div#video-player div#controls span#video-length {
font-size: 12px;
font-weight: bold;
padding: 1px 15px;
}
div#video-player div#slider {
float: left;
margin: 4px 2px;
}
div#video-player div#slider .slider-bar {
margin-left: 15px;
background: #191919 -webkit-gradient(linear, left top, left bottom, from(#191919), to(#090909));
border-radius: 8px;
-moz-border-radius: 8px;
border: 1px gray solid;
overflow: hidden;
}
div#video-player div#slider .slider-handle {
position: relative;
top: 1px;
left: 1px;
background: #999;
border-radius: 8px;
-moz-border-radius: 8px;
-webkit-transition: background-color 0.5s linear;
}
div#video-player div#slider .slider-handle:hover {
background-color: #ddd;
-webkit-transition: background-color 0.2s linear;
}
/* ========== Playlist ========== */
div#video-player div#playlist ul {
margin: 0;
padding: 0;
display: block;
list-style: none;
}
div#video-player div#playlist ul li {
padding: 0.35em 24px 0.35em 0.6em;
margin: 0;
font-size: 0.7em;
font-weight: bold;
color: #999;
background-color: #191919;
border-bottom: 1px solid gray;
cursor: pointer;
-webkit-transition: background-color 0.2s linear;
}
div#video-player div#playlist ul li:hover {
background-color: #000;
}
div#video-player div#playlist ul li.selected {
background-color: #000;
}
div#video-player div#playlist ul li a {
display: block;
color: #ccc;
text-decoration: none;
}
div#video-player div#playlist ul li a:visited {
color: #666;
}