Standardized H2 headings with a new `.h2-as-text` class for better alignment and styling. Adjusted footer and layout widths to 1200px for improved responsiveness. Updated the KI-Agents profiles, webinar section, and various style modules to ensure consistent formatting, better readability, and cleaner design.
34 lines
458 B
SCSS
34 lines
458 B
SCSS
// Base HTML and root settings
|
|
|
|
html {
|
|
font-size: 100% !important;
|
|
}
|
|
|
|
// Schriftart auf "Assistant" setzen
|
|
:root {
|
|
--md-text-font: "Assistant";
|
|
--md-code-font: "Assistant";
|
|
}
|
|
|
|
// Transition mixin for reuse
|
|
@mixin transition {
|
|
transition: all 0.5s ease;
|
|
}
|
|
|
|
// General layout settings
|
|
.md-grid {
|
|
max-width: 1200px;
|
|
}
|
|
|
|
.satag--padding-container {
|
|
padding: 4rem 0;
|
|
}
|
|
|
|
.satag-trademark {
|
|
text-transform: lowercase;
|
|
}
|
|
|
|
strong{
|
|
font-weight: bold;
|
|
}
|