112 lines
2.4 KiB
CSS
112 lines
2.4 KiB
CSS
.heading {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Temporarily remove h1 styling until design tokens är updated */
|
|
|
|
/* .h1 {
|
|
font-family: var(--typography-Title-1-fontFamily);
|
|
font-size: clamp(
|
|
var(--typography-Title-1-Mobile-fontSize),
|
|
2.6vw + 27px,
|
|
var(--typography-Title-1-Desktop-fontSize)
|
|
);
|
|
letter-spacing: var(--typography-Title-1-letterSpacing);
|
|
line-height: var(--typography-Title-1-lineHeight);
|
|
text-decoration: var(--typography-Title-1-textDecoration);
|
|
} */
|
|
|
|
.h1 {
|
|
font-family: var(--typography-Title-2-fontFamily);
|
|
font-size: clamp(
|
|
var(--typography-Title-2-Mobile-fontSize),
|
|
2vw + 20px,
|
|
var(--typography-Title-2-Desktop-fontSize)
|
|
);
|
|
letter-spacing: var(--typography-Title-2-letterSpacing);
|
|
line-height: var(--typography-Title-2-lineHeight);
|
|
text-decoration: var(--typography-Title-2-textDecoration);
|
|
}
|
|
|
|
.h2 {
|
|
font-family: var(--typography-Title-3-fontFamily);
|
|
font-size: clamp(
|
|
var(--typography-Title-3-Mobile-fontSize),
|
|
0.6vw + 27px,
|
|
var(--typography-Title-3-Desktop-fontSize)
|
|
);
|
|
letter-spacing: var(--typography-Title-3-letterSpacing);
|
|
line-height: var(--typography-Title-3-lineHeight);
|
|
text-decoration: var(--typography-Title-3-textDecoration);
|
|
}
|
|
|
|
.h3 {
|
|
font-family: var(--typography-Title-4-fontFamily);
|
|
font-size: clamp(
|
|
var(--typography-Title-4-Mobile-fontSize),
|
|
0.6vw + 19px,
|
|
var(--typography-Title-4-Desktop-fontSize)
|
|
);
|
|
letter-spacing: var(--typography-Title-4-letterSpacing);
|
|
line-height: var(--typography-Title-4-lineHeight);
|
|
text-decoration: var(--typography-Title-4-textDecoration);
|
|
}
|
|
|
|
.h4 {
|
|
font-family: var(--typography-Title-5-fontFamily);
|
|
font-size: clamp(
|
|
var(--typography-Title-5-Mobile-fontSize),
|
|
0.3vw + 17px,
|
|
var(--typography-Title-5-Desktop-fontSize)
|
|
);
|
|
letter-spacing: var(--typography-Title-5-letterSpacing);
|
|
line-height: var(--typography-Title-5-lineHeight);
|
|
text-decoration: var(--typography-Title-5-textDecoration);
|
|
}
|
|
|
|
.capitalize {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.regular {
|
|
text-transform: none;
|
|
}
|
|
|
|
.uppercase {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
|
|
.left {
|
|
text-align: left;
|
|
}
|
|
|
|
.black {
|
|
color: var(--Main-Grey-100);
|
|
}
|
|
|
|
.burgundy {
|
|
color: var(--Scandic-Brand-Burgundy);
|
|
}
|
|
|
|
.pale {
|
|
color: var(--Scandic-Brand-Pale-Peach);
|
|
}
|
|
|
|
.peach80 {
|
|
color: var(--Scandic-Peach-80);
|
|
}
|
|
|
|
.red {
|
|
color: var(--Scandic-Brand-Scandic-Red);
|
|
}
|
|
|
|
.white {
|
|
color: var(--UI-Opacity-White-100);
|
|
}
|