-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.qss
More file actions
74 lines (59 loc) · 1.04 KB
/
style.qss
File metadata and controls
74 lines (59 loc) · 1.04 KB
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
72
/* QMainWindow */
QMainWindow {
background-color: #17f0f0f0;
}
/* QPushButton */
QPushButton {
background-color: #b73c394e;
color: white;
border: 1px solid #2980b9;
border-radius: 4px;
padding: 5px;
}
QPushButton:hover {
background-color: #2980b9;
}
QPushButton:pressed {
background-color: #1abc9c;
}
/* QLabel */
QLabel {
padding: 6px;
font-size: 14px;
color: #2c3e50;
}
/* QLineEdit */
QLineEdit {
border: 1px solid #bdc3c7;
padding: 5px;
border-radius: 4px;
background-color: white;
color: #2c3e50;
}
QLineEdit:focus {
border: 1px solid #3498db;
}
/* QListWidget */
QListWidget {
border: 1px solid #bdc3c7;
border-radius: 4px;
background-color: #17f0f0f0;
color: #2c3e50;
}
QListWidget::item {
padding: 3px;
color: #dfe3e8;
}
QListWidget::item:selected {
background-color: #3498db;
color: white;
}
/* QGraphicsView */
QGraphicsView {
border: 1px solid #bdc3c7;
background-color: #616464;
}
/*QLabel*/
QLabel{
color: white;
}