Files
dialog-relations-website/packages/base/Resources/Public/Scss/abstracts/_fonts.scss
Dominik Polakovics 755168d0e6
Some checks failed
Build / switch-stage (push) Blocked by required conditions
Build / build (push) Successful in 4m22s
Build / deploy-stage (push) Has been cancelled
feat: spaces, link colors, card icon, card background and border
2025-04-22 22:17:48 +02:00

92 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;
@apply mb-4
}
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;
@apply text-primary hover:text-primary-dark;
}
button, .btn {
font-family: 'Barlow', sans-serif;
font-weight: 700;
}