94 lines
1.4 KiB
SCSS
94 lines
1.4 KiB
SCSS
// Update font file names and ensure no spaces for better compatibility.
|
|
@font-face {
|
|
font-family: 'Barlow';
|
|
src: url('../Fonts/Barlow-Medium.woff2') format('woff2');
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Barlow';
|
|
src: url('../Fonts/Barlow-Bold.woff2') format('woff2');
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Barlow', sans-serif;
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
|
|
@media (min-width: $breakpoint-md) {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Barlow', sans-serif;
|
|
color: var(--color-primary);
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3rem;
|
|
|
|
/* @media (min-width: $breakpoint-md) { */
|
|
/* font-size: 4.5rem; */
|
|
/* } */
|
|
}
|
|
|
|
h2 {
|
|
font-size: 2rem;
|
|
|
|
/* @media (min-width: $breakpoint-md) { */
|
|
/* font-size: 3rem; */
|
|
/* } */
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.75rem;
|
|
|
|
/* @media (min-width: $breakpoint-md) { */
|
|
/* font-size: 1.5rem; */
|
|
/* } */
|
|
}
|
|
|
|
h4 {
|
|
font-size: 1.125rem;
|
|
|
|
/* @media (min-width: $breakpoint-md) { */
|
|
/* font-size: 1.5rem; */
|
|
/* } */
|
|
}
|
|
|
|
h5 {
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
h6 {
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
a {
|
|
color: var(--bs-primary);
|
|
text-decoration: none;
|
|
font-weight: 700;
|
|
|
|
&:hover {
|
|
color: var(--bs-primary)
|
|
}
|
|
}
|
|
|
|
button, .btn {
|
|
font-family: 'Barlow', sans-serif;
|
|
font-weight: 700;
|
|
}
|