-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎨 style & fix: Layout-Optimierung und Vorbereitung für Themes
- 📏 Abstände im gesamten Layout verbessert für konsistentere Darstellung - 📄 Automatischer Seitenumbruch bei Noten implementiert, wenn diese über das Seitenende hinausgehen -⚠️ Hinweis: Manueller Seitenumbruch muss vor dem Titel eingefügt werden - 🎨 Template-CSS optimiert für einfachere Anpassbarkeit - 🔧 Vorbereitung für zukünftige Theme-Implementierung - 🔢 Abstände als Konstanten definiert für einheitliche und leicht änderbare Werte - Quickfix: Sessions laden - Server: Kontaktmail hinzugefügt für Homepage - Lizenz hinzugefügt
- Loading branch information
Simon Luthe
authored and
Simon Luthe
committed
Aug 8, 2024
1 parent
0a17b76
commit 8904868
Showing
16 changed files
with
1,394 additions
and
280 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<!DOCTYPE html> | ||
<html lang="de"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>HymnoScribe Kontaktanfrage</title> | ||
<style> | ||
body { | ||
font-family: 'Jost', Arial, sans-serif; | ||
line-height: 1.6; | ||
color: #333333; | ||
max-width: 600px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
background-color: #f4f4f4; | ||
} | ||
.container { | ||
background-color: #ffffff; | ||
padding: 30px; | ||
border-radius: 5px; | ||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); | ||
} | ||
.logo { | ||
text-align: center; | ||
margin-bottom: 20px; | ||
} | ||
.logo img { | ||
max-width: 200px; | ||
height: auto; | ||
} | ||
h1 { | ||
color: #1a5f7a; | ||
font-size: 24px; | ||
margin-bottom: 20px; | ||
} | ||
.content { | ||
background-color: #f9f9f9; | ||
padding: 15px; | ||
border-radius: 5px; | ||
margin-bottom: 20px; | ||
} | ||
.button { | ||
display: inline-block; | ||
background-color: #1a5f7a; | ||
color: #ffffff; | ||
padding: 10px 20px; | ||
text-decoration: none; | ||
border-radius: 5px; | ||
} | ||
.button:hover { | ||
background-color: #154c61; | ||
} | ||
.signature { | ||
margin-top: 30px; | ||
padding-top: 15px; | ||
border-top: 1px solid #dddddd; | ||
font-size: 14px; | ||
color: #666666; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="logo"> | ||
<img src="[LOGO_URL]" alt="HymnoScribe Logo"> | ||
</div> | ||
|
||
<h1>Neue Kontaktanfrage</h1> | ||
|
||
<div class="content"> | ||
[Hauptinhalt] | ||
</div> | ||
|
||
<a href="[ButtonUrl]" class="button">[ButtonText]</a> | ||
|
||
<div class="signature"> | ||
<p> | ||
Mit freundlichen Grüßen,<br> | ||
Ihr HymnoScribe Team | ||
</p> | ||
<p> | ||
HymnoScribe - Der Liedblatt Generator<br> | ||
© 2024 Pastor Simon Luthe. Alle Rechte vorbehalten. | ||
</p> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.