-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (56 loc) · 1.76 KB
/
style.css
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
/* style.css */
QWidget {
background-color: #ece5fb; /* Light purple background */
color: #333; /* Dark text color */
}
QPushButton {
background-color: #6a0dad; /* Purple button background */
color: #fff; /* White text color */
border: none; /* Remove button border */
border-radius: 5px; /* Rounded corners */
padding: 10px 20px; /* Padding inside the button */
font-size: 25px;
}
QPushButton:hover {
background-color: #4e0787; /* Darker purple on hover */
}
QLabel {
color: #8d6abf; /* Purple text color */
font-size: 25px; /* Larger font size */
margin-bottom: 20px; /* Add margin below the label */
}
QLineEdit,
QProgressBar {
background-color: #fff; /* White background */
color: #333; /* Dark text color */
border: 2px solid #6a0dad; /* Purple border */
border-radius: 5px; /* Rounded corners */
padding: 10px; /* Padding inside the input field */
font-size: 20px; /* Larger font size */
}
QFileDialog QPushButton {
background-color: #6a0dad; /* Purple button background */
color: #fff; /* White text color */
border-radius: 5px; /* Rounded corners */
padding: 10px 20px; /* Padding inside the button */
font-size: 25px;
}
QFileDialog QPushButton:hover {
background-color: #4e0787; /* Darker purple on hover */
}
QMessageBox {
background-color: #fff; /* White background */
color: #333; /* Dark text color */
border: 2px solid #6a0dad; /* Purple border */
border-radius: 5px; /* Rounded corners */
}
QMessageBox QPushButton {
background-color: #6a0dad; /* Purple button background */
color: #fff; /* White text color */
border-radius: 5px; /* Rounded corners */
padding: 10px 20px; /* Padding inside the button */
font-size: 25px;
}
QMessageBox QPushButton:hover {
background-color: #4e0787; /* Darker purple on hover */
}