Commit compiled front-end code to the repo

This commit is contained in:
Rowan Manning
2013-11-05 11:26:18 +00:00
parent 2471419b5b
commit 6b0cf20e4e
288 changed files with 93958 additions and 19 deletions

View File

@@ -0,0 +1,31 @@
//
// 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.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
border-color: @link-color;
}
// Image captions
.thumbnail .caption {
padding: @thumbnail-caption-padding;
color: @thumbnail-caption-color;
}