init webseite ts and claude

This commit is contained in:
Philippe Torrel
2026-07-31 13:02:11 +02:00
parent e375bf23bc
commit 56295802c0
617 changed files with 94590 additions and 5826 deletions

View File

@@ -0,0 +1,44 @@
// Allgemeine Formatierungen für die ganze Webanwendung
*,
html {
box-sizing: border-box;
}
html,
body {
height: 100%;
padding: 0;
margin: 0;
}
body {
font-family: $font-copy;
}
// Sticky footer
body {
display: flex;
flex-direction: column;
}
main,
#main {
flex: 1 0 auto;
}
body > footer,
.footer-main {
flex-shrink: 0;
}
// /Sticky footer
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: $font-headline;
font-weight: 700;
}