1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/less/thumbnails.less

46 lines
878 B
Text
Raw Normal View History

2012-06-29 00:46:45 -04:00
//
// Thumbnails
// --------------------------------------------------
// Base classes
// For thumbnail block-level composite components and simple image styles
// The actual thumbnailed element
// Can be `a`, `div`, or `img`
.thumbnail,
.img-thumbnail {
padding: 4px;
line-height: @line-height-base;
background-color: @thumbnail-bg;
border: 1px solid @thumbnail-border;
border-radius: @thumbnail-border-radius;
2012-08-15 17:49:55 -04:00
.transition(all .2s ease-in-out);
}
.thumbnail > img,
.img-thumbnail {
.img-responsive();
}
.thumbnail {
display: block;
}
.img-thumbnail {
display: inline-block;
}
// Add a hover state for linked versions only
a.thumbnail:hover,
a.thumbnail:focus {
2012-11-30 17:37:24 -05:00
border-color: @link-color;
}
// Images and captions
.thumbnail > img {
margin-left: auto;
margin-right: auto;
}
.thumbnail .caption {
padding: 9px;
color: @thumbnail-caption-color;
}