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.
43 lines
760 B
43 lines
760 B
QWidget {
|
|
background-color: white;
|
|
border: 1px solid rgb(200, 200, 200);
|
|
}
|
|
|
|
QWidget#windowMask {
|
|
background-color: rgba(255, 255, 255, 0.6);
|
|
border: none;
|
|
}
|
|
|
|
QLabel {
|
|
background-color: transparent;
|
|
color: black;
|
|
font-family: 'Segoe UI', 'Microsoft YaHei';
|
|
border: none;
|
|
}
|
|
|
|
QLabel#titleLabel {
|
|
font-size: 18px;
|
|
}
|
|
|
|
QLabel#contentLabel {
|
|
font-size: 14px;
|
|
}
|
|
|
|
QPushButton {
|
|
background-color: rgb(204, 204, 204);
|
|
font: 15px 'Segoe UI', 'Microsoft YaHei';
|
|
border: transparent;
|
|
}
|
|
|
|
QPushButton:pressed:hover {
|
|
background-color: rgb(153, 153, 153);
|
|
}
|
|
|
|
QPushButton:hover {
|
|
background-color: rgb(230, 230, 230);
|
|
}
|
|
|
|
QPushButton:disabled {
|
|
background-color: rgb(204, 204, 204);
|
|
color: rgb(122, 122, 122);
|
|
} |