HEX
Server: LiteSpeed
System: Linux s324 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User: leoir (1352)
PHP: 8.3.31
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/leoir/.trash/files/oceanwp1/sass/components/footer/_scroll-top.scss
/**
 * Scroll top
 */
#scroll-top {
    display: none;
    opacity: 0;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: rgba(0, 0, 0, 0.4);
    color: $color-1;
    font-size: 18px;
    cursor: pointer;
    @include border-radius(2px);
    text-align: center;
    z-index: 100;
    @include box-sizing(content-box);

    > span {
        line-height: inherit;
        vertical-align: top;
    }

    &:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    &.scroll-top-left {
        left: 20px;
        right: auto;
    }

    .owp-icon {
        vertical-align: initial;

        use {
            stroke: $color-1;
        }
    }
}

/*------------------------------------*
	Phone Landscape
*------------------------------------*/
@media only screen and (max-width: 480px) {
    #scroll-top {
        right: 10px;
        bottom: 10px;
        width: 26px;
        height: 26px;
        line-height: 24px;
        font-size: 14px;
    }
}