43 lines
928 B
CSS
43 lines
928 B
CSS
/* =========================
|
||
Inter Font – lokal
|
||
========================= */
|
||
|
||
@font-face {
|
||
font-family: 'Inter';
|
||
src: url('/fonts/inter/Inter-Regular.woff2') format('woff2');
|
||
font-weight: 400;
|
||
font-style: normal;
|
||
font-display: swap;
|
||
}
|
||
|
||
@font-face {
|
||
font-family: 'Inter';
|
||
src: url('/fonts/inter/Inter-SemiBold.woff2') format('woff2');
|
||
font-weight: 600;
|
||
font-style: normal;
|
||
font-display: swap;
|
||
}
|
||
|
||
@font-face {
|
||
font-family: 'Inter';
|
||
src: url('/fonts/inter/Inter-Bold.woff2') format('woff2');
|
||
font-weight: 700;
|
||
font-style: normal;
|
||
font-display: swap;
|
||
}
|
||
|
||
/* Plusfit – Custom Font erzwingen */
|
||
body {
|
||
font-family: 'Inter', system-ui, sans-serif !important;
|
||
}
|
||
:root {
|
||
--bs-body-font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||
}
|
||
|
||
.empty-field {
|
||
color: #999;
|
||
font-style: italic;
|
||
background: #fff3cd;
|
||
}
|
||
|