 e0c7d34912
			
		
	
	
		e0c7d34912
		
	
	
	
	
		
			
			This PR is a supplement for PR #259 and includes: - Text now keeps distance to a right or left floating BBcode video. - Leggero v2 version bump - small correction in the changelog - I was once so cheeky and added myself to the existing style contributors :-P .
		
			
				
	
	
		
			63 lines
		
	
	
		
			1017 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1017 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| /*
 | |
| ===================
 | |
| Leggero CSS Styles
 | |
| ===================
 | |
| 
 | |
| Name: Leggero v2
 | |
| Author: NoWhereMan, Drudo, Marc Thibeault and Fraenkiman
 | |
| Version: 1.0
 | |
| Module: style.css
 | |
| */
 | |
| 
 | |
| /* ===== NORMAL DESIGN ===== */
 | |
| @media (min-width: 720px) {
 | |
| 	/* ===== COLUMN ===== */
 | |
| 	#column {
 | |
| 		width: 215px;
 | |
| 		margin: 0px 20px 0px 0px;
 | |
| 		display: inline-block;
 | |
| 		font-size: 90%;
 | |
| 		height: 1%;
 | |
| 		margin-bottom: 5px;
 | |
| 		color: white
 | |
| 	}
 | |
| }
 | |
| 
 | |
| 
 | |
| /* ===== RESPONSIVE DESIGN ===== */
 | |
| @media (max-width: 719px) {
 | |
| 	/* ===== COLUMN ===== */
 | |
| 	#column {
 | |
| 		text-align: center;
 | |
| 		width: 100%;
 | |
| 		display: inline-block;
 | |
| 		font-size: 100%;
 | |
| 		height: 1%;
 | |
| 		margin: 5px auto;
 | |
| 		color: white
 | |
| 	}
 | |
| }
 | |
| 
 | |
| #column h4 {
 | |
| 	/* Titles of the sections */
 | |
| 	margin-bottom: .5em;
 | |
| 	color: white
 | |
| }
 | |
| 
 | |
| #column p, #column div { margin: 5px 0px }
 | |
| 
 | |
| 
 | |
| /* === List === */
 | |
| #column ul li table { font-size: 100% }
 | |
| 
 | |
| #column ul {
 | |
| 	list-style-type: none;
 | |
| 	margin-right: 10px;
 | |
| 	margin-bottom: .5em;
 | |
| 	padding-left: 1em
 | |
| }
 | |
| 
 | |
| #column fieldset { margin: 0 5px 0 5px }
 | |
| 
 | |
| #column legend { font-size: 100% }
 |