/* ------------------------------------------------------------------
 * Fichero:  videos.css
 * Objetivo: Hoja de estilos de vídeos
 * Autor:    Pedro Reina <pedro@pedroreina.net>
 * Fecha:    D.14.7.2019
--------------------------------------------------------------------*/

/* Los botones que manejan las opciones del visor de portadas */

DIV.botonera
  {
  position: relative;
  left: 0px;
  bottom: -12px;
  text-align: center;
  width: 800px;
  }

SPAN.boton
  {
  border: 1px solid #000;
  display: inline-block;
  font-weight: bold;
  width: 145px;
  padding: 4px;
  text-align: center;
  cursor: pointer;
  }

SPAN.boton:hover
  {
  border: 1px solid #C00;
  color: #C00;
  }

/* Abrir la pseudoventana */

SPAN.abrir
  {
  color: #F20000;
  cursor: pointer;
  }

/* Manejo de la pseudoventana */

DIV.pseudoventana
  {
  position: fixed;
  border-style: double;
  background-color: #FEFEFE;
  padding: 5px;
  width: 800px;

  -webkit-box-shadow: 0px 0px 0px 2px rgba(255,255,255,1), 0px 0px 15px 10px rgba(176,169,176,1);
  -moz-box-shadow: 0px 0px 0px 2px rgba(255,255,255,1), 0px 0px 15px 10px rgba(176,169,176,1);
  box-shadow: 0px 0px 0px 2px rgba(255,255,255,1), 0px 0px 15px 10px rgba(176,169,176,1);
  }

DIV.pseudoventanalienzo
  {
  position: relative;
  padding: -5px;
  }

DIV.pseudotitulo
  {
  position: relative;
  left: 0px;
  top: 0px;
  width: 758px;
  height: 18px;
  cursor: move;
  padding: 5px;
  background-color: #CACAFF;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  }

DIV.pseudocontenido
  {
  position: relative;
  left: 0px;
  top: 5px;
  width: 800px;
  overflow: auto;
  background-color: #FEFEFE;
  }

DIV.pseudocontenidoimagen
  {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  }

IMG.botoncerrar:hover
  { opacity: 0.75; }

DIV.botoncerrar
  {
  position: absolute;
  right: 0px;
  top: 0px;
  }

IMG.botonresize:hover
  { opacity: 0.75; }

/* Las fichas de cada vídeo en el index.php */

DIV.contenedor
  {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  }

DIV.ficha
  {
  width: 300px;
  margin: 10px;
  text-align: center;
  font-weight: bold;
  color: #000;
  }

DIV.ficha:hover
  { color: #00C; }