2-Sprachen (DE,EN)

This commit is contained in:
2026-01-16 14:45:22 +00:00
parent 48ac8e97bc
commit 6fca4087da
7 changed files with 414 additions and 55 deletions

View File

@@ -18,6 +18,34 @@ body {
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
overflow: hidden;
position: relative;
}
.language-switcher {
position: absolute;
top: 20px;
right: 20px;
z-index: 1000;
}
.lang-button {
background: rgba(255, 255, 255, 0.9);
border: 2px solid #667eea;
color: #667eea;
padding: 8px 16px;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
font-size: 0.9em;
transition: all 0.2s;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.lang-button:hover {
background: #667eea;
color: white;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.header {

View File

@@ -21,6 +21,34 @@ body {
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
overflow: hidden;
position: relative;
}
.language-switcher {
position: absolute;
top: 20px;
right: 20px;
z-index: 1000;
}
.lang-button {
background: rgba(255, 255, 255, 0.9);
border: 2px solid #11998e;
color: #11998e;
padding: 8px 16px;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
font-size: 0.9em;
transition: all 0.2s;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.lang-button:hover {
background: #11998e;
color: white;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(17, 153, 142, 0.3);
}
.header {