File: D:/HostingSpaces/slenders/slenders.nl/resources/sass/site/5-Components/_components.card.scss
.c-card{
display: block;
width: 100%;
text-decoration: none;
}
.c-card__image-placeholder {
position: relative;
width: 100%;
height: 0;
padding-bottom: 100%;
}
.c-card__image {
position: absolute;
left: 0;
top: 0;
display: block;
height: 100%;
width: 100%;
background-color: palette(neutral, 100);
img {
width: 100%;
opacity: 1;
transform: scale3d(1,1,1);
transition: opacity 0.2s, transform 0.2s;
}
}
.c-card__body {
//padding: 35px 0 40px;
padding: 35px 0 0;
}
.c-card__title {
max-width: 350px;
margin-bottom: 30px;
color: palette(primary);
@include font-size(mid);
@include font-weight(regular);
}
.c-card__content {
color: palette(text);
}
.c-card__action {
margin: 30px 0 0;
}
// Modifier for centering the image & the action button
.c-card--center {
text-align: center;
}
a.c-card:hover {
.c-card__image img{
opacity: 0.75;
transform: scale3d(0.9,0.9,1);
}
}