www.kontakt-bamberg.de/assets/_gallery.scss

41 lines
555 B
SCSS
Raw Normal View History

2023-03-12 00:13:25 +01:00
@import 'breakpoints';
@import 'colors';
.gallery {
display: flex;
flex-wrap: wrap;
gap: 1rem;
a {
&.blur-on-hover {
overflow: hidden;
2023-03-12 00:13:25 +01:00
&:hover img {
filter: blur(5px);
transform: scale(120%);
}
img {
transition: all 500ms;
}
}
p {
background: rgba($color-overlay, 0.9);
color: $color-overlay-text;
margin-bottom: 0;
padding: 0.5em 1em;
position: absolute;
transform: translateY(-100%);
width: 280px;
}
}
img {
display: block;
2023-03-12 00:13:25 +01:00
height: 280px;
object-fit: cover;
2023-03-12 00:13:25 +01:00
width: 280px;
}
}