 /**
  * 
  * @author Jorn
  * @created 2024-08-09 14:36
  */

#intra > header {
    position: fixed;
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    width: 100%;
    height: 48px;
    overflow: hidden; /* Disable horizontal scroll */
    background-color: #8ac;
    color: black;
}

#intra > header a {
    color: black;
}

#intra > header ul > li {
    float: left;
    margin: 4px 16px 0 8px;
}

#intra > header ul > li.menu_toggle > div {
    height: 36px;
    width: 36px;
    background-image: URL(../images/icons/material/navigation/1x_web/ic_menu_white_48dp.png);
    background-repeat: no-repeat;
    background-size: 32px 32px;
    background-position: center center;
}

#intra > header ul > li > * {
    white-space: nowrap;
    overflow: hidden;
    min-height: 16px;
 
}

#intra > header ul > li > *:hover {
   background-color: #68a;
}
#intra > header ul > li.search input {
    margin: 4px;
    width: 16px;
}
#intra > header ul > li.userinfo > a,
#intra > header ul > li.logout > a {
    display: block;
    width: 96px;
    margin: 2px;
    padding: 4px 0 4px 28px;
    text-decoration: none;
    color: white;
    background-image: URL(../images/icons/material/social/1x_web/ic_person_outline_white_48dp.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
}

#intra > header ul > li.logout > a {
  background-image: URL(../images/icons/material/action/1x_web/ic_exit_to_app_white_48dp.png);
}

#intra > header ul:after {
    display: block;
    content: '';
    clear: both;
}
    
#intra > nav {
    width: 220px;
    height: 100%;
    background-color: #cde;
    position: fixed; /* Fixed Sidebar (stay in place on scroll) */
    z-index: 1; /* Stay on top */
    top: 48px; /* Stay at the top */
    left: 0;
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 20px;
}

#intra > nav div.heading {
    font-size: 12px;
    font-weight: bold;
    margin: 8px 0 2px 12px;
    color: #444;
}

#intra > nav a {
    display: block;
    min-height: 16px;
    margin: 2px;
    padding: 4px 0 4px 24px;
    text-decoration: none;
    color: #036;
    background-image: URL(../images/icons/material/hardware/1x_web/ic_keyboard_arrow_right_white_48dp.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
}

#intra > nav a:hover {
    color: white;
    background-color: #8ac;
}

#intra > div.content {
 
    background-color: white;
    margin-left: 230px;
    margin-top: 72px;
    min-height: 800px;
}

#intra > div.content a {
    color: #048;
}

#intra > div.content a:hover {
    color: blue;
    background-color: #ff9;
}

#intra > footer {
    margin-top: 128px;
    margin-left: 230px;
    background-color: #999;
}


@media only screen and ( max-width: 776px ) {

    #intra > header ul > li.site_name,
    #intra:not(.show_menu) > nav {
        display: none;
    }

    #intra:not(.show_menu) > div.content {
        margin-left: 0px;
    }

    #intra > header ul > li.userinfo > a,
    #intra > header ul > li.logout > a {
        width: 1px;
    }
}

@media only screen and ( min-width: 776px ) {

    #intra.hide_menu > nav {
        display: none;
    }

    #intra.hide_menu > div.content {
        margin-left: 0px;
    }
}

@media only screen and ( min-width: 1280px ) {

}
