102 lines
2.2 KiB
CSS
102 lines
2.2 KiB
CSS
.body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.bodyFontOnly {
|
|
font-style: normal;
|
|
}
|
|
|
|
.bold {
|
|
font-family: var(--typography-Body-Bold-fontFamily);
|
|
font-size: var(--typography-Body-Bold-fontSize);
|
|
font-weight: 500;
|
|
letter-spacing: var(--typography-Body-Bold-letterSpacing);
|
|
line-height: var(--typography-Body-Bold-lineHeight);
|
|
text-decoration: var(--typography-Body-Bold-textDecoration);
|
|
}
|
|
|
|
.regular {
|
|
font-family: var(--typography-Body-Regular-fontFamily);
|
|
font-size: var(--typography-Body-Regular-fontSize);
|
|
font-weight: 400;
|
|
letter-spacing: var(--typography-Body-Regular-letterSpacing);
|
|
line-height: var(--typography-Body-Regular-lineHeight);
|
|
text-decoration: var(--typography-Body-Regular-textDecoration);
|
|
}
|
|
|
|
.underlined {
|
|
font-family: var(--typography-Body-Underline-fontFamily);
|
|
font-size: var(--typography-Body-Underline-fontSize);
|
|
font-weight: 500;
|
|
letter-spacing: var(--typography-Body-Underline-letterSpacing);
|
|
line-height: var(--typography-Body-Underline-lineHeight);
|
|
text-decoration: var(--typography-Body-Underline-textDecoration);
|
|
}
|
|
|
|
.uppercase {
|
|
font-family: var(--typography-Body-Regular-fontFamily);
|
|
font-size: var(--typography-Body-Regular-fontSize);
|
|
font-weight: var(--typography-Body-Bold-fontWeight);
|
|
letter-spacing: var(--typography-Body-Regular-letterSpacing);
|
|
line-height: var(--typography-Body-Regular-lineHeight);
|
|
text-decoration: var(--typography-Body-Regular-textDecoration);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.textAlignCenter {
|
|
text-align: center;
|
|
}
|
|
|
|
.textAlignLeft {
|
|
text-align: left;
|
|
}
|
|
|
|
.black {
|
|
color: var(--Main-Grey-100);
|
|
}
|
|
|
|
.burgundy {
|
|
color: var(--Scandic-Brand-Burgundy);
|
|
}
|
|
|
|
.grey {
|
|
color: var(--UI-Grey-60);
|
|
}
|
|
|
|
.pale {
|
|
color: var(--Scandic-Brand-Pale-Peach);
|
|
}
|
|
|
|
.red {
|
|
color: var(--Scandic-Brand-Scandic-Red);
|
|
}
|
|
|
|
.textMediumContrast {
|
|
color: var(--UI-Text-Medium-contrast);
|
|
}
|
|
|
|
.textHighContrast {
|
|
color: var(--UI-Text-High-contrast);
|
|
}
|
|
|
|
.white {
|
|
color: var(--UI-Opacity-White-100);
|
|
}
|
|
|
|
.peach50 {
|
|
color: var(--Primary-Dark-On-Surface-Accent);
|
|
}
|
|
|
|
.peach80 {
|
|
color: var(--Base-Text-Medium-contrast);
|
|
}
|
|
|
|
.uiTextHighContrast {
|
|
color: var(--UI-Text-High-contrast);
|
|
}
|
|
|
|
.uiTextPlaceholder {
|
|
color: var(--UI-Text-Placeholder);
|
|
}
|