-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.py
59 lines (57 loc) · 1.41 KB
/
styles.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
class styles:
text_style = """QLabel{
min-height: 50px;
width: 100px;
color: white;
background-color: rgba(255, 255, 255, .0);
}
"""
text_edit_style = """QTextEdit{
color: white;
padding: 5px;
max-height: 200px;
max-width: 736px;
min-width: 736px;
}
"""
button_style = """QPushButton{
min-height: 50px;
max-width: 200px;
margin-top: 10px;
margin-right: 30px;
border-radius : 100%;
border : 2px solid black
}"""
text_style_with_right_margin = """QLabel{
min-height: 50px;
width: 100px;
color: white;
background-color: rgba(255, 255, 255, .0);
}
"""
text_style_without_margin = """QLabel{
width: 100px;
color: white;
background-color: rgba(255, 255, 255, .0);
}
"""
combobox_style = """QComboBox{
height: 40px;
min-width: 736px;
max-width: 736px;
border: 2px solid white;
border-radius: 5px;
padding: 5px;
background: black;
color: white;
margin: 0 0 0 0;
}
QComboBox QAbstractItemView {
background-color: black;
color: white;
border-radius: 10px;
}"""
slider_style = """QSlider{
height: 15px;
min-width: 100px;
}"""