/* ------------------------------------------------------------------
 * Fichero:  reproductor.css
 * Objetivo: Hoja de estilos del reproductor de vídeos
 * Autor:    Pedro Reina <pedro@pedroreina.net>
 * Fecha:    L.18.3.2019
--------------------------------------------------------------------*/

/* Los controles del reproductor de vídeo */

SPAN.tiempo
  { 
  font-family: monospace;
  font-size: 26px; 
  }

SPAN.separador
  {
  display: inline-block;
  width: 2px;
  }

INPUT[type="radio"]
  { vertical-align: sub; }

LABEL:hover
  { font-weight: bold; }

DIV.contenedorvideo
  {
  position: relative;
  width: 810px;
  margin: auto;
  }

DIV.controles
  {
  width: 810px;
  margin: 6px auto auto auto;
  height: 32px;
  line-height: 32px;
  font-size: 32px;
  white-space: nowrap;
  }

DIV.eleccion
  {
  position: absolute;
  top: 440px;
  left: 10px;
  background: #FFF;
  font-size: 12px;
  border: 2px solid #BBB;
  padding: 5px;
  display: none;
  width: 65px;
  }

PROGRESS
  { height: 28px; }

IMG.boton
  { vertical-align: middle; }

IMG.boton:hover
  {
  background-color: #EEE;
  -webkit-box-shadow: 0px 0px 5px 3px #EEE;
  -moz-box-shadow: 0px 0px 5px 3px #EEE;
  box-shadow: 0px 0px 5px 3px #EEE;
  }
