35 lines
830 B
CSS
35 lines
830 B
CSS
.text {
|
|
font-family: var(--typography-Script-1-fontFamily);
|
|
text-transform: none;
|
|
}
|
|
|
|
.one {
|
|
font-size: clamp(
|
|
var(--typography-Script-1-Mobile-fontSize),
|
|
1.3vw + 14px,
|
|
var(--typography-Script-1-Desktop-fontSize)
|
|
);
|
|
font-weight: var(--typography-Script-1-fontWeight);
|
|
letter-spacing: var(--typography-Script-1-letterSpacing);
|
|
line-height: var(--typography-Script-1-lineHeight);
|
|
}
|
|
|
|
.two {
|
|
font-size: clamp(
|
|
var(--typography-Script-2-Mobile-fontSize),
|
|
0.6vw + 15px,
|
|
var(--typography-Script-2-Desktop-fontSize)
|
|
);
|
|
font-weight: var(--typography-Script-2-fontWeight);
|
|
letter-spacing: var(--typography-Script-2-letterSpacing);
|
|
line-height: var(--typography-Script-2-lineHeight);
|
|
}
|
|
|
|
.burgundy {
|
|
color: var(--Scandic-Brand-Burgundy);
|
|
}
|
|
|
|
.pale {
|
|
color: var(--Scandic-Brand-Pale-Peach);
|
|
}
|