﻿@charset "UTF-8";
/* CSS Document */
/* Hoja estilos del fichero html asociado CronoStoreM8_arp.html */


/* Inicialización valores */
/*-----------------------------------------------------------*/
* {    
	margin: 0px;
	padding: 0px;
	border: 0px;
}


/* Fuentes */
/*----------------------------------------------------------*/
@font-face {
 font-family: digital;
 src:  url(../fonts/digital.ttf); /*firefox y google*/
}

@font-face {
 font-family: digital_ie;
 src:  url(../fonts/digital_ie.eot); /*explorer*/
}


/* css general */
/*-----------------------------------------------------------*/
body {
	background-color:#FFF;
	color:#666;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size:16px;
}

h1 {font-size:2.5em; font-weight: bold;}
h2 { font-size: 1.5em; color:#720936; margin:0.5em auto;}


/* css cabecera */
/**********************************************************************/
header#cabecera {
    max-width:98%;
    /*min-width:25em;*/
    background-color:#0A01AA;
    color:#FFF;
    margin:0.01em auto;
    padding: 1em 0.1em 1.1em 0em;
    -moz-border-radius:0.5em;
    -webkit-border-radius:0.5em;
    -ms-border-radius:0.5em;
    border-radius:0.5em;
    text-align:center;
    border-style:double;
    border-width:10px;
}


/* css ayuda */
/***********************************************************************/
button#ayuda {
	  margin-left: 2em ;
	  padding:0.2em 0.5em;
	  font-size: 0.6em;
	  font-weight: bold;
	  color: #E8F2F1;
	  background-color:#F00;
	  -moz-border-radius:1em;
	  -webkit-border-radius:1em;
  	-ms-border-radius:1em;
	  border-radius:1em;
	  cursor: pointer;
}

button#ayuda:hover {
	/*color:#E8F2F1;*/
	background-color:#0B6603;
}


/* css cronometro */
/**********************************************************************/
section#artcrono {
    width:98%;
    margin: 0 auto; /* el valor automático de los lados, unido a la anchura, centra el diseño */
}

article#reloj {
    background-image:url(../images/crono75red.png);
    background-repeat: no-repeat; 
    background-position: center center; /* centramos imagen vertical y horizontalmente */
    background-size:263px 335px;  /* Ponemos el tamaño de la foto */
    background-size:100% 100%;  /* que ocupe todo su contenedor */
    background-color:#464646; /* color de fondo mientras se carga la imagen */
    /*background: #464646 url(../images/crono75red.png) center center cover no-repeat relative;*/
    width: 263px;
    height: 335px;
    margin:0 auto;
}

#bot_on-off {   /* Botón encendido/apagado */
    width: 100px;
    height: 55px;
    margin:0.5em 0em 0 1.5em;
    display:inline-block;
}

#bot_reset {   /* Botón reset */
	width: 100px;
	height: 55px;
  margin:0.5em 0em 0 0.0em;
	display:inline-block;
}

#zona_tiempos {
	width:13em;
	height: 6.5em;
	margin:2.2em auto;
}

#crono {
	padding:0.4em 0;
	color: #00FF00;
	font-family: digital, digital_ie;
	font-size: 3.5em;
}

#paradas {
  	background-color:#000;
		color:#FFFF00;
	  overflow: auto;
	  width: 20em;
	  height: 170px;
	  margin:1em auto;
		padding-top: 0.5em;
	  font-size: 1em;
}

div#paradas p {text-decoration:underline;}


/* para pantallas pequeñas */
/*********************************************/
@media all and (max-width: 410px) { 
   body{
	min-width:265px;
   }
	
   header#cabecera {
        margin:0;
        padding:0;
   }

   h1{font-size:2em;}
   h2 {font-size: 1.3em;}
	
 	
   button#ayuda {
	    margin:0 auto;
   }
  
   #paradas {
	     width:16em;
   }
}