26 lines
310 B
SCSS
26 lines
310 B
SCSS
h2 {
|
|
font-size: calc(1.4rem + 1vw);
|
|
font-weight: 400;
|
|
line-height: 50px;
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
font-size: 42px;
|
|
}
|
|
}
|
|
|
|
|
|
.f-purple h2 {
|
|
color: $ma-purple;
|
|
}
|
|
|
|
.f-navy h2 {
|
|
color: $ma-navy;
|
|
}
|
|
|
|
.f-white h2 {
|
|
color: white;
|
|
}
|
|
|
|
.f-black h2 {
|
|
color: $ma-black;
|
|
} |