-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.qss
75 lines (64 loc) · 1.2 KB
/
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
72
73
74
75
/* General widget font and color setup */
* {
font-family: "Segoe UI", sans-serif;
font-size: 12pt;
color: #2e2e2e;
}
/* Main Window styling */
QWidget {
background-color: #f0f0f0;
}
/* GroupBox styling */
QGroupBox {
border: 2px solid #a4c2a8;
border-radius: 5px;
margin-top: 1ex;
font-weight: bold;
font-size: 12pt;
}
QGroupBox::title {
subcontrol-origin: margin;
left: 10px;
color: #2a5033;
}
/* Button styling */
QPushButton {
background-color: #8db580;
color: white;
border-radius: 5px;
padding: 5px;
}
QPushButton:hover {
background-color: #7da476;
}
QPushButton:pressed {
background-color: #5d7a58;
}
/* Line Edit styling */
QLineEdit {
padding: 5px;
background-color: #ffffff;
border: 1px solid #ccc;
border-radius: 3px;
}
/* Spin Box and Double Spin Box styling */
QSpinBox, QDoubleSpinBox {
padding: 5px;
border: 1px solid #ccc;
border-radius: 3px;
background-color: #fff;
}
/* Combo Box styling */
QComboBox {
padding: 5px;
border: 1px solid #ccc;
border-radius: 3px;
background-color: #fff;
}
QCheckBox {
spacing: 5px;
}
QCheckBox::indicator {
width: 16px;
height: 16px;
}