-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.qss
71 lines (57 loc) · 1009 Bytes
/
style.qss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
QMainWindow {
background-color: white;
font-family: “ALato”
}
QDialog {
background-color: white;
}
QTableWidget {
outline: 0;
font-size: 16px;
}
QLabel {
font-size: 14px;
}
QLabel#welcome_message {
font-size: 30px;
}
QTableWidgetItem:focus {
outline: 0;
font-size: 10px;
}
QPushButton {
background-color: white;
color: #0084FF;
border: 2px solid #0084FF;
border-radius: 15px;
font-size: 15px;
min-height: 30px;
}
QPushButton:!enabled {
opacity: 0.5;
filter: alpha(opacity=50);
color: #80c1ff;
border-color: #80c1ff;
}
QPushButton#ok_button {
background-color: #0084FF;
color: white;
}
QPushButton#ok_button:!enabled {
background-color: #80c1ff;
}
QPushButton:pressed {
background-color: #0084FF;
color: white;
}
QPushButton#ok_button:pressed {
background-color: white;
color: #0084FF;
border-color: #0084FF;
}
QLayout {
margin: 20px;
}
QWidget#centralwidget {
margin: 20px;
}