40 lines
		
	
	
		
			672 B
		
	
	
	
		
			SCSS
		
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			672 B
		
	
	
	
		
			SCSS
		
	
	
| .title-1 {
 | |
|   color: $primary;
 | |
|   font-size: 2.4rem;
 | |
|   line-height: 1.2;
 | |
|   font-family: $font-family-heading;
 | |
|   @include media-breakpoint-up(md) {
 | |
|     font-size: 3rem;
 | |
|   }
 | |
|   &.black {
 | |
|     color: #222222;
 | |
|   }
 | |
| }
 | |
| .title-2 {
 | |
|   font-family: $font-family-base;
 | |
|   font-weight: light;
 | |
|   color: #333333;
 | |
|   font-size: 2.4rem;
 | |
|   @include media-breakpoint-up(md) {
 | |
|     font-size: 4rem;
 | |
|   }
 | |
|   a {
 | |
|     display: block;
 | |
|   }
 | |
| }
 | |
| .title-3 {
 | |
|   font-family: $font-family-base;
 | |
|   font-weight: light;
 | |
|   color: #333333;
 | |
|   font-size: 1.6rem;
 | |
|   @include media-breakpoint-up(sm) {
 | |
|     font-size: 2rem;
 | |
|   }
 | |
|   @include media-breakpoint-up(md) {
 | |
|     font-size: 2.4rem;
 | |
|   }
 | |
|   a {
 | |
|     display: block;
 | |
|   }
 | |
| }
 |