hacks-guide-minimal-mistake.../assets/_scss/_archive.scss

83 lines
1.6 KiB
SCSS
Raw Normal View History

2016-03-10 19:06:59 +01:00
/* ==========================================================================
ARCHIVE
========================================================================== */
.archive {
margin-bottom: 2em;
@include breakpoint($medium) {
@include span(10 of 12 last);
}
@include breakpoint($large) {
@include suffix(3 of 12);
2016-03-10 19:06:59 +01:00
}
@include breakpoint($x-large) {
@include prefix(0.5 of 12);
}
a {
text-decoration: none;
}
2016-03-10 19:06:59 +01:00
}
.archive__subtitle {
margin: 0;
padding-bottom: 0.5em;
2016-03-11 04:29:30 +01:00
font-family: $serif;
2016-03-10 19:06:59 +01:00
font-size: 28px;
border-bottom: 1px solid $border-color;
}
.archive__item-title {
margin-bottom: 4px;
2016-03-11 04:29:30 +01:00
font-family: $sans-serif-narrow;
2016-03-10 19:06:59 +01:00
font-size: 20px;
}
.archive__item-excerpt {
font-size: 14px;
& + p {
text-indent: 0;
}
}
a:hover {
.archive__item-teaser {
box-shadow: 0 0 10px rgba(#000, 0.25);
}
.archive__item-title {
text-decoration: underline;
}
}
/*
Grid view
========================================================================== */
.grid__item {
margin-bottom: 2em;
.archive__item-excerpt {
display: none;
}
.archive__item-teaser {
border-radius: $border-radius;
}
@include breakpoint($small) {
@include gallery(5 of 10);
.archive__item-teaser {
max-height: 200px;
overflow: hidden;
}
}
@include breakpoint($medium) {
margin-left: 0; // reset before mixin does its thing
margin-right: 0; // reset before mixin does its thing
@include gallery(2.5 of 10);
.archive__item-teaser {
max-height: 120px;
}
.archive__item-excerpt {
display: block;
}
}
}