Files
web/components/TempDesignSystem/Subtitle/subtitle.module.css
2024-05-30 17:56:56 +02:00

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);
}