mirror of
				https://github.com/twbs/bootstrap.git
				synced 2025-11-04 00:03:15 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			857 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			857 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
//
 | 
						|
// 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;
 | 
						|
  .transition(all .2s ease-in-out);
 | 
						|
}
 | 
						|
.thumbnail {
 | 
						|
  display: block;
 | 
						|
}
 | 
						|
.img-thumbnail {
 | 
						|
  display: inline-block;
 | 
						|
}
 | 
						|
 | 
						|
// Add a hover state for linked versions only
 | 
						|
a.thumbnail:hover,
 | 
						|
a.thumbnail:focus {
 | 
						|
  border-color: @link-color;
 | 
						|
}
 | 
						|
 | 
						|
// Images and captions
 | 
						|
.thumbnail > img {
 | 
						|
  display: block;
 | 
						|
  max-width: 100%;
 | 
						|
  margin-left: auto;
 | 
						|
  margin-right: auto;
 | 
						|
}
 | 
						|
.thumbnail .caption {
 | 
						|
  padding: 9px;
 | 
						|
  color: @thumbnail-caption-color;
 | 
						|
}
 |