-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
23 lines (22 loc) · 713 Bytes
/
style.css
File metadata and controls
23 lines (22 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
QPushButton {
color: #DDDDDD;
background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #008800, stop: 0.1 #009922, stop: 0.49 #007711, stop: 0.5 #006600, stop: 1 #005500);
border-width: 1px;
border-color: #339;
border-style: solid;
border-radius: 7;
padding: 3px;
font-size: 12px;
padding-left: 5px;
padding-right: 5px;
min-width: 64px;
max-width: 136px;
min-height: 13px;
max-height: 13px;
}
QPushButton:hover {
background: qradialgradient(cx: 0.3, cy: -0.4, fx: 0.3, fy: -0.4, radius: 1.35, stop: 0 #00AA00, stop: 1 #009900);
}
QPushButton:pressed {
background: qradialgradient(cx: 0.4, cy: -0.1, fx: 0.4, fy: -0.1, radius: 1.35, stop: 0 #00FF00, stop: 1 #ddd);
}