36 lines
979 B
CSS
36 lines
979 B
CSS
.body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.bold {
|
|
font-family: var(--typography-Footnote-Bold-fontFamily);
|
|
font-size: var(--typography-Footnote-Bold-fontSize);
|
|
font-weight: var(--typography-Footnote-Bold-fontWeight);
|
|
letter-spacing: var(--typography-Footnote-Bold-letterSpacing);
|
|
line-height: var(--typography-Footnote-Bold-lineHeight);
|
|
text-decoration: var(--typography-Footnote-Bold-textDecoration);
|
|
}
|
|
|
|
.regular {
|
|
font-family: var(--typography-Footnote-Regular-fontFamily);
|
|
font-size: var(--typography-Footnote-Regular-fontSize);
|
|
font-weight: var(--typography-Footnote-Regular-fontWeight);
|
|
letter-spacing: var(--typography-Footnote-Regular-letterSpacing);
|
|
line-height: var(--typography-Footnote-Regular-lineHeight);
|
|
text-decoration: var(--typography-Footnote-Regular-textDecoration);
|
|
}
|
|
|
|
.black {
|
|
/* No black variable exist yet */
|
|
color: #000;
|
|
}
|
|
|
|
.burgundy {
|
|
color: var(--Scandic-Brand-Burgundy);
|
|
}
|
|
|
|
.pale {
|
|
color: var(--Scandic-Brand-Pale-Peach);
|
|
}
|