This repository has been archived by the owner on May 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathMarsala.css
191 lines (158 loc) · 3.3 KB
/
Marsala.css
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/*
Skin: Marsala
PantoneCode: 18-1438 (15-1242 14-1122)
Author: Yuriko
Create date: 2018/10/10
Update date: 2018/10/31
一种自然有劲与质朴的酒红色。玛萨拉酒红丰富我们的精神、肉体与灵魂。
玛萨拉酒红的名称来自玛萨拉这种成分加烈的葡萄酒,这个极具风味的色调正如其名,
体现了一顿圆满餐饮的丰足感,它的红褐底色则散发出一种自然成熟的朴实感。
*/
QWidget {
font-weight: bold;
font-size: 16px;
background: rgb(150, 79, 76);
color: whitesmoke;
}
QWidget:disabled {
background: transparent;
color: #6F6F6F;
}
QToolButton {
font-size: 20px;
color: whitesmoke;
}
QToolButton:hover {
background: rgb(233, 120, 116);
}
QPushButton {
background: rgb(218, 181, 143);
border: 1px solid #000;
border-radius: 2px;
color: rgb(236, 14, 101);
min-width: 76px;
min-height: 17px;
padding: 4px 6px;
}
QPushButton:focus {
border: 1px solid rgb(218, 181, 143);
outline: none;
}
QPushButton:pressed {
background: rgb(236, 147, 94);
}
QPushButton[flat="true"] {
background: none;
border: 0px;
border-radius: 0px;
color: none;
min-width: 0px;
min-height: 0px;
}
QPushButton#pushButton_previous,
QPushButton#pushButton_playing,
QPushButton#pushButton_next {
min-width: 50px;
min-height: 50px;
}
QSlider::groove:horizontal {
background: rgb(236, 147, 94);
height: 1px;
}
QSlider::sub-page:horizontal {
background: rgb(218, 181, 143);
}
QSlider::handle:horizontal {
background: whitesmoke;
border: 2px solid #1A1A1A;
border-radius: 7px;
margin: -7px 0;
width: 12px;
}
QCheckBox::indicator {
width: 11px;
height: 11px;
border: 1px solid rgb(218, 181, 143);
border-radius: 2px;
}
QCheckBox::indicator:unchecked {
border: 1px solid whitesmoke;
background: rgb(236, 147, 94);
image: none;
}
QCheckBox::indicator:checked {
border: 1px solid rgb(218, 181, 143);
background: rgb(218, 181, 143);
image: url(:/icons/checked.svg);
}
QLineEdit {
background: rgb(236, 147, 94);
border: 1px solid #454A4D;
padding: 2px;
}
QLineEdit:focus {
border: 1px solid rgb(218, 181, 143);
}
QComboBox {
background: rgb(236, 147, 94);
border: 1px solid #000;
border-radius: 2px;
padding: 2px;
}
QComboBox:focus {
border: 1px solid rgb(218, 181, 143);
}
QComboBox::drop-down {
background: rgb(218, 181, 143);
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
}
QComboBox::down-arrow {
image: url(:/icons/down-arrow.svg);
}
QGroupBox {
border: 1px solid #454A4D;
border-radius: 2px;
margin-top: 0.5em;
}
QGroupBox::title {
subcontrol-origin: margin;
subcontrol-position: top center;
background: rgb(236, 147, 94);
border: 1px solid #454A4D;
border-radius: 2px;
padding: 0 2px;
}
QRadioButton::indicator {
width: 6px;
height: 6px;
border-radius: 5px;
padding: 2px;
}
QRadioButton::indicator:unchecked {
border: 1px solid whitesmoke;
image: none;
}
QRadioButton::indicator:checked {
border: 1px solid rgb(218, 181, 143);
image: url(:/icons/selected.svg);
}
QSpinBox {
background: rgb(236, 147, 94);
border: 1px solid #000;
border-radius: 2px;
padding: 2px;
}
QSpinBox:focus {
border: 1px solid rgb(218, 181, 143);
}
QSpinBox::up-button, QSpinBox::down-button {
border: none;
width: 10px;
}
QSpinBox::up-arrow {
image: url(:/icons/up-arrow.svg);
}
QSpinBox::down-arrow {
image: url(:/icons/down-arrow.svg);
}