39 lines
		
	
	
	
		
			543 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			543 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| ul.menu {
 | |
|   margin: 0;
 | |
|   padding: 0;
 | |
|   text-align: center;
 | |
| 
 | |
|   @include media-tablet {
 | |
|     text-align: left;
 | |
|   }
 | |
| 
 | |
|   li.menu-item {
 | |
|     display: inline-block;
 | |
|     padding: 0.5rem 1rem;
 | |
|     text-transform: uppercase;
 | |
| 
 | |
|     @include media-tablet {
 | |
|       padding: 1rem 0.8rem;
 | |
|     }
 | |
| 
 | |
|     a {
 | |
|       color: black;
 | |
|       text-decoration: none;
 | |
| 
 | |
|       &:hover,
 | |
|       &:focus,
 | |
|       &.is-active {
 | |
|         color: $dcb-green;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| nav.menu--main {
 | |
|   font-weight: bold;
 | |
| 
 | |
|   @include media-tablet {
 | |
|     margin: 0.8rem;
 | |
|     float: right;
 | |
|   }
 | |
| }
 | 
