/*--
Theme Name: De Lotsj Aelse Table 1.0
Author: Loene Bocken
Version: 1
Revision: 0 (1.0)
Author URL: https://ictbyloene.nl
--*/

table { 
    width: 750px; 
    border-collapse: collapse; 
    margin: 50px auto;
    }
tr:nth-of-type(odd) { 
    background: #fff; 
    }
th { 
    background: #ea00ac; 
    color: #fff; 
    font-weight: bold; 
    }
td, th { 
    padding: 10px; 
    border: 2px solid #ea00ac; 
    text-align: left; 
    font-size: 18px;
    }

@media 
only screen and (max-width: 760px) {
table { 
          width: 100%; 
    }
    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr { 
        display: block; 
    }
    
    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    tr { border: 1px solid #ccc; }
    
    td { 
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee; 
        position: relative;
        padding-left: 50%; 
    }
    
    td:before { 
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%; 
        padding-right: 10px; 
        white-space: nowrap;
        /* Label the data */
        content: attr(data-column);
        color: #ea00ac;
    }
}
