Added stylesheet, demo docs etc.

This commit is contained in:
2025-12-17 13:11:26 +01:00
parent 4c5e42fcfd
commit 08d6c593da
17 changed files with 530 additions and 160 deletions

29
BionxControl.qss Normal file
View File

@@ -0,0 +1,29 @@
/* app.qss */
/* Alle QWidgets bekommen diesen Font */
QWidget {
font-size: 14px;
font-family: "Segoe UI", sans-serif;
}
/* Spezifisches Styling für Buttons */
QPushButton {
background-color: #0078d7;
color: white;
border-radius: 4px;
padding: 6px;
}
QPushButton:hover {
background-color: #1084e3;
}
QPushButton:pressed {
background-color: #005a9e;
}
/* Styling anhand von Objektnamen (ID) */
#loginButton {
font-weight: bold;
background-color: green;
}