0
|
1 |
*
|
|
2 |
{
|
|
3 |
color: beige;
|
|
4 |
}
|
|
5 |
|
|
6 |
QLabel, QAbstractButton
|
|
7 |
{
|
|
8 |
font: bold;
|
|
9 |
color: yellow;
|
|
10 |
}
|
|
11 |
|
|
12 |
QFrame
|
|
13 |
{
|
|
14 |
background-color: rgba(96,96,255,60%);
|
|
15 |
border-color: rgb(32,32,196);
|
|
16 |
border-width: 3px;
|
|
17 |
border-style: solid;
|
|
18 |
border-radius: 5;
|
|
19 |
padding: 3px;
|
|
20 |
}
|
|
21 |
|
|
22 |
QAbstractButton
|
|
23 |
{
|
|
24 |
background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
|
25 |
stop:0 lightblue, stop:0.5 darkblue);
|
|
26 |
border-width: 3px;
|
|
27 |
border-color: darkblue;
|
|
28 |
border-style: solid;
|
|
29 |
border-radius: 5;
|
|
30 |
padding: 3px;
|
|
31 |
}
|
|
32 |
|
|
33 |
QAbstractButton:pressed
|
|
34 |
{
|
|
35 |
background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
|
36 |
stop:0.5 darkblue, stop:1 lightblue);
|
|
37 |
border-color: beige;
|
|
38 |
}
|