Video.js: YouTube theme & HLS quality selector: http-streaming

              
                body {
  background: rgb(18,18,18);
}
/*
  Player Skin Designer for Video.js
  http://videojs.com

  To customize the player skin edit 
  the CSS below. Click "details" 
  below to add comments or questions.
  This file uses some SCSS. Learn more  
  at http://sass-lang.com/guide)

  This designer can be linked to at:
  
*/

// The following are SCSS variables to automate some of the values.
// But don't feel limited by them. Change/replace whatever you want. 

// The color of icons, text, and the big play button border.
// Try changing to #0f0
$primary-foreground-color: #fff; // #fff default

// The default color of control backgrounds is mostly black but with a little
// bit of blue so it can still be seen on all-black video frames, which are common.
// Try changing to #900
$primary-background-color: #ff0000;  // #2B333F default

// Try changing to true
$center-big-play-button: true; // true default

.video-js {
  /* The base font size controls the size of everything, not just text.
     All dimensions use em-based sizes so that the scale along with the font size.
     Try increasing it to 15px and see what happens. */
  font-size: 12px;

  /* The main font color changes the ICON COLORS as well as the text */
  color: $primary-foreground-color;
}

/* The "Big Play Button" is the play button that shows before the video plays.
   To center it set the align values to center and middle. The typical location
   of the button is the center, but there is trend towards moving it to a corner
   where it gets out of the way of valuable content in the poster image.*/
.vjs-default-skin .vjs-big-play-button {
  /* The font size is what makes the big play button...big. 
     All width/height values use ems, which are a multiple of the font size.
     If the .video-js font-size is 10px, then 3em equals 30px.*/
  font-size: 3em;

  /* We're using SCSS vars here because the values are used in multiple places.
     Now that font size is set, the following em values will be a multiple of the
     new font size. If the font-size is 3em (30px), then setting any of
     the following values to 3em would equal 30px. 3 * font-size. */
  $big-play-width: 2em; 
  /* 1.5em = 45px default */
  $big-play-height: 2em;

  line-height: $big-play-height;
  height: $big-play-height;
  width: $big-play-width;
  background-color: $primary-background-color !important;

  /* 0.06666em = 2px default */
  // border: 0.06666em solid $primary-foreground-color;
  border: none;
  /* 0.3em = 9px default */
  border-radius: 0;

  @if $center-big-play-button {
    /* Align center */
    left: 50%;
    top: 50%;
    margin-left: -($big-play-width / 2);
    margin-top: -($big-play-height / 2);   
  } @else {
    /* Align top left. 0.5em = 15px default */
    left: 0.5em;
    top: 0.5em;
  }
}

/* The default color of control backgrounds is mostly black but with a little
   bit of blue so it can still be seen on all-black video frames, which are common. */
.video-js .vjs-control-bar {
  /* IE8 - has no alpha support */
  // background-color: $primary-background-color;
  background-color: transparent;
  /* Opacity: 1.0 = 100%, 0.0 = 0% */
  // background-color: rgba($primary-background-color, 0.7);
}

.video-js .vjs-menu-button .vjs-menu-content {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0.25em;
}

.vjs-menu li.vjs-selected, .vjs-menu li.vjs-selected:focus, .vjs-menu li.vjs-selected:hover {
  color: $primary-foreground-color;
  background-color: rgba(255,255,255,0.15);
}

// Make a slightly lighter version of the main background
// for the slider background.
$slider-bg-color: darken($primary-foreground-color, 15%);

/* Slider - used for Volume bar and Progress bar */
.video-js .vjs-slider {
  background-color: $slider-bg-color;
  background-color: rgba($slider-bg-color, 0.4);
}

/* The slider bar color is used for the progress bar and the volume bar
   (the first two can be removed after a fix that's coming) */
.video-js .vjs-volume-level,
.video-js .vjs-play-progress,
.video-js .vjs-slider-bar {
  background: $primary-background-color;
}

/* The main progress bar also has a bar that shows how much has been loaded. */
.video-js .vjs-load-progress {
  /* For IE8 we'll lighten the color */
  background: lighten($slider-bg-color, 25%);
  /* Otherwise we'll rely on stacked opacities */
  background: rgba($slider-bg-color, 0.5);
}

/* The load progress bar also has internal divs that represent
   smaller disconnected loaded time ranges */
.video-js .vjs-load-progress div {
  /* For IE8 we'll lighten the color */
  background: lighten($slider-bg-color, 60%);
  /* Otherwise we'll rely on stacked opacities */
  background: rgba($slider-bg-color, 0.75);
}

.vjs-menu li.vjs-menu-item:focus, .vjs-menu li.vjs-menu-item:hover {
  background-color: $primary-background-color;
}

.video-js .vjs-progress-holder {
  // margin: 0;
}

.video-js .vjs-progress-control {
  bottom: 58%;
  position: absolute;
  width: 100%;
}

.video-js:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 70%;
  bottom: 0;
  pointer-events: none;
  content: '';
  display: block;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
  background: linear-gradient(transparent, transparent 60%, rgba(0,0,0,0.8));
}

.video-js.vjs-has-started.vjs-user-inactive.vjs-playing:after {
  opacity: 0;
}

.video-js .vjs-control-bar {
  z-index: 2;
}

.video-js .vjs-time-control {
    display: block;
  padding: 0;
  min-width: auto;
}

.video-js .vjs-current-time {
  padding-left: 0.4em;
}
.video-js .vjs-time-divider {
  padding: 0 0.4em;
}
.video-js .vjs-remaining-time {
    display: block;
  flex-grow: 1;
  visibility: hidden;
}

.video-js .vjs-play-progress .vjs-time-tooltip {
  display: none !important;
}


              
            

!