mirror of
				https://github.com/twbs/bootstrap.git
				synced 2025-10-31 00:04:27 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			245 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			245 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;
 | |
| }
 |