﻿@charset "UTF-8";
/* CSS Document */
/* Hoja estilos del fichero html asociado EjOp_M8-T6.html */

/* 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*/
}


/* Inicialización valores */
/*-----------------------------------------------------------*/

* {    
	margin: 0px;
	padding: 0px;
	border: 0px;
}


/* css general */
/*-----------------------------------------------------------*/
body {
	color:#666;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
    /*background-color: #EDEAEA;*/
    /*width:100%;*/
    font-size:15px;
    /*margin:0 auto;*/
    /*padding: 0;*/
}


h1 {font-size:2.5em; font-weight: bold;}
h2 { font-size: 1.5em; color:#720936; margin:0.5em auto;}
h3 { font-size: 1.1em;}


/* css cabecera */
/************************************************/

header#cabecera {
    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 zona táctil */
/************************************************/


div#zona_tactil {
	background-color:#00F;
	width: 27em;
	/*width:90%;*/
	/*height: 200px;*/
	margin:1em auto;
	-moz-border-radius:1em;
  -webkit-border-radius:1em;
  -ms-border-radius:1em;
	border-radius: 1em;
}

div#zona_tactil h3{
	/*font-size:1.4em;*/
	padding:0.4em 0;
}

div#zona_tactil h3 span#crono {
	color: #0F0;
	font-family: digital, digital_ie;
	font-size: 2em;
}

div#zona_tactil h3 span#segundos {
	color:#FFF;
	font-size: 0.7em;
	padding-left: 10px;
}

/* css div paradas crono */
/************************************************/
div#paradas {
	overflow: auto;
	background-color: #222;
	width: 30em;
	/*width:90%;*/
	height: 250px;
	margin: 1.5em auto;
	padding-top: 0.5em;
	border: 2px solid #F00;
	font-size: 0.8em;
	color:#FF0;
}

div#paradas p {text-decoration:underline;}


/* css ayuda */
/************************************************/
button#ayuda {
	margin-left: 5em ;
	padding:0.2em 0.5em;
	/*margin-right: 15px;*/
	font-size: 0.6em;
	font-weight: bold;
	color: #E8F2F1;
	background-color:#F00;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
  	-ms-border-radius:3px;
	border-radius:1em;
	cursor: pointer;
}

button#ayuda:hover {
	/*color:#E8F2F1;*/
	background-color:#0B6603;
}


/* para pantallas pequeñas */
/*********************************************/
 @media all and (max-width: 480px) { 
	body {
		min-width:220px;
	}

	header#cabecera {
         	margin:0;
          	padding:0;
	}

	h1{font-size:2em;}
     
	button#ayuda {
		margin-left:0.2em;
	}

	h2 {font-size: 1.3em;}

	div#zona_tactil {
		width: 15em;
	}

	div#zona_tactil h3{
		padding:0.2em 0;
	}

	div#zona_tactil h3 span#crono {
		font-size: 1.2em;
	}

	div#paradas {
		width: 20em;
		font-size: 0.7em;
	}
}