modified: templates/agb.html

modified:   templates/datenschutz.html
	modified:   templates/impressum.html
	modified:   templates/kontakt.html
This commit is contained in:
SimolZimol
2025-06-19 19:23:07 +02:00
parent 4f44d25d8e
commit 6f2f4f3b42
4 changed files with 94 additions and 16 deletions

View File

@@ -8,9 +8,32 @@
.container { max-width: 700px; margin: 60px auto; background: #181a20; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.18); padding: 40px 32px; }
h1 { color: #00aaff; }
.footer { color: #6c7380; font-size: 0.95em; margin-top: 40px; text-align: center; }
.nav { text-align: center; margin-bottom: 40px; }
.nav a { color: #00aaff; margin: 0 15px; text-decoration: none; }
.nav a.active { text-decoration: underline; }
.nav {
display: flex;
justify-content: center;
gap: 18px;
background: #181a20;
padding: 14px 0 10px 0;
border-radius: 12px 12px 0 0;
margin: -40px -32px 32px -32px;
box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.nav a {
color: #b0b6c3;
text-decoration: none;
padding: 8px 18px;
border-radius: 6px;
font-size: 1.08em;
font-weight: 500;
transition: background 0.2s, color 0.2s;
}
.nav a.active,
.nav a:hover {
background: #00aaff;
color: #fff;
font-weight: bold;
text-decoration: none;
}
</style>
</head>
<body>