-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.py
112 lines (94 loc) · 1.74 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
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
def search_box_style():
return """
QGroupBox{
background-color: #E5FFCC;
font: 12pt Arial Bold;
color: #606060;
border: 2px solid grey;
border-radius: 15px;
}
"""
def list_box_style():
return """
QGroupBox{
background-color: #FFFFCC;
font: 12pt Arial Bold;
color: #606060;
border: 2px solid grey;
border-radius: 15px;
}
"""
def btn_style():
return """
QPushButton{
background-color: #FFFFFF;
border-style: outset;
border-width: 2px;
border-radius: 10px;
border-color: #808080;
font: 14px;
padding: 6px;
min-width: 6em;
}
"""
def delete_btn_style():
return """
QPushButton{
background-color: #FDD0D8;
border-style: outset;
border-width: 2px;
border-radius: 10px;
border-color: #808080;
font: 14px;
padding: 6px;
min-width: 6em;
}
"""
def upload_btn_style():
return """
QPushButton{
background-color: #F3FDE9;
border-style: outset;
border-width: 2px;
border-radius: 10px;
border-color: #808080;
font: 14px;
padding: 6px;
min-width: 6em;
}
"""
def home_top_frame():
return """
QFrame{
background-color: #F3FDE9;
font: 20pt Arial Bold;
}
"""
def home_bottom_frame():
return """
QFrame{
background-color: #F3FDE9;
font: 16pt Arial Bold;
}
"""
def tool_top_frame():
return """
QFrame{
background-color: white;
font: 18pt Arial Bold;
}
"""
def tool_bottom_frame():
return """
QFrame{
background-color: #E7FFFF;
font: 13pt Arial Bold;
}
"""
def plant_view():
return """
QFrame{
background-color: #E7FFFF;
font: 13pt Arial Bold;
}
"""