blob: 938a6e48ceafe87dd2b1fffa728e6745499289fc (
plain) (
blame)
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
|
@import '~video.js/dist/video-js.css';
@import '~videojs-dock/dist/videojs-dock.css';
@import '../../sass/video-js-custom.scss';
video {
width: 99%;
}
/* fill the entire space */
html, body {
height: 100%;
margin: 0;
}
.video-js {
width: 100%;
height: 100%;
overflow: hidden;
}
.vjs-poster {
background-size: 100% auto;
}
.vjs-peertube-link {
color: white;
text-decoration: none;
font-size: 1.3em;
line-height: 2.20;
transition: all .4s;
position: relative;
right: 6px;
}
.vjs-peertube-link:hover {
text-shadow: 0 0 1em #fff;
}
// Fix volume panel because we added a new component (PeerTube link)
.vjs-volume-panel {
margin-right: 90px !important;
}
|