Bug Fixing, buttons nicht sichtbar im hellen modus, Logout zu weit rechts. Von hell auf dunkel standard
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user