www.duckland.org/themes/minimage/source/sass/object/component/_bg-img.scss
2023-02-07 22:52:35 -06:00

12 lines
224 B
SCSS

.c-bg-img {
background-repeat: no-repeat;
background-size: 100%;
background-position: center center;
transition: 0.3s $ease-out-quart 0s;
opacity: 1;
&:hover {
background-size: 110%;
opacity: 0.8;
}
}