-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclover_stylesheets.py
executable file
·110 lines (103 loc) · 2.35 KB
/
clover_stylesheets.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
button_style = '''
QPushButton {
font-size: 15px;
font-weight: 300;
color: #fff;
border: 0.3rem solid transparent;
border-radius: 25;
background-color: #60605e;
}
QPushButton:hover {
background-color: #787875;
}
QPushButton:pressed {
color: #0F462D;
background-color: #E4FFDF;
}
'''
button_style2 = '''
QPushButton {
font-size: 15px;
font-weight: 300;
color: #fff;
border: 0.3rem solid transparent;
border-radius: 25;
background-color: #B7E3E4;
}
QPushButton:hover {
background-color: #7DCDCE;
}
QPushButton:pressed {
color: #B7E3E4;
background-color: #071213;
}
'''
logout_button = '''
QPushButton {
border-radius: 10;
font-weight: 700;
color: #fff;
border: 0.3rem solid transparent;
background-color: #2A2A2A45;
}
QPushButton:hover {
background-color: #7DCDCE;
}
QPushButton:pressed {
color: #B7E3E4;
background-color: #071213;
}
'''
form_style = '''
QLineEdit {
font-size: 25px;
font-weight: 100;
padding-left: 0.4em;
border-radius: 12.5;
}
'''
form_style2 = '''
QLineEdit {
font-size: 15px;
padding-left: 0.4em;
border-radius: 12.5;
background-color: #707070;
color: #ffffff;
}
'''
alert = "background-color: #ff4747; color: #ffffff;border: 0.1px; border-radius:16px;"
success = "background-color: #E4FFDF; color: #0F462D; border-radius:16px"
list_style = '''
QListWidget{
padding: 10px;
border : 1px solid transparent;
border-radius: 25;
background : #1A1A1A;
font-size: 20px;
}
QListWidget QScrollBar{
background : lightblue
}
QListWidget::item{
background : #454545;
border-radius: 20;
padding: 10px;
margin: 5px;
}
QListView::item:selected{
border-radius: 20;
background : #E4FFDF;
color: #0F462D;
padding: 10px;
}
'''
block_style = '''
QLabel {
padding-left: 0.4em;
border-radius: 12.5;
font-size: 5em;
font-weight: 100;
background-color: #707070;
color: #ffffff;
}
'''