-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.qss
69 lines (57 loc) · 1.34 KB
/
style.qss
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
/* Set the font and background color of the application */
QWidget {
font-family:monospace;
background-color: rgba(142, 138, 138, 0.872);
}
/* Style the buttons */
QPushButton {
font-weight: bold;
border: 1px solid black;
border-radius: 10px;
}
/* Change the button color on hover */
QPushButton:hover {
background-color: rgb(64, 57, 57);
color:rgba(219, 208, 208, 0.548);
}
/* Style the text edit */
QTextEdit {
background-color: rgb(223, 216, 216);
font-size: 20px;
font-weight: bold;
/* border: 1px solid black;
border-radius: 20px; */
}
/* Style the image label */
QLabel {
background-color: rgba(223, 216, 216, 0.686);
font-size: 20px;
/* font-weight: bold;
border: 1px solid black;
border-radius: 20px; */
}
QMenuBar {
font-family: monospace;
font-size: 16px;
background-color: rgba(142, 138, 138, 0.872);
border-radius: 20px ;
border: 1px solid rgb(50, 46, 46);
margin-left: 15px;
margin-right: 1373px;
}
QMenuBar::item {
background-color: rgba(142, 138, 138, 0.872);
color: rgb(0, 0, 0);
}
QMenuBar::item:selected {
background-color: rgb(64, 57, 57);
color: rgba(219, 208, 208, 0.548);
}
QMessageBox {
background-color:rgb(223, 216, 216) ;
font-size: 15px;
}
/* open_action:hover {
background-color: black;
color:white;
} */