﻿/* 
    Created on : 27-abr-2017, 19:47:22
    Author     : Joaquín
*/

root { 
    display: block;
}

body {
    background-color: #f5f5E1;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 0 0 0;
    border-top:  5px solid #f0f0d2;
    border-left: 5px solid #f0f0d2;
    border-bottom: 5px solid #f0f0d2;
    border-right: 5px solid #f0f0d2;
    border-radius: 10px;
    padding: 5px;
    max-height: min-content;
    /* 20250502 */
    position: fixed;
    top:0;
    width: calc(100% - 22px);
    /* 20250502 */
}

@media screen and (min-width: 800px) {
    /*
    Diseño adaptativo (responsive):
    ===============================
    Si es una pantalla mediana, utiliza el % central.
    */
    body {
        /*margin: 0 15% 0 15%;*/
    }
}

@media screen and (min-width: 1200px) {
    /*
    Si es una pantalla ancha, utiliza el % central.
    */
    body {
        /*margin: 0 30% 0 30%;*/
    }
}

#Pie {
    border-radius: 8px;
    background-color: #f0f0d2;
    margin: 0 0 0px 0;
    width: calc(100% - 22px);
    height: 35px;
    text-align: center;
    font-size: small;
    /* 20250502 */
    position: fixed;
    top: calc(100% - 45px);
    /* 20250502 */
}

.Cabecera {
    border-radius: 8px;
    background-color: #f0f0d2;
    margin: 0 0 0 0px;
    width: 100%;
    height: 35px;
    /* 20250502 */
    /*position: fixed;*/
    /* 20250502 */
}

#Version{
    font-size: x-small;
    float: right;
    text-align: right;
    margin-top: 18px;
    margin-right: 4px;
}

#ImagenLogo{
    font-family: Arial, Helvetica, sans-serif;
    font-size: x-large;
    font-weight: bolder;
    vertical-align: top;
    float: left;
}

#Instrucciones {
    text-align: justify;
    font-size: small;
    padding: 0px 5px 0px 5px;
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    border-left: 1px solid #000000;
    border-radius: 8px;
}

#Titulo{
    vertical-align: 25%;
    margin-left: 10px;
}

#marco {
    margin: 0 auto;
    position:relative;
    width: 300px;
    height: 275px;
    /* 20250502 */
    /*height: 275px;*/
    /* 20250502 */
    margin-bottom: 15px;
}

canvas { 
    position: absolute;
    /* 20250502 */
    /*position: fixed;*/
    /* 20250502 */
}

#tablero {     
    background-color: transparent;
    width: 300px;
    height: 275px;
    border: 3px solid gray;
    border-radius: 8px;
    z-index: 1;
}

#bola{
    background-color: transparent;
    width: 300px;
    height: 275px;
    border: 3px solid transparent;
    border-radius: 8px;
    z-index: 2;
}

#margen{
    /* Deja un hueco por debajo para mover el dedo. */
    height: 10px;
    width:100%;
}

#ladrilloDuro{
    vertical-align: bottom;
}
hr {
    margin:0 auto;
    width: 300px;
    border: 0; 
    height: 20px; 
    box-shadow: inset 0px 12px 12px -12px orange;
}

div#relleno hr{
    /* Para ajustar el relleno en unidades de 1px */
    height:1px;
    margin:0 0 0 0;
    visibility:hidden;
}
