30 lines
549 B
SCSS
30 lines
549 B
SCSS
.lien {
|
|
padding: 100px 0;
|
|
@include desktop-lg {
|
|
padding: 70px 0 50px;
|
|
}
|
|
@include tablet {
|
|
padding: 50px 0 0;
|
|
}
|
|
&-infos {
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
&-thumb {
|
|
margin-bottom: 20px;
|
|
overflow: hidden;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
|
|
img {
|
|
width: 100%;
|
|
border-radius: 8px;
|
|
transition: all 0.5s ease-in-out;
|
|
}
|
|
&:hover {
|
|
img {
|
|
transform: scale(1.2);
|
|
}
|
|
}
|
|
}
|
|
}
|