Hauptseite
Erscheinungsbild
/* Container für die Boxen */ .bottom-box-container {
display: flex; justify-content: space-between; position: fixed; bottom: 0; left: 0; right: 0; padding: 10px; background-color: #f4f4f4; /* Hintergrund des Containers */ z-index: 9999;
}
/* Einzelne Box */ .bottom-box {
flex: 1; margin: 0 10px; padding: 20px; text-align: center; background-color: #007bff; /* Hintergrundfarbe der Box */ color: white; /* Textfarbe */ border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); cursor: pointer; text-decoration: none; transition: transform 0.2s, background-color 0.2s;
}
/* Hover-Effekt */ .bottom-box:hover {
background-color: #0056b3; /* Dunklere Farbe beim Hover */ transform: scale(1.05);
}
/* Responsiveness für kleinere Bildschirme */ @media (max-width: 768px) {
.bottom-box-container {
flex-direction: column;
align-items: center;
}
.bottom-box {
margin: 10px 0;
}
}
<a class="bottom-box" href="URL1">Elon-Wiki</a> <a class="bottom-box" href="URL2">Vamiratis</a> <a class="bottom-box" href="URL3">Whatever</a>