<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Style the nav */
.nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 60px;
    width: 100%;
    background-color: var(--color-board);
    border-bottom: 1px solid var(--color-border);
    z-index: 2;
}

/* Style the logo in the nav */
.logo {
    float: left;
    display: block;
    width: 120px;
    height: 100%;
    background-image: url("logo_blackq.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Style the item to the right in the nav */
.item {
    float: right;
    display: none;
    position: relative;
    height: 100%;
    padding: 17px 17px;
    color: var(--color-font);
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition-duration: 0.5s;
}

/* Style the item on hover in the nav */
.item:hover {
    background-color: var(--color-highlight);
    color: var(--color-font-highlight);
}

/* Style the gap in the nav */
.gap {
    float: left;
    display: none;
    width: 50px;
    height: 100%;
}

/* Style the dropdown to the left in the nav */
.dropdown {
    float: left;
    display: none;
    position: relative;
    height: 100%;
    padding: 17px 17px;
    color: var(--color-font);
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition-duration: 0.5s;
}

/* Style the item on hover in the nav */
.dropdown:hover {
    background-color: var(--color-highlight);
    color: var(--color-font-highlight);
}

/* Style the dropdown content in the nav */
.dropdown_content {
    display: none;
    position: absolute;
    left: 0%;
    top: 100%;
    min-width: 200px;
    background-color: var(--color-board);
    border: 1px solid var(--color-border);
}

/* Style the dropdown in the nav when the corresponding item is on hover */
.dropdown:hover &gt; .dropdown_content {
    display: block;
}

/* Style the dropdown item */
.dropdown_content &gt; .dropdown_item {
    display: block;
    padding: 17px 17px;
    text-decoration: none;
    text-align: left;
    color: var(--color-font);
}

/* Style the dropdown item when it is on hover */
.dropdown_content &gt; .dropdown_item:hover {
    background-color: var(--color-select);
    color: var(--color-font-highlight);
}

/* Style the description in the nav */
.description {
    float: right;
    display: none;
    height: 100%;
    padding: 17px 17px;
    color: var(--color-font);
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

/* Style the menu icon */
.menu {
    float: right;
    display: block;
    position: relative;
    height: 100%;
    padding: 17px 17px;
    color: var(--color-font);
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition-duration: 0.5s;
    cursor: pointer;
}

/* Style the menu on hover in the nav */
.menu:hover {
    background-color: var(--color-highlight);
    color: var(--color-font-highlight);
}

/* Style the menu content */
.menu_content {
    display: none;
    position: absolute;
    right: 0%;
    top: 100%;
    min-width: 200px;
    background-color: var(--color-board);
    border: 1px solid var(--color-border);
}

/* Style the menu in the nav when the corresponding item is on hover */
.menu:hover &gt; .menu_content {
    display: block;
}

/* Style the menu item in the menu content*/
.menu_content &gt; .menu_item {
    display: block;
    text-decoration: none;
    color: var(--color-font);
    background-color: var(--color-board);
}

/* Style the profile in the menu content */
.menu_content &gt; .profile {
    float: left;
    width: calc(100% - 55px);
    text-align: center;
    padding: 17px 17px;
}

/* Style the logout in the menu content*/
.menu_content &gt; .logout {
    float: right;
    width: 55px;
    padding-top: 18px;
    padding-bottom: 11px;
}

/* Style the menu section in the menu content */
.menu_content &gt; .menu_section {
    clear: both;
    text-align: center;
    padding: 10px 17px;
    background-color: var(--color-highlight);
}

/* Style the menu section item in the menu content */
.menu_content &gt; .menu_section_item {
    text-align: left;
    padding: 10px 17px;
}

/* Style the menu item when it is on hover */
.menu_content a:hover {
    background-color: var(--color-select);
    color: var(--color-font-highlight);
}

/* Style the message */
.message {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-weight: bold;
    color: var(--color-font-highlight);
    background-color: var(--color-highlight);
    text-decoration: none;
}

@media only screen and (min-width: 768px) {
    /* Style the item to the right in the nav */
    .item {
        display: block;
    }
    
    /* Style the gap in the nav */
    .gap {
        display: block;
    }

    /* Style the dropdown to the left in the nav */
    .dropdown {
        display: block;
    }

    /* Style the menu icon */
    .menu {
        display: none;
    }

    /* Style the message */
    .message {
        left: auto;
        right: 0px;
    }

    /* Style the description in the nav */
    .description {
        display: block;
    }
}</pre></body></html>