You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
992 B
45 lines
992 B
/* ==========================================================================
|
|
Tiles
|
|
========================================================================== */
|
|
|
|
.twotile {
|
|
@include outer-container;
|
|
margin-bottom: $gutter;
|
|
@include media($micro) {
|
|
@include fill-parent;
|
|
}
|
|
@include media(new-breakpoint(min-width em(480) 12)) {
|
|
@include span-columns(6);
|
|
@include omega(2n);
|
|
}
|
|
.entry-date {
|
|
@include font-size(16,no);
|
|
color: lighten($text-color,25);
|
|
}
|
|
.post-title {
|
|
@include font-size(18,no);
|
|
}
|
|
.post-excerpt {
|
|
@include font-size(16);
|
|
}
|
|
.post-teaser {
|
|
position: relative;
|
|
display: block;
|
|
&:after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
background: rgba($base-color,0);
|
|
pointer-events: none;
|
|
@include transition(background 0.3s);
|
|
}
|
|
&:hover {
|
|
&:after {
|
|
background: rgba($base-color,0.2);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|