bootstrap/less/thumbnails.less

33 lines
664 B
Plaintext
Raw Normal View History

2012-06-29 12:46:45 +08:00
//
// Thumbnails
// --------------------------------------------------
// The actual thumbnail (can be `a` or `div`)
.thumbnail {
display: block;
padding: 4px;
2012-08-15 02:06:35 +08:00
line-height: @baseLineHeight;
border: 1px solid #ddd;
border-radius: @baseBorderRadius;
.box-shadow(0 1px 3px rgba(0,0,0,.055));
2012-08-16 05:49:55 +08:00
.transition(all .2s ease-in-out);
}
// Add a hover state for linked versions only
a.thumbnail:hover {
border-color: @linkColor;
.box-shadow(0 1px 4px rgba(0,105,214,.25));
}
// Images and captions
.thumbnail > img {
display: block;
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
.thumbnail .caption {
padding: 9px;
color: @gray;
}