all the files have been uploaded
This commit is contained in:
Abdullah Almsaeed
2013-12-24 22:09:19 -05:00
parent a4c5b61fe8
commit f5e01e2d15
456 changed files with 153093 additions and 0 deletions

30
less/thumbnails.less Normal file
View File

@@ -0,0 +1,30 @@
//
// Thumbnails
// --------------------------------------------------
// Mixin and adjust the regular image class
.thumbnail {
.img-thumbnail();
display: block; // Override the inline-block from `.img-thumbnail`
margin-bottom: @line-height-computed;
> img {
.img-responsive();
margin-left: auto;
margin-right: auto;
}
// Add a hover state for linked versions only
a&:hover,
a&:focus,
a&.active {
border-color: @link-color;
}
// Image captions
.caption {
padding: @thumbnail-caption-padding;
color: @thumbnail-caption-color;
}
}