AMPERION_Webpage/assets/scss/_typography.scss

128 lines
2.2 KiB
SCSS
Raw Normal View History

2025-07-30 00:35:15 +02:00
// ===========================
// TYPOGRAPHY Schriftarten & Textstile
// ===========================
2025-06-06 18:12:46 +02:00
body {
2025-07-30 00:35:15 +02:00
font-family: 'Open Sans', sans-serif;
font-size: 16px;
line-height: 1.6;
color: #222;
2025-06-06 18:12:46 +02:00
-webkit-font-smoothing: antialiased;
2025-07-30 00:35:15 +02:00
-moz-osx-font-smoothing: grayscale;
2025-06-06 18:12:46 +02:00
}
2025-07-31 01:33:44 +02:00
.hero-subtitle {
font-size: clamp(1.25rem, 2.5vw, 1.75rem);
text-align: center;
color: $text-dark;
text-transform: uppercase;
letter-spacing: 0.12em;
line-height: 1.4;
margin-top: 1rem;
}
2025-07-30 00:35:15 +02:00
// ---------------------------
// Überschriften-Stile
// ---------------------------
h1 {
font-size: clamp(2.5rem, 5vw, 4rem); // ~32px auf Desktop
2025-07-30 00:35:15 +02:00
font-weight: 600;
line-height: 1.3;
margin-bottom: 1rem;
2025-08-14 22:28:22 +02:00
color: black //#046e6e;
2025-06-06 18:12:46 +02:00
}
2025-07-31 01:33:44 +02:00
h1.page-title {
font-size: clamp(2.5rem, 6vw, 4rem);
margin-top: 2rem;
text-transform: capitalize;
}
h2 {
2025-08-14 22:28:22 +02:00
font-size: clamp(2.5rem, 5vw, 4rem); // ~32px auf Desktop
font-weight: 600;
line-height: 1.3;
margin-bottom: 1rem;
color: #046e6e;
}
h3 {
font-size: clamp(2rem, 3vw, 2.5rem); // Reaktionsfähig statt fix
2025-07-30 00:35:15 +02:00
font-style: italic;
2025-06-06 18:12:46 +02:00
font-weight: 400;
2025-07-30 00:35:15 +02:00
line-height: 1.4;
margin-bottom: 5rem; // Erhöht den Abstand nach h2
2025-08-14 22:28:22 +02:00
color:black;
2025-07-30 00:35:15 +02:00
}
2025-08-14 22:28:22 +02:00
h4 {
font-size: clamp(1.8rem, 1.8vw, 2rem);
2025-07-30 00:35:15 +02:00
font-weight: normal;
line-height: 1.6;
margin-bottom: 1rem;
2025-07-31 01:33:44 +02:00
color: inherit;
color: #F5A623;
2025-06-06 18:12:46 +02:00
}
2025-08-14 22:28:22 +02:00
2025-07-31 01:33:44 +02:00
p {
2025-07-31 12:48:54 +02:00
font-style: normal;
font-size: clamp(1.5rem, 1.5vw, 1.8rem);
2025-07-31 01:33:44 +02:00
margin-bottom: 1.25rem;
line-height: 1.6;
}
2025-07-30 00:35:15 +02:00
// ---------------------------
// Textausrichtung
// ---------------------------
2025-06-06 18:12:46 +02:00
2025-07-30 00:35:15 +02:00
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }
2025-06-06 18:12:46 +02:00
2025-07-30 00:35:15 +02:00
// ---------------------------
// Text-Elemente
// ---------------------------
2025-06-06 18:12:46 +02:00
2025-07-30 00:35:15 +02:00
strong, b {
font-weight: 700;
2025-06-06 18:12:46 +02:00
}
2025-07-30 00:35:15 +02:00
p {
margin-bottom: 1.25rem;
2025-06-06 18:12:46 +02:00
}
2025-07-30 00:35:15 +02:00
// ---------------------------
// Listen
// ---------------------------
ul, ol {
padding-left: 1.5rem;
margin-bottom: 1.5rem;
}
li {
margin-bottom: 0.5rem;
line-height: 1.6;
}
// ---------------------------
// Links
// ---------------------------
a {
color: #046e6e;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #F5A623;
text-decoration: underline;
2025-06-06 18:12:46 +02:00
}