HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpamazingsecret/wp-content/themes/porto/scss/theme/gui/_navs.scss
/* Navs */
.nav {
    /*> li {
        > a:hover, > a:focus {
            background: transparent;
        }
    }*/
    i.icon-image {
        display: inline-block;
        max-width: 20px;
    }
}

ul {
    &.nav-list,
    &[class^="wsp-"] {
        li {
            margin: 0;
            padding: 0;
            display: block;
            flex: 0 0 100%;
            width: auto;
            position: relative;
            a {
                @include transition (background .1s);
                padding: side-values(8px 0 8px 20px);
                display: block;
                color: #666;
                font-size: .9em;
                line-height: 20px;
                border-bottom: 1px solid var(--porto-input-bc);
                &:before {
                    content: "\f054";
                    display: inline-block;
                    position: absolute;
                    top: 9px;
                    #{$left}: 9px;
                    opacity: .7;
                    font-size: .45rem;
                }
                &:hover:before {
                    animation: arrowLeftRight .6s linear infinite;
                }
            }
            > a.active, &.active > a {
                font-weight: 700;
            }
            ul {
                list-style: none;
                margin: side-values(0 0 0 25px);
                padding: 0;
            }
            .wsp-category-title {
                margin-top: 10px;
            }
            .wsp-category-title a {
                display: inline-block;
                padding-#{$left}: 0;
                font-size: 1em;

                &:before {
                    display: none;
                }
                &:hover {
                    background-color: transparent;
                }
            }
        }

        &.hide-not-active {
            li {
                ul {
                    display: none;
                }
                &.active {
                    ul {
                        display: block;
                    }
                }
            }
        }

        &.show-bg-active {
            .active > a,
            a.active {
                background-color: var(--porto-gray-3);
                &:hover {
                    background-color: var(--porto-gray-5);
                }
            }
        }
    }

    &.narrow {
        li {
            a {
                padding-top: 4px;
                padding-bottom: 4px;
            }
        }
    }
}

.nav-pills > li {
    &.active > a,
    > a.active {
        background-color: var(--porto-primary-color);
        color: var( --porto-primary-color-inverse, $color-light );
    }
}
.nav-pills-center {
    text-align: center;
    justify-content: center;
    > li {
        display: inline-block;
        float: none;
    }
}
.nav-pills-left {
    justify-content: flex-start;
}
.nav-pills-right {
    justify-content: flex-end;
}
.nav-pills-justify {
    > li {
        text-align: center;
        width: 100%;
    }
}

.nav-pills .nav-link .active {
    background-color: transparent;
}

.show > .nav-pills .nav-link {
    background-color: transparent;
}

/* Nav Secondary */
.nav-secondary {
    background: #fafafa;
    padding: 20px 0;
    z-index: 100;
    .nav-pills {
        justify-content: center;
        > li {
            a,
            span {
                display: block;
                font-size: .75rem;
                font-weight: 600;
                line-height: 20px;
                padding: 10px 13px;
                text-transform: uppercase;
                i {
                    font-size: .875rem;
                    margin-#{$right}: .3125rem;
                }
            }
        }
    }
    &.sticky-active {
        border-bottom-color: #e9e9e9;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    }
}