36 lines
583 B
Plaintext
36 lines
583 B
Plaintext
QPushButton {
|
|
color: white;
|
|
background-color: rgb(14, 150, 254);
|
|
border-radius: 15px;
|
|
height: 50px;
|
|
width: 200px;
|
|
}
|
|
|
|
QPushButton:hover {
|
|
background-color: rgb(44, 137, 255);
|
|
}
|
|
|
|
QPushButton:pressed {
|
|
background-color: rgb(14, 135, 228);
|
|
padding-left: 3px;
|
|
padding-top: 3px;
|
|
}
|
|
|
|
* {
|
|
outline: none;
|
|
}
|
|
|
|
QDialog {
|
|
background: #D6DBE9;
|
|
}
|
|
|
|
QLineEdit {
|
|
border-radius: 3px;
|
|
padding-left: 5px;
|
|
border: 1px solid #298DFF;
|
|
border-radius: 3px;
|
|
background-color: #F2F2F2;
|
|
color: #298DFF;
|
|
selection-background-color: #298DFF;
|
|
selection-color: #F2F2F2;
|
|
} |