mirror of
				https://github.com/mastermindzh/rickvanlieshout.com
				synced 2025-10-31 00:29:46 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| @use "../../assets/scss/variables" as *;
 | |
| @use "../../assets/scss/mixins" as *;
 | |
| 
 | |
| .feed {
 | |
|   .item {
 | |
|     @include margin-bottom(1.25);
 | |
| 
 | |
|     &:last-child {
 | |
|       @include margin-bottom(0.5);
 | |
|     }
 | |
| 
 | |
|     .title {
 | |
|       font-size: $typographic-base-font-size * 1.6875;
 | |
|       @include line-height(1.5);
 | |
|       @include margin-top(0);
 | |
|       @include margin-bottom(0.5);
 | |
| 
 | |
|       .link {
 | |
|         color: $color-base;
 | |
| 
 | |
|         &:hover,
 | |
|         &:focus {
 | |
|           border-bottom: 1px solid $color-base;
 | |
|           color: $color-base;
 | |
|         }
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     .description {
 | |
|       font-size: $typographic-base-font-size;
 | |
|       @include line-height(1);
 | |
|       @include margin-bottom(0.75);
 | |
|     }
 | |
| 
 | |
|     .meta {
 | |
|       .time {
 | |
|         color: $color-base;
 | |
|         font-size: $typographic-small-font-size;
 | |
|         font-weight: 600;
 | |
|         text-transform: uppercase;
 | |
|       }
 | |
| 
 | |
|       .divider {
 | |
|         @include margin(0, 0.5);
 | |
|       }
 | |
| 
 | |
|       .category {
 | |
|         .link {
 | |
|           color: $color-secondary;
 | |
|           font-size: $typographic-small-font-size;
 | |
|           font-weight: 600;
 | |
|           text-transform: uppercase;
 | |
| 
 | |
|           &:hover,
 | |
|           &:focus {
 | |
|             color: $color-primary;
 | |
|           }
 | |
|         }
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     .more {
 | |
|       color: $color-primary;
 | |
|       font-size: $typographic-base-font-size;
 | |
| 
 | |
|       &:hover,
 | |
|       &:focus {
 | |
|         border-bottom: 1px solid $color-primary;
 | |
|         color: $color-primary;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| }
 |