33 lines
577 B
Text
33 lines
577 B
Text
|
|
/* Set the background color */
|
||
|
|
QWidget {
|
||
|
|
background-color: #2E3440;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Style buttons */
|
||
|
|
QPushButton#controlButton {
|
||
|
|
background-color: #4C566A;
|
||
|
|
color: white;
|
||
|
|
border-radius: 10px;
|
||
|
|
font-size: 18px;
|
||
|
|
padding: 10px;
|
||
|
|
}
|
||
|
|
QPushButton#controlButton:hover {
|
||
|
|
background-color: #5E81AC;
|
||
|
|
}
|
||
|
|
QPushButton#controlButton:pressed {
|
||
|
|
background-color: #88C0D0;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Style Labels */
|
||
|
|
QLabel {
|
||
|
|
color: white;
|
||
|
|
font-size: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Style Map Display */
|
||
|
|
QLabel#mapLabel {
|
||
|
|
background-color: #3B4252;
|
||
|
|
border: 2px solid #5E81AC;
|
||
|
|
border-radius: 10px;
|
||
|
|
}
|