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/_theme-tooltip.scss
/* header, footer tooltip */
@keyframes tooltip-animation {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes tooltip-color {
    0% {
        color: #fff;
    }
    50% {
        color: #333;
    }
    100% {
        color: #fff;
    }
}
@keyframes tooltip-color-white {
    0% {
        color: #444;
    }
    50% {
        color: #fff;
    }
    100% {
        color: #444;
    }
}
#header,
.footer {
    .porto-tooltip {
        position: absolute !important;
        #{$right}: 0;
        top: 5px;
        width: 20px;

        @media #{$screen-small} {
            display: none !important;
        }
    }

    .tooltip-icon {
        cursor: pointer;
        border: 1px solid #000;
        color: #000;
        border-radius: 50%;
        display: block;
        width: 20px;
        height: 20px;
        text-align: center;
        line-height: 20px;
        font-size: 10px;
        position: relative;
        #{$right}: 5px;

        @include transition(all .2s ease-in-out);
        @include animation(tooltip-animation 1s ease-in infinite);
    }

    .tooltip-popup {
        display: none;
        position: absolute;
        #{$right}: 0;
        text-align : $left;
        top: -2px;
        width: 300px;
        background-color: #111;
        box-shadow: 0 0 8px rgba(255,255,255,.5);
        padding: 20px;
        border-radius: 10px;
        font-size: 12px;
        line-height: 1.4;
        color: #fff;
        z-index: 2000;

        h4 {
            font-size: 16px;
            color: #fff;
        }

        p {
            margin-bottom: 10px;
            color: #fff;
        }

        em {
            font-size: 10px;
        }
    }

    .tooltip-close {
        cursor: pointer;
        position: absolute;
        #{$right}: 10px;
        top: 10px;
        color: #fff;
    }
}

#header .porto-tooltip {
    z-index: 1000;
}

.footer .porto-tooltip {
    top: 30px;
    #{$right}: 15px;
}

@media (min-width: 992px) {
    .header-wrapper.header-side-nav {
        #header .tooltip-popup {
            #{$left}: -5px;
            #{$right}: auto;
        }
    }
}