initial commit

This commit is contained in:
2019-08-03 14:52:11 +02:00
commit 2edae6b463
11 changed files with 769 additions and 0 deletions

43
style.css Normal file
View File

@@ -0,0 +1,43 @@
QMainWindow {
background-color: #404040;
border-color: #edf2f4;
}
QPushButton {
background-color: #404040;
color: #edf2f4;
}
QPushButton:hover {
border: 1px solid #0077fd;
}
QLineEdit {
background-color: #404040;
color: #edf2f4;
border: 1px solid #0077fd;
}
QLineEdit:hover {
border: 1px solid #edf2f4;
}
QLabel {
color: #edf2f4;
}
QGroupBox {
color: #edf2f4;
border: 1px solid #0077fd;
margin-top: 5px;
}
QGroupBox::title {
subcontrol-origin: margin;
left: 5px;
padding: 0px 5px 0px 5px;
}
QLabel#lbl_volume:hover {
border: 1px solid #0077fd;
}