-
Notifications
You must be signed in to change notification settings - Fork 0
/
STYLE.css
55 lines (45 loc) · 986 Bytes
/
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
QMainWindow {
border: 1px solid black;
background-color: COLOR1;
}
QListWidget {
background-color: COLOR1;
}
TabWidget, QListWidget {
border: none;
}
TabWidget::pane {
border: 0;
}
TabWidget#main_tab_widget QTabBar::tab:selected {
color: #ff0000;
background-color: COLOR1;
border-radius: 5px;
width: 90px;
height: 30px;
}
TabWidget#main_tab_widget QTabBar::tab:!selected {
background-color: COLOR2;
border-radius: 5px;
width: 80px;
height: 30px;
}
QPushButton, PushButtonWithId, QLineEdit {
border-radius: 10px;
background-color: COLOR2;
}
* {
color: rgb(200, 200, 200);
}
QSpinBox {
background-color: COLOR2;
color: rgb(200, 200, 200);
border: none;
}
QLabel#word_page_picture_label {
border-radius: 10px;
}
QMessageBox {
background-color: COLOR1;
color: white;
}