mirror of
				https://github.com/twbs/bootstrap.git
				synced 2025-11-04 00:03:15 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			335 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			335 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
//
 | 
						|
// Utility classes
 | 
						|
// --------------------------------------------------
 | 
						|
 | 
						|
 | 
						|
// Quick floats
 | 
						|
.pull-right {
 | 
						|
  float: right;
 | 
						|
}
 | 
						|
.pull-left {
 | 
						|
  float: left;
 | 
						|
}
 | 
						|
 | 
						|
// Toggling content
 | 
						|
.hide {
 | 
						|
  display: none;
 | 
						|
}
 | 
						|
.show {
 | 
						|
  display: block;
 | 
						|
}
 | 
						|
 | 
						|
// Visibility
 | 
						|
.invisible {
 | 
						|
  visibility: hidden;
 | 
						|
}
 | 
						|
 | 
						|
// For Affix plugin
 | 
						|
.affix {
 | 
						|
  position: fixed;
 | 
						|
}
 |