/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 05.02.2020, 10:06:49
    Author     : michael.ruckdeschel
*/

html,body {
        margin: 0;
        padding: 0;
        height: 100%;
        width: 100%;
        overflow:hidden;
        -moz-user-select: none; 
        -webkit-user-select: none; 
        -ms-user-select:none; 
        user-select: none;
        -o-user-select:none;
        font-family: Arial;
        font-size: 2vw;
}

#circle {
        width:70%; 
        height: 100%; 
        cursor: pointer;
}
#left {
        float:left;
        height:100%;
        width:calc(30% - 1px);
        font-size: 150%;
        border-right: 1px solid #fff;
        overflow-y: auto;
        overflow-x: hidden;
}

#left h1 {
    font-size: 80%;
    margin: 0;
    padding: 0;
    background: #115ed1;
    color: #fff;
    padding: .25em;
}

#playerId,#nextRulesIn,#colorpicker {
    display: block;
    font-weight: bold;
    width: calc(100% - 1em); 
    font-size: 100%;
    border: none;
    text-align: center;
    padding: .5em;
}


#left #rules span {
    display: inline-block;
    width: 33%;
    text-align: center
}
#left #rules span:nth-child(2n) {
    border-left: 1px solid  #115ed1;
    border-right: 1px solid  #115ed1;
    width: calc(33% - 2px);
}


#left #rules div,
#left #scores div {
    padding: .25em;
    border-bottom: 1px solid #115ed1;
}

#left #scores span{
    float: right;
    font-weight: bold;
    
}
