Initial commit – lokale Dateien hochgeladen

This commit is contained in:
Alexander-Stosic 2025-07-29 19:10:33 +02:00
parent 5bdf649ce1
commit 0db3bb9207
21 changed files with 907 additions and 616 deletions

View file

@ -14,38 +14,36 @@
font-style: normal;
}
// Using Variables for Font Families
$font-primary: 'Open Sans', sans-serif;
$font-secondary: 'Open Sans Semibold', sans-serif;
$color-heading-h2: #046e6e; // Türkis für h2
body {
line-height: 1.5;
font-family: $font-primary;
-webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: $font-secondary;
font-weight: 400;
// keine Farbe, Standardfarbe übernehmen
}
h1,
h2,
h3,
h4,
h5,
h6 {
h2 {
font-family: $font-secondary;
font-weight: 400;
color: $color-heading-h2; // Nur h2 in Türkis
font-size: $h2;
@include mobile {
font-size: $h2-sm;
}
}
h1 {
@ -64,14 +62,6 @@ h1 {
}
}
h2 {
font-size: $h2;
@include mobile {
font-size: $h2-sm;
}
}
h3 {
font-size: $h3;
}
@ -81,7 +71,7 @@ h4 {
}
p {
color: darken( $light, 49.41);
color: black;
font-size: $font-size;
font-family: $font-secondary;
}