PeerTube/client/src/standalone/videos/embed.scss

47 lines
738 B
SCSS
Raw Normal View History

2017-07-23 07:49:52 -05:00
@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%;
2017-07-23 08:30:57 -05:00
overflow: hidden;
2017-07-23 07:49:52 -05:00
}
.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: 8px;
}
.vjs-resolution-button-label {
left: -7px;
2017-07-23 07:49:52 -05:00
}
.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: 130px !important;
2017-07-23 07:49:52 -05:00
}