Initial commit

This commit is contained in:
tfw
2025-04-23 17:04:47 +02:00
commit 65e0169c37
128 changed files with 10250 additions and 0 deletions
File diff suppressed because one or more lines are too long
+280
View File
@@ -0,0 +1,280 @@
// Module importieren
@import 'modules/team';
// satware.ai CI-Anpassungen
// Assistant Font lokal einbinden
@font-face {
font-family: 'Assistant';
font-style: normal;
font-weight: 200;
src: url('../assets/fonts/assistant-v19-latin-200.woff2') format('woff2');
font-display: swap;
}
@font-face {
font-family: 'Assistant';
font-style: normal;
font-weight: 400;
src: url('../assets/fonts/assistant-v19-latin-regular.woff2') format('woff2');
font-display: swap;
}
@font-face {
font-family: 'Assistant';
font-style: normal;
font-weight: 700;
src: url('../assets/fonts/assistant-v19-latin-700.woff2') format('woff2');
font-display: swap;
}
// Schriftart auf "Assistant" setzen
:root {
--md-text-font: "Assistant";
--md-code-font: "Assistant";
}
// Dark Theme optimieren (schwarzer Hintergrund nach CI)
[data-md-color-scheme="slate"] {
--md-default-bg-color: #000000;
--md-default-fg-color: #ffffff;
--md-default-fg-color--light: rgba(255, 255, 255, 0.8);
--md-default-fg-color--lighter: rgba(255, 255, 255, 0.54);
--md-default-fg-color--lightest: rgba(255, 255, 255, 0.07);
// Primär- und Akzentfarben gemäß satware CI
--md-primary-fg-color: #521370; // Primärfarbe: satware Violett
--md-primary-fg-color--light: #7e3a9e; // Helle Variante
--md-primary-fg-color--dark: #3c0e52; // Dunkle Variante
--md-accent-fg-color: #8a44bd; // Akzentfarbe: Helleres Violett
// Link-Farbe anpassen
--md-typeset-a-color: #9d65cf; // Helleres Violett für Links
}
h1,h2,h3,h4,h5,h6 {
color: #fff;
}
h1,h2,h3{
&:after{
content: "";
background: #fff;
position: relative;
height: 6px;
width: 40px;
display: block;
margin-top: 0.6rem;
margin-bottom: -0.3rem;
}
}
.md-typeset h1 {
color: #fff;
}
h1{
&:after{
height: 6px;
width: 40px;
margin-top: 0.6rem;
margin-bottom: -0.3rem;
}
}
.md-header,
.md-tabs{
background-color: #000;
}
.md-tabs__item{
text-transform: uppercase;
font-weight: 700;
}
.md-search__input{
text-transform: uppercase;
font-size: 0.7rem;
font-weight: 400;
opacity: 1;
color: #fff;
}
.md-search-result__list{
h1,h2,h3,h4,h5,h6{
&:after{
content: none;
}
}
}
.md-social__link {
display: inline-block;
height: 1rem;
text-align: center;
width: 1rem;
}
.md-search-result__meta{
text-transform: uppercase;
font-size: 0.7rem;
font-weight: 400;
opacity: 1;
color: #fff;
}
// Footer Navigation für zusätzliche Links
.md-footer-meta .md-footer-meta__inner {
.md-footer-copyright {
width: auto;
margin: auto 1rem 0.5rem 0;
}
}
.md-footer-meta.md-typeset a{
color: #fff !important;
}
.md-footer-meta {
background-color: #000;
}
// Füge zusätzliche Navigation im Footer hinzu
.md-footer-custom-links {
display: flex;
flex-wrap: wrap;
padding: 0.5rem 0;
text-transform: uppercase;
a {
color: var(--md-footer-fg-color);
font-size: 0.75rem;
margin-right: 1rem;
margin-bottom: 0.5rem;
&:hover {
color: var(--md-footer-fg-color--light);
text-decoration: underline;
}
}
}
// Verbessere Lesbarkeit von Code auf dunklem Hintergrund
.md-typeset code {
background-color: rgba(255, 255, 255, 0.07);
color: #e2e2e2;
}
.md-nav__container>.md-nav__link:first-child {
text-transform: uppercase;
}
.md-nav__title{
text-transform: uppercase;
color: #fff;
}
// Buttons im CI-Design
.md-button {
border-radius: 0 !important;
color: #fff !important;
&.md-button--primary {
background-color: var(--md-primary-fg-color);
border-color: var(--md-primary-fg-color);
color: white;
&:hover {
background-color: var(--md-primary-fg-color--light);
border-color: var(--md-primary-fg-color--light);
}
}
}
// Karten-Styling für die Startseite
.grid.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin: 2rem 0;
> * {
border-radius: 6px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
padding: 1.5rem;
background-color: rgba(82, 19, 112, 0.05);
transition: all 0.3s ease;
&:hover {
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
transform: translateY(-3px);
background-color: rgba(82, 19, 112, 0.1);
}
}
h2 {
margin-top: 0.5rem;
font-size: 1.25rem;
color: var(--md-primary-fg-color);
}
.icon-card {
width: 48px;
height: 48px;
margin-bottom: 0.5rem;
}
}
// Button-Styling
.md-button {
border-radius: 4px;
transition: all 0.2s ease;
&.md-button--primary {
background-color: var(--md-primary-fg-color);
border-color: var(--md-primary-fg-color);
color: white;
&:hover {
background-color: var(--md-primary-fg-color--light);
border-color: var(--md-primary-fg-color--light);
}
}
}
// Header-Anpassungen
// Seitentitel ausblenden
.md-header__title {
.md-header__topic {
// Der erste Eintrag (Seitenname) wird ausgeblendet
&:first-child {
display: none;
}
}
}
// Logo vergrößern
.md-header__button.md-logo {
padding: 0.2rem;
padding-left: 0;
img, svg {
width: 240px; // Größeres Logo (Standardwert ist 40px)
height: auto;
}
}
// Navigationsleiste anpassen
.md-header {
height: auto;
&__inner {
padding: 0.5rem;
}
}
+236
View File
@@ -0,0 +1,236 @@
// Team-Seite Styling für satware® AI Agenten
// Überschriften in Großbuchstaben und Assistant Bold
h1, h2, h3, h4, h5, h6 {
text-transform: uppercase !important;
font-family: 'Assistant', sans-serif !important;
font-weight: 700 !important;
}
// Team Header
.team-header {
text-align: left;
max-width: 800px;
margin: 0 auto 3rem auto;
h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: var(--md-primary-fg-color);
text-align: left;
&:after{
content: none;
}
}
p {
font-size: 1.1rem;
opacity: 0.9;
text-align: left;
}
}
// Team Grid Layout
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
margin: 2rem 0;
}
// Einzelner Agent
.team-agent {
background-color: rgba(82, 19, 112, 0.03);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
height: 100%;
&:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.team-agent-image {
height: 300px;
overflow: hidden;
img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 20%; // Besserer Bildausschnitt für Gesichter
transition: transform 0.5s ease;
&:hover {
transform: scale(1.05);
}
}
}
.team-agent-info {
padding: 1.5rem;
display: flex;
flex-direction: column;
flex-grow: 1;
text-align: left;
h3 {
margin-top: 0;
font-size: 1.3rem;
color: var(--md-accent-fg-color); // Geändert zu Akzentfarbe
margin-bottom: 0.1rem; // Verringerter Abstand
text-align: left;
&:after{
content: none;
}
.agent-surname {
//opacity: 0.8;
}
}
.team-agent-position {
font-size: 0.7rem;
font-weight: 400;
opacity: .9;
color: var(--md-typeset-a-color);
margin-bottom: 0.1rem;
text-align: left;
text-transform: uppercase;
margin-top: 0.1rem;
min-height: 2rem;
}
.team-agent-description {
font-size: 0.8rem;
line-height: 1.4;
text-align: left;
margin-bottom: 0.75rem;
}
}
}
// Expertise-Bereich
.team-expertise {
background-color: rgba(82, 19, 112, 0.05);
border-radius: 8px;
margin-top: 3rem;
h2 {
color: var(--md-primary-fg-color);
margin-top: 0;
margin-bottom: 1.5rem;
text-align: left;
}
ul.expertise-list {
display: block;
//grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
//gap: 1rem;
margin: 0;
padding: 0;
list-style-position: inside;
li {
margin-bottom: 0.1rem;
margin-left: 0;
text-align: left;
font-size: 0.95rem;
}
}
}
// Kontakt-Bereich
.team-contact {
margin-top: 4rem;
text-align: left;
h2 {
color: var(--md-primary-fg-color);
margin-bottom: 1rem;
text-align: left;
}
p {
max-width: 800px;
margin: 0 0 1.5rem 0;
text-align: left;
}
.contact-details {
display: flex;
flex-direction: column;
gap: 0.5rem;
margin-bottom: 2rem;
.contact-item {
margin-bottom: 0.5rem;
text-align: left;
a {
color: var(--md-primary-fg-color);
}
}
}
.social-links {
display: flex;
gap: 1.5rem;
margin-top: 1.5rem;
margin-bottom: 2rem;
a {
color: var(--md-primary-fg-color);
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
}
// Responsives Verhalten
@media (max-width: 768px) {
.team-grid {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.team-header {
h2 {
font-size: 1.6rem;
}
p {
font-size: 1rem;
}
}
.expertise-list {
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
}
.team-agent {
.team-agent-image {
height: 220px;
}
.team-agent-info {
padding: 1.2rem;
h3 {
font-size: 1.2rem;
}
.team-agent-description {
font-size: 0.9rem;
}
}
}
}