-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.py
50 lines (46 loc) · 968 Bytes
/
stylesheet.py
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
def css():
# Global styles
stylesheet = """
QPushButton {
background: #000;
border: none;
padding: 16px;
color: #fff;
font-size: 12px;
}
QPushButton:pressed {
background: #ECECEC;
padding: 16px;
color: #000;
font-size: 12px;
}
QToolButton {
background: #ECECEC;
padding: 16px;
outline: none;
border: none;
}
QToolButton:pressed {
background: #ECECEC;
padding: 16px;
outline: none;
QToolBuuton:checked {
background: #ECECEC;
padding: 16px;
outline: none;
}
QTextEdit {
height: 32px;
background: pink;
height: 32px ;
outline: none;
border: none;
}
QLineEdit {
background: red;
padding: 16px;
outline: none;
border: none;
}
"""
return stylesheet