DigitalConsumer.ISS/src/styles/common-typography-styles.scss
2025-12-10 11:29:02 -05:00

127 lines
No EOL
2.1 KiB
SCSS

//Typography
p,
body {
font-size: 1rem;
line-height: 1.625rem;
font-weight: 400;
}
//Headings
//add helper fw-bold to any element to get bold style (500)
h1,
.h1 {
line-height: 1.325;
font-weight: 300;
}
h2,
.h2 {
line-height: 1.325;
font-weight: 300;
}
h3,
.h3 {
line-height: 1.375;
font-weight: 300;
}
h4,
.h4 {
line-height: 1.6;
font-weight: 300;
}
h5,
.h5 {
line-height: 1.325;
font-weight: 400;
}
h6,
.h6 {
line-height: 1.7;
text-transform: uppercase;
}
.small {
font-size: .875rem;
line-height: 1.7;
font-weight: 400;
}
.small-strong {
font-size: .875rem;
line-height: 1.7;
font-weight: 500;
}
label,
.label {
font-size: 1rem;
line-height: 1.5;
font-weight: 400;
}
caption,
.caption {
font-size: .75rem;
line-height: 1.7;
font-weight: 400;
}
// Urbanist Fonts
@font-face {
font-family: "Urbanist";
src:
url("@/assets/fonts/Urbanist-Regular.woff2") format("woff2"),
url("@/assets/fonts/Urbanist-Regular.woff") format("woff");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Urbanist";
src:
url("@/assets/fonts/Urbanist-SemiBold.woff2") format("woff2"),
url("@/assets/fonts/Urbanist-SemiBold.woff") format("woff");
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: "Urbanist";
src:
url("@/assets/fonts/Urbanist-Bold.woff2") format("woff2"),
url("@/assets/fonts/Urbanist-Bold.woff") format("woff");
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "Urbanist";
src:
url("@/assets/fonts/Urbanist-ExtraBold.woff2") format("woff2"),
url("@/assets/fonts/Urbanist-ExtraBold.woff") format("woff");
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: "Urbanist";
src:
url("@/assets/fonts/Urbanist-MediumItalic.woff2") format("woff2"),
url("@/assets/fonts/Urbanist-MediumItalic.woff") format("woff");
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: "Urbanist";
src:
url("@/assets/fonts/Urbanist-BoldItalic.woff2") format("woff2"),
url("@/assets/fonts/Urbanist-BoldItalic.woff") format("woff");
font-weight: 700;
font-style: italic;
}