You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
770 B
44 lines
770 B
QWidget {
|
|
background-color: rgb(23, 23, 23);
|
|
border: 1px solid rgb(55, 55, 55);
|
|
}
|
|
|
|
QWidget#windowMask {
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
border: none;
|
|
}
|
|
|
|
QLabel {
|
|
background-color: transparent;
|
|
color: white;
|
|
font-family: 'Segoe UI', 'Microsoft YaHei';
|
|
border: none;
|
|
}
|
|
|
|
QLabel#titleLabel {
|
|
font-size: 18px;
|
|
}
|
|
|
|
QLabel#contentLabel {
|
|
font-size: 14px;
|
|
}
|
|
|
|
QPushButton {
|
|
background-color: rgb(51, 51, 51);
|
|
font: 15px 'Segoe UI', 'Microsoft YaHei';
|
|
border: transparent;
|
|
color: white;
|
|
}
|
|
|
|
QPushButton:pressed:hover {
|
|
background-color: rgb(102, 102, 102);
|
|
}
|
|
|
|
QPushButton:hover {
|
|
background-color: rgb(35, 35, 35);
|
|
}
|
|
|
|
QPushButton:disabled {
|
|
background-color: rgb(51, 51, 51);
|
|
color: rgb(133, 133, 133);
|
|
} |