Style sheets for the 3 widgets of the GUI:

Main window, initial start window, and
info window (which is something like a popup showing important messages)
This commit is contained in:
Klaus Basan
2014-01-13 01:15:20 +01:00
parent b9ad793dd5
commit 9ff197ff2c
4 changed files with 311 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
QWidget {
font-family: arial-rounded;
font: bold 10px;
color: black; /** font **/
}
QPushButton {
background-color: rgba(255, 255, 0, 175);
border-style: solid;
border-width:1px;
border-radius:0px;
border-color: green;
max-height:20px;
}
QTextEdit {
background-color: rgba(255, 255, 0, 175);
border-style: solid;
border-width:1px;
border-radius:6px;
border-color: green;
opacity: 0.5;
}