<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.fixed-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    height: 65px;
    background: rgb(54, 54, 54);
    font-family: "InterRegular",sans-serif;
    color: var(--menu-color);
}


/* The element at the top of the page right after the fixed navigation bar
   MUST have sufficient top margin or else it will be covered by the bar */

.content {
    margin-top: 20px;
}


/* Example responsive navigation menu  */

.fixed-nav-bar li,
.fixed-nav-bar a {
    height: 50px;
    line-height: 65px;
}

.menu {
    max-width: 1200px;
    margin: 0 auto;
}

.menu a,
.menu a:visited {
    color: #ffffff;
}

.menu a:hover,
.menu a:target {
    color: var(--menu-color);
}

.menu-items {
    display: inline-block;
    float: right;
}

ul li:hover&gt;ul,
ul li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}

ul li ul li {
    clear: both;
    width: 100%;
}

.sitename {
    display: inline-block;
    margin-right: 20px;
    margin-left: 10px;
    margin-top:5px;
}

a.sitename,
a:visited.sitename {
    color: var(--menu-color);
}

.menu-items li {
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
}

.menu-items a {
    text-decoration: none;
}

.show,
.hide {
    display: none;
    padding-left: 15px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center left;
    color: #dde1e2;
}

.show {
    background-image: url("/admin/css/svg/list.svg");
    margin-right: 10px;
}

.hide {
    background-image: url("/admin/css/svg/x.svg");
    margin-right: 10px;
}

@media only screen and (max-width: 800px) {
    .menu {
        position: relative;
        width: 100%;
    }
    .sitename {
        position: absolute;
        top: 0;
        left: 15px;
        margin-left: 0;
    }
    .menu-items {
        display: none;
        width: 100%;
        margin-top: 50px;
        background-color: rgba(0, 0, 0, 0.87);
    }
    .menu-items li {
        display: block;
        text-align: center;
    }
    .show,
    .hide {
        position: absolute;
        top: 0;
        right: 15px;
    }
    .show {
        display: inline-block;
    }
    .hide {
        display: none;
    }
    #menu:target .show {
        display: none;
    }
    #menu:target .hide,
    #menu:target .menu-items {
        display: inline-block;
    }
}

@media only screen and (max-width: 220px) {
    .sitename,
    .show,
    .hide {
        font-size: 14px;
    }
}

.active{
    border-bottom: 2px solid var(--menu-color);
}</pre></body></html>