mirror of
				https://git.librezo.fr/Librezo/website.git
				synced 2025-10-31 13:55:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			567 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			567 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| @import "defs";
 | |
| 
 | |
| .team {
 | |
| 	display: flex;
 | |
| 	flex-wrap: wrap;
 | |
| 	justify-content: space-between;
 | |
| 	gap: 16px;
 | |
| }
 | |
| 
 | |
| .team_box {
 | |
| 	max-width: 434px;
 | |
| 	margin: auto;
 | |
| }
 | |
| 
 | |
| .team_box-top {
 | |
| 	display: flex;
 | |
| 	align-items: center;
 | |
| 	gap: 16px;
 | |
| }
 | |
| 
 | |
| .team_box-bottom {
 | |
| 	clear: both;
 | |
| }
 | |
| 
 | |
| .team_box-img {
 | |
| 	// 70% ~= 1/sqrt(2)
 | |
| 	mask-image: radial-gradient(circle, #000 69%, transparent 70%);
 | |
| 	width: 160px;
 | |
| }
 | |
| 
 | |
| .team_box-title {
 | |
| 	font-family: Neucha;
 | |
| 	font-size: 150%;
 | |
| }
 | |
| 
 | |
| .team_box-subtitle {
 | |
| 	font-family: Neucha;
 | |
| 	font-size: 125%;
 | |
| 	color: $violet;
 | |
| }
 | |
| 
 | |
| .team_box-description {
 | |
| 	margin-top: 8px;
 | |
| }
 | 
