HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
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/quadcode-jobs/resources/sass/common/_action-marker.scss
 .action-marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.5rem;
    height: 5.5rem;
    background: var(--color-highlight);
    color: var(--color-app-background);
     cursor: pointer;

    svg {
        width: 14px;
        margin-right: -1px;
        transition: 0.5s all ease;
        transform: translateY(0%);
    }

    &::before {
        content: "";
        position: absolute;
        height: 1px;
        width: 2px;
        top: 47%;
        left: calc(33% + 9px);
        background: #fff;
        transition: 0.5s all ease;
    }

     @include breakpoint-up('lg') {
         &:hover {

             svg {
                 margin-bottom: -32%;
             }

             &::before {
                 height: 30px;
                 transform: translateY(-36%);
             }
         }
     }
}

.app-footer__to-top .action-marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.5rem;
    height: 5.5rem;
    background: var(--color-highlight);
    color: var(--color-app-background);

    svg {
        width: 14px;
        margin-right: -1px;
        transition: 0.3s all ease;
        transform: translateY(0%);
    }

    &::before {
        content: "";
        position: absolute;
        height: 1px;
        width: 2px;
        top: 47%;
        left: calc(33% + 9px);
        background: #fff;
        transition: 0.3s all ease;
    }

    @include breakpoint-up('lg') {
        &:hover {

            svg {
                margin-top: -20%;
                margin-bottom: 0;
            }

            &::before {
                height: 15px;
                transform: translateY(-45%);
            }
        }
    }
}