2017-05-23 18:43:12 +02:00
|
|
|
.section--blog {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.article {
|
2017-05-23 21:55:10 +02:00
|
|
|
@include color-overlay;
|
|
|
|
@include transition;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
padding: $spacer;
|
|
|
|
border-radius: $border-radius;
|
|
|
|
overflow: hidden;
|
|
|
|
box-shadow: none;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
min-height: 7rem;
|
2017-05-23 18:43:12 +02:00
|
|
|
|
2017-05-23 21:55:10 +02:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
box-shadow: 0 2px 5px rgba($brand-main-blue-dark, .2);
|
|
|
|
transform: translateY(-1px);
|
|
|
|
}
|
2017-05-23 18:43:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.article__title {
|
2017-05-23 21:55:10 +02:00
|
|
|
@extend .h6, .transition;
|
|
|
|
margin: 0;
|
|
|
|
color: #fff;
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2017-05-23 18:43:12 +02:00
|
|
|
}
|