mirror of
				https://github.com/mastermindzh/rickvanlieshout.com
				synced 2025-10-31 00:29:46 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			640 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			640 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| @use "../../../assets/scss/variables" as *;
 | |
| @use "../../../assets/scss/mixins" as *;
 | |
| 
 | |
| .author {
 | |
|   .photo {
 | |
|     background-clip: padding-box;
 | |
|     border-radius: 50%;
 | |
|     display: inline-block;
 | |
|     height: 75px;
 | |
|     width: 75px;
 | |
|     @include margin-bottom(0);
 | |
|   }
 | |
| 
 | |
|   .title {
 | |
|     font-size: $typographic-base-font-size * 1.125;
 | |
|     font-weight: 600;
 | |
|     @include line-height(1.125);
 | |
|     @include margin(0.5, 0, 0.5, 0);
 | |
| 
 | |
|     .link {
 | |
|       color: $color-base;
 | |
| 
 | |
|       &:hover,
 | |
|       &:focus {
 | |
|         color: $color-base;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   .subtitle {
 | |
|     color: $color-gray;
 | |
|     @include line-height(1);
 | |
|     @include margin-bottom(1);
 | |
|   }
 | |
| }
 |