]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/standalone/videos/embed.scss
Fix loading spinner in player
[github/Chocobozzz/PeerTube.git] / client / src / standalone / videos / embed.scss
CommitLineData
202e7223
C
1@import '~video.js/dist/video-js.css';
2@import '~videojs-dock/dist/videojs-dock.css';
3@import '../../sass/video-js-custom.scss';
4
5video {
6 width: 99%;
7}
8
9/* fill the entire space */
10html, body {
11 height: 100%;
12 margin: 0;
13}
14
15.video-js {
16 width: 100%;
17 height: 100%;
3d09cdbf 18 overflow: hidden;
202e7223
C
19}
20
21.vjs-poster {
22 background-size: 100% auto;
23}
24
25.vjs-peertube-link {
26 color: white;
27 text-decoration: none;
28 font-size: 1.3em;
29 line-height: 2.20;
30 transition: all .4s;
31 position: relative;
aa8b6df4
C
32 right: 8px;
33}
34
35.vjs-resolution-button-label {
36 left: -7px;
202e7223
C
37}
38
39.vjs-peertube-link:hover {
40 text-shadow: 0 0 1em #fff;
41}
42
43// Fix volume panel because we added a new component (PeerTube link)
44.vjs-volume-panel {
aa8b6df4 45 margin-right: 130px !important;
202e7223 46}