38 lines
760 B
CSS
38 lines
760 B
CSS
.subtitle {
|
|
font-family: var(--typography-Subtitle-fontFamily);
|
|
font-size: var(--typography-Subtitle-Mobile-fontSize);
|
|
font-weight: var(--typography-Subtitle-fontWeight);
|
|
letter-spacing: var(--typography-Subtitle-letterSpacing);
|
|
line-height: var(--typography-Subtitle-lineHeight);
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.subtitle {
|
|
font-size: var(--typography-Subtitle-Tablet-estimate-fontSize);
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.subtitle {
|
|
font-size: var(--typography-Subtitle-Desktop-fontSize);
|
|
}
|
|
}
|
|
|
|
.regular {
|
|
text-transform: none;
|
|
}
|
|
|
|
.uppercase {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.burgundy {
|
|
color: var(--Scandic-Brand-Burgundy);
|
|
}
|
|
|
|
.pale {
|
|
color: var(--Scandic-Brand-Pale-Peach);
|
|
}
|