
/* (c) 2017 evoMath,  @author evoMath */

/*
COLORS:
FB_DARK: #3b5998 = rgb(59, 89, 152)
FB_BRIGHT: #dde2ed = rgb(221, 226, 237) 
*/


/************************* Overlay *****************************************/

div.overlay {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0); /* Fallback, if alpha channel unsupported */
    background-color: rgba(0,0,0,0.0); /* fully transparent */ 
}

div.show {
	display: block;
}

div.hide {
    display: none;
}

div.overlay-content {
    background-color: rgba(0,0,0,0.0);
    margin: 20% auto; 
    padding: 4px;
    border: 1px solid #EEEEEE;
    width: 32%; 
}

div.overlay-content:HOVER {
    /* background-color: rgba(0,255,255,0.1); */
}

/* ============================= NumPad ===================================== */

div.evo-math-ui-NumPad {
    /* background: rgba(255,255,255,1); */
    background: #EEFFFF;    
    text-align: center;
}

div.evo-math-ui-NumPad table {
        
}

div.evo-math-ui-NumPad td {
    width: 100px;
    height: 64px;
    font-size: 64px;
    font-family: sans-serif;
    font-weight: bold;
    color: #FFFFFF;
    background-color: rgba(0,0,0,0.1);
    text-align: center;
    padding: 4px;
}

div.evo-math-ui-NumPad td.current {
    color: #3b5998;
}

div.evo-math-ui-NumPad td:HOVER {
    cursor: pointer;
    color: #3b5998;    
    /*background-color: rgba(0,255,255,0.1);*/
    background: #dde2ed;
}

div.evo-math-ui-NumPad td.help:HOVER {
    background-color: rgba(255,255,0,0.2);
}

div.evo-math-ui-NumPad  div.top {
    color: #3b5998;
    font-size: 64px;
    font-weight: bold;
    padding: 4px;
    border: 1px double #CCCCCC;
}

div.evo-math-ui-NumPad  div.bottom {
    padding: 4px;
}

div.evo-math-ui-NumPad  div.top:HOVER, div.bottom:HOVER {
    background-color: #dde2ed;
}

div.evo-math-ui-NumPad  div.top:HOVER {
    cursor: pointer;
}

div.evo-math-ui-NumPad button {
    margin-top: 2px;
    margin-left: 16px;
    margin-right: 16px;	
    font-size:16px;
    cursor: pointer;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
