Prep work for theming

This commit is contained in:
Sam Potts
2016-05-01 19:27:53 +10:00
parent 39a0a38d07
commit fad3f41ca7
16 changed files with 699 additions and 679 deletions
+30
View File
@@ -0,0 +1,30 @@
// Fullscreen mode
// --------------------------------------------------------------
.plyr--fullscreen,
.plyr--fullscreen-active {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
height: 100%;
width: 100%;
z-index: 10000000;
background: #000;
border-radius: 0;
video {
height: 100%;
}
.plyr__video-wrapper {
height: 100%;
width: 100%;
}
.plyr__controls {
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
}