40 lines
599 B
SCSS
40 lines
599 B
SCSS
.Section {
|
|
display: block;
|
|
}
|
|
|
|
.Header {
|
|
font-family: $font-roboto;
|
|
font-weight: 300;
|
|
font-size: 32px;
|
|
line-height: 130%;
|
|
color: $color-text;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.Text {
|
|
font-family: $font-roboto;
|
|
font-weight: 400;
|
|
font-size: rem(16px);
|
|
line-height: 130%;
|
|
color: $color-text;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.List {
|
|
display: flex;
|
|
flex-direction: column;
|
|
list-style-type: disc;
|
|
margin-left: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.ListItem {
|
|
font-family: $font-roboto;
|
|
font-weight: 300;
|
|
font-size: 16px;
|
|
line-height: 130%;
|
|
color: $color-text;
|
|
list-style: unset;
|
|
}
|
|
|