-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.py
63 lines (60 loc) · 1.01 KB
/
style.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
51
52
53
54
55
56
57
58
59
60
61
62
63
def searchBoxStyle():
return """
QGroupBox{
background-color:#9bc9ff;
font:15pt Times Bold;
color:white;
border:2px solid gray;
border-radius:15px;
}
"""
def listBoxStyle():
return """
QGroupBox{
background-color:#fcc324;
font:15pt Arial Bold;
color:white;
border:2px solid gray;
border-radius:15px;
}
"""
def searchButtonStyle():
return """
QPushButton{
background-color:#fcc324;
border-style:outset;
border-width:2px;
border-radius:10px;
border-color:beige;
font:12px;
padding:6px;
min-width:6em;
}
"""
def listButtonStyle():
return """
QPushButton{
background-color:#9bc9ff;
border-style:outset;
border-width:2px;
border-radius:10px;
border-color:beige;
font:12px;
padding:6px;
min-width:6em;
}
"""
def productbottomFrame():
return """
QFormLayout{
font:15pt Times Bold;
background-color:#fcc324;
}
"""
def producttopFrame():
return """
QVBoxLayout{
font:20pt Times Bold;
background-color:white;
}
"""