Fixup fonts

This commit is contained in:
Johannes Zellner
2026-02-05 15:08:30 +01:00
parent a7de7fb286
commit e23856bf10
12 changed files with 31 additions and 36 deletions

View File

@@ -4,8 +4,6 @@
--card-background: #f7f7f8;
--navbar-background: #f3f4f6;
--pankow-text-color: black;
--font-weight-normal: 400;
--font-weight-bold: 500;
}
@media (prefers-color-scheme: dark) {
@@ -20,8 +18,8 @@
html, body {
font-size: 14px; /* this also defines the overall widget size as all sizes are in rem */
font-family: var(--font-family);
font-weight: var(--font-weight-normal);
font-family: var(--pankow-font-family);
font-weight: var(--pankow-font-weight-normal);
height: 100%;
width: 100%;
padding: 0;
@@ -38,10 +36,6 @@ html, body {
}
}
b {
font-weight: var(--font-weight-bold);
}
.shadow {
box-shadow: 0 2px 5px rgba(0,0,0,.1);
}
@@ -52,7 +46,7 @@ b {
h1, h2, h3, h4, h5 {
font-family: var(--font-family--header);
font-weight: var(--font-weight-bold);
font-weight: var(--pankow-font-weight-bold);
}
h1 {
@@ -207,14 +201,14 @@ form .pankow-checkbox {
.warning-label {
margin-top: 6px;
color: #8a6d3b;
font-weight: var(--font-weight-bold);
font-weight: var(--pankow-font-weight-bold);
font-size: 12px;
}
.error-label {
margin-top: 6px;
color: var(--pankow-color-danger);
font-weight: var(--font-weight-bold);
font-weight: var(--pankow-font-weight-bold);
font-size: 12px;
}
@@ -266,7 +260,7 @@ form .pankow-checkbox {
}
.info-label {
font-weight: var(--font-weight-bold);
font-weight: var(--pankow-font-weight-bold);
text-wrap: nowrap;
}