mirror of
				https://git.librezo.fr/Librezo/website.git
				synced 2025-10-31 13:55:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			505 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			505 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| @import "defs";
 | |
| 
 | |
| // TABLEAU DES PRIX
 | |
| 
 | |
| .prices {
 | |
| 	width: 100%;
 | |
| 	table-layout: fixed;
 | |
| }
 | |
| 
 | |
| .prices th {
 | |
| 	font-family: Neucha;
 | |
| 	font-size: 24px;
 | |
| 	background: linear-gradient(0.125turn, $blue, $violet);
 | |
| 	color: #fff;
 | |
| 	padding: 4px;
 | |
| }
 | |
| 
 | |
| .prices td {
 | |
| 	padding: 4px;
 | |
| 	text-align: center;
 | |
| 	font-size: 20px;
 | |
| }
 | |
| 
 | |
| .prices tr td:first-of-type {
 | |
| 	background-color: $grad1_3tr;
 | |
| }
 | |
| 
 | |
| .prices tr td:first-of-type + td {
 | |
| 	background-color: $grad2_3tr;
 | |
| }
 | |
| 
 | |
| .prices tr td:first-of-type + td + td {
 | |
| 	background-color: $grad3_3tr;
 | |
| }
 | 
