32 lines
		
	
	
		
			374 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			374 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| .nav {
 | |
|   @include inline-ul;
 | |
|   background-color: $dark;
 | |
|   color: $light;
 | |
|   margin: -15px -15px 15px;
 | |
|   width: calc(100% + 30px);
 | |
| 
 | |
|   li {
 | |
|     &:hover {
 | |
|       background-color: $grey;
 | |
|     }
 | |
| 
 | |
|     a {
 | |
|       color: $light;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| .sub-nav {
 | |
|   @include inline-ul;
 | |
|   margin: -19px -15px 0;
 | |
| 
 | |
|   a {
 | |
|     color: $dark;
 | |
| 
 | |
|     &:hover {
 | |
|       background-color: $light;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 |