2020-05-31 21:17:10 +02:00
|
|
|
.list-background-setting {
|
|
|
|
|
2020-06-03 21:01:47 +02:00
|
|
|
.unsplash-link {
|
|
|
|
text-align: right;
|
|
|
|
font-size: .8rem;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $grey-dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-31 21:17:10 +02:00
|
|
|
.image-search-result {
|
|
|
|
margin-top: 1em;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
|
|
|
|
.image {
|
2020-07-03 19:37:20 +02:00
|
|
|
width: calc(100% / 5 - 1em);
|
2020-05-31 21:17:10 +02:00
|
|
|
height: 120px;
|
|
|
|
margin: .5em;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
@media screen and (min-width: $desktop) {
|
2020-07-03 19:37:20 +02:00
|
|
|
&:nth-child(5n) {
|
2020-05-31 21:17:10 +02:00
|
|
|
page-break-after: always; // CSS 2.1 syntax
|
|
|
|
break-after: always; // New syntax
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: $desktop) {
|
|
|
|
width: calc(100% / 4 - 1em);
|
|
|
|
|
|
|
|
&:nth-child(4n) {
|
|
|
|
page-break-after: always; // CSS 2.1 syntax
|
|
|
|
break-after: always; // New syntax
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: $tablet) {
|
|
|
|
width: calc(100% / 2 - 1em);
|
|
|
|
|
|
|
|
&:nth-child(2n) {
|
|
|
|
page-break-after: always; // CSS 2.1 syntax
|
|
|
|
break-after: always; // New syntax
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 21:44:44 +02:00
|
|
|
@media screen and (max-width: ($mobile)) {
|
2020-05-31 21:17:10 +02:00
|
|
|
width: calc(100% - 1em);
|
|
|
|
|
|
|
|
&:nth-child(1n) {
|
|
|
|
page-break-after: always; // CSS 2.1 syntax
|
|
|
|
break-after: always; // New syntax
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.info {
|
|
|
|
align-self: flex-end;
|
|
|
|
display: block;
|
|
|
|
opacity: 0;
|
|
|
|
width: 100%;
|
|
|
|
padding: .25em 0;
|
|
|
|
text-align: center;
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
font-size: .75em;
|
|
|
|
font-weight: bold;
|
|
|
|
color: $white;
|
|
|
|
transition: opacity $transition;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .info {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-load-more-button {
|
|
|
|
margin: 0 auto;
|
|
|
|
display: block;
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
}
|