blob: 07e0016db6d597cbaf30e46c5cadde15e1e2206a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
.title {
font-size: 2.7rem;
line-height: 1.1;
font-family: $font-family-base;
letter-spacing: -0.2px;
font-weight: 100;
margin-bottom: 20px;
@include media-breakpoint-up(md) {
font-size: 3rem;
margin-bottom: 30px;
}
}
.title-summary {
font-size: 1.6rem;
line-height: 1.4;
font-family: $font-family-base;
letter-spacing: -0.2px;
font-weight: 200;
margin-bottom: 10px;
@include media-breakpoint-up(md) {
font-size: 1.6rem;
}
}
|