Initial commit: Backup der Webseiten

- zoesch.de
- blitzkiste.net
- gruene-hassberge (norbert.zoesch.de)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Felix Zösch
2025-12-13 01:17:15 +01:00
commit 07c290a453
4607 changed files with 1202735 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
@charset "UTF-8";
/* CSS Document */
html, body {
border: 0;
height: 100%;
margin: 0;
padding: 0;
width: 100%;
}
body {
-webkit-transition: background-color 0.8s;
transition: background-color 0.8s;
}
.main {
position: absolute;
top: 50%;
text-align: center;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width: 100%;
}
h1, h2, h3 {
font-family: 'Open Sans', sans-serif;
font-weight: 300;
}
h1 {
color: #fff;
font-size: 120px;
}
h2 {
color: #fff;
font-size: 30px;
margin-top: 0px;
margin-bottom: 30px;
}
h3 {
color: rgba(255, 255, 255, 0.2);
font-size: 15px;
margin-top: 5px;
margin-bottom: 5px;
}
@media (max-width: 767px) {
h1 {font-size: 60px;}
h2 {font-size: 25px;}
h3 {font-size: 12px;}
}