mirror of
				https://github.com/mastermindzh/rickvanlieshout.com
				synced 2025-10-31 08:40:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			678 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			678 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| @use "../../../assets/scss/variables" as *;
 | |
| @use "../../../assets/scss/mixins" as *;
 | |
| 
 | |
| .menu {
 | |
|   .list {
 | |
|     list-style: none;
 | |
|     @include margin-equal(0);
 | |
|     @include padding-equal(0);
 | |
| 
 | |
|     .item {
 | |
|       @include margin(0.5, 0);
 | |
|       @include padding-equal(0);
 | |
| 
 | |
|       .link {
 | |
|         border: 0;
 | |
|         color: $typographic-base-font-color;
 | |
|         font-size: $typographic-base-font-size;
 | |
|         font-weight: normal;
 | |
| 
 | |
|         &:hover,
 | |
|         &:focus {
 | |
|           border-bottom: 1px solid $color-primary;
 | |
|           color: $color-primary;
 | |
|         }
 | |
| 
 | |
|         &.active {
 | |
|           border-bottom: 1px solid $color-base;
 | |
|           color: $color-base;
 | |
|         }
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| }
 |