-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
51 lines (44 loc) · 867 Bytes
/
styles.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
QWidget {
background-color: #1a1a1a; /* Gris muy oscuro */
}
QLabel {
font-size: 20px;
color: white;
margin-bottom: 10px;
text-align: center;
}
QPushButton {
padding: 10px 20px;
text-transform: uppercase;
border-radius: 8px;
font-size: 17px;
font-weight: 500;
color: #ffffff80;
background: transparent;
border: 1px solid #ffffff80;
}
QPushButton:hover,
QPushButton:focus {
color: #ffffff;
background: #ff0019;
border: 1px solid #932323;
}
QLineEdit {
padding: 10px;
border: 1px solid #ffffff80;
border-radius: 8px;
color: #ffffff;
background: transparent;
}
QListWidget {
border: 1px solid #ffffff80;
border-radius: 8px;
background: transparent;
color: white;
}
QListWidget::item {
padding: 10px;
}
QListWidget::item:selected {
background: #ad1414;
}