Animations

Bold logo gif

07 Nov 2022

bold logo
HTML
SCSS
                            <div class="bold-logo-wr">
    <a href="https://www.boldidentities.com/" id="bold-credits" target="_blank">
        <img src="<?= _SITEDIR_ ?>public/images/bold-logo/BOLD-logo-white.gif" alt="bold-logo">
    </a>
</div>
                        
                            .bold-logo-wr {
    display: flex;
    justify-content: center;
}

#bold-credits {
    width: ac(150px, 120px);
    margin: ac(30px, 20px) 0;
    transition: all 0.3s;
    &:hover {
        transform: scale(1.14);
    }
}
                        

gif.zip

0