mirror of
https://github.com/Alvin-Zilverstand/Schoolkantine.git
synced 2026-03-07 05:53:00 +01:00
Add styles for language switcher button
This commit is contained in:
@@ -315,3 +315,21 @@ body {
|
|||||||
opacity: 0; /* Hide the logo */
|
opacity: 0; /* Hide the logo */
|
||||||
visibility: hidden; /* Ensure the logo is not clickable */
|
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;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user