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.
43 lines
748 B
43 lines
748 B
// Variables
|
|
//------------------------------------------------------
|
|
$media-font-color: $darkgray-dark !default;
|
|
|
|
|
|
$thumbnail-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default;
|
|
|
|
|
|
// Exports
|
|
//------------------------------------------------------
|
|
|
|
@include exports("thumbnail") {
|
|
|
|
/**
|
|
* thumbnail
|
|
* --------------------------------------------------
|
|
*/
|
|
.thumbnail {
|
|
border: none;
|
|
@include box-shadow($value: $list-shadow);
|
|
|
|
& a > img, & > img {
|
|
width: 100%;
|
|
}
|
|
|
|
& .caption {
|
|
font-size: 14px;
|
|
}
|
|
|
|
& .caption h1,
|
|
& .caption h2,
|
|
& .caption h3,
|
|
& .caption h4,
|
|
& .caption h5,
|
|
& .caption h6 {
|
|
margin: 5px 0 10px;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|