HEX
Server: Apache
System: Linux webd004.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User: frenchy (106757)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/frenchy/refonte2023/wordpress/wp-content/themes/gimont/assets/scss/base/_sticky.scss
.header_sticky {

    &.active_sticky{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background-color: #fff;
        @include transaction( all, 0.3s, linear );

        -webkit-animation: sticky 0.7s;
        animation: sticky 0.7s;
    }

   &.sticky_bg_dark {
        &.active_sticky {
            background-color: var(--heading);
        }
    }

    @-webkit-keyframes sticky {
        0% {
            top: -100px;
        }
        100% {
            top: 0;
        }
    }
    @keyframes sticky {
        0% {
            top: -100px;
        }
        100% {
            top: 0;
        }
    }
}