Bug Fixing, buttons nicht sichtbar im hellen modus, Logout zu weit rechts. Von hell auf dunkel standard

This commit is contained in:
Nirodan
2025-07-07 11:39:47 +02:00
parent 8d7b254306
commit 96b5fc1a81
7 changed files with 45 additions and 28 deletions
+18 -8
View File
@@ -1,14 +1,24 @@
/* buttons.css */
button {
background-color: var(--button-bg);
color: white;
padding: 10px 20px;
border: none;
padding: 0.8rem 1.2rem;
border-radius: 6px;
border-radius: 5px;
margin: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
font-weight: bold;
}
body:not(.dark-mode) button {
background-color: #f0f0f0;
color: #333;
border: 1px solid #ccc;
}
body.dark-mode button {
background-color: #444;
color: #fff;
border: 1px solid #888;
}
button:hover {
background-color: var(--button-hover);
}
background-color: #ccc;
}