Add styles for language switcher button

This commit is contained in:
vista-man
2025-02-20 11:30:54 +01:00
parent 4ef9d95d3e
commit 2c7bcfaa68

View File

@@ -315,3 +315,21 @@ body {
opacity: 0; /* Hide the logo */
visibility: hidden; /* Ensure the logo is not clickable */
}
.language-switcher {
position: fixed;
bottom: 20px; /* Position at the bottom */
left: 20px; /* Position at the left */
background-color: #ff8c00;
color: white;
padding: 10px 20px;
border-radius: 25px;
cursor: pointer;
font-size: 1em;
transition: all 0.3s ease;
z-index: 1100; /* Ensure it is above other elements */
}
.language-switcher:hover {
background-color: #e65c00;
}