-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLabelCraft_stylesheet.css
More file actions
66 lines (58 loc) · 1.12 KB
/
Copy pathLabelCraft_stylesheet.css
File metadata and controls
66 lines (58 loc) · 1.12 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
/* Overall style */
* {
color: rgba(255, 255, 255, .5);
background: rgb(40, 40, 40);
selection-color: black;
selection-background-color: rgb(255, 66, 66);
font-size: 10pt;
font-family: "Consolas";
font-weight: 550;
}
/* QToolTip style */
QToolTip {
background: rgb(153, 160, 178);
color: rgb(55, 60, 73);
padding: 5px;
radius: 20px;
opacity: 200;
}
/* QMenu style */
QMenu {
background: rgba(65, 65, 65, .8);
padding: 10px;
selection-color: black;
selection-background-color: rgb(255, 66, 66);
}
/* QTextEdit style */
QTextEdit::placeholder {
color: #767e89;
}
/* QCheckBox style */
QCheckBox {
spacing: 5px;
}
QCheckBox::indicator:checked {
background: rgb(255, 66, 66);
}
QCheckBox::indicator:unchecked {
background: rgb(30, 30, 30);
}
QPushButton::disabled {
color: rgb(36, 36, 36);
}
#btn_guide {
font: 8pt;
color: rgb(255, 66, 66);
border: none;
}
#btn_guide:hover {
font: 8pt;
background: rgb(255, 66, 66);
color: white;
border: none;
}
#lbl_credits {
font: 6pt;
color: rgb(255, 66, 66);
padding-left: 2px;
}