<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0px;
    padding: 0px;
}



body {
    background: LightSteelBlue; /* #F2F5FE;*/
}


.rightSideAction {
    margin: 10px;
    position: absolute;
    top: 90px;
    right: 10px;
    padding: 10px;
    display: block; this makes the menu disapear
    background-color: LightSteelBlue;
}


.pageTitle {
    margin: 10px;
    position: absolute;
    top: 50px;
    left: 300px;
}

nav {
    width: 100%;
    height: 100px;
    background-color: #fff;
    display: block; this makes the menu disapear
}

nav-right {
    margin: 10px;
    position: absolute;
    top: 90px;
    right: 10px;
    padding: 10px;
    background-color: LightSteelBlue;
    display: none; this makes the menu disapear
}


ul {
    list-style: none;
}

    ul li {
        list-style: none;
        display: inline-block;
        float: left;
    }

    ul li a {
        display: block;
        text-decoration: none;
        float: left;
        color: #1e1e1e;
        padding: 0 20px;
    }

    ul li a:hover {
        background-color: #ff6a00;
        color: #fff;
        font-size: 14px;
    }

table {
    border: 1px solid black;
}

th {
    border: 1px solid black;
}

tr td {
    border-style: none;
    border-color: inherit;
    border-width: medium;
    margin-left: 120px;
}

tr:nth-child(even) {
    background-color: darkgray;
}

tr:nth-child(odd) {
    background-color: wheat;
}

th {
    background-color: bisque;
}

.divLogIn{
    margin-left:10%;

}

.divMoveRight {
    margin-left: 10%;
}
This tells the menu to appear when checked
.nav-toggle:checked ~ nav-right {
    display: block;
}

a {
    color: #000;
}

.nav-toggle {
    display: none; Displays the check box
}

.nav-toggle-label {
    position: relative;
    float:right;
    top: 10px;
    right: 10px;
    margin-left: 1em;
    height: 100%;
    display: flex;
    align-items: center;
}

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: red;  Color of the hamburger lines
        height: 3px; Tickness of the hamburfger lines
        width: 2em;
        border-radius: 2px;
        position: relative;
        float:right;

    }

        Lines for the hamburger

        .nav-toggle-label span::before,
        .nav-toggle-label span::after {
            content: '';
            position: relative;
            float: right;
        }

        .nav-toggle-label span::before {
            bottom: 7px;
        }

        .nav-toggle-label span::after {
            top: 7px;
        }


.button {
    background-color: #4CAF50;  /*Green*/ 
    border: 5px;
    color: black;
    padding: 5px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 2px solid black;
}

.grid-container td {
/*    border-bottom-width: 20px;*/
    /*display: grid;*/
    /*grid-template-columns: auto auto auto auto;*/
    /*grid-gap: 50px 20px;*/
    /*background-color: #2196F3;*/
    padding: 10px;
}

@media screen and (min-width: 890px){
    .nav-toggle-label {
        display:none;
    }

    nav-right {
        margin: 10px;
        position: absolute;
        top: 90px;
        right: 10px;
        padding: 10px;
        display: block; this makes the menu disapear
    }


}


</pre></body></html>