/*
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 : 2017年5月9日, 下午11:27:34
    Author     : Admin
*/

table tbody tr, 
table.dataTable tbody tr{
    border-color: rgba(37, 168, 76, 0.25);
}

table tbody tr:nth-child(2n + 1) , 
table.dataTable tbody tr:nth-child(2n + 1){
    background-color: rgba(37, 168, 76, 0.1);


}

th,td{
    min-width:2em !important;
}

#display{
    font-size: 15em;
    font-weight: bolder;
    padding:0em;
    margin:0;
    line-height: 1em;
}


@media screen and (max-width: 480px) {
    #display{
    font-size: 10em;
     padding-bottom: 0.5em;
}
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 1s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
