-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (97 loc) · 2.19 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
QMainWindow {background: white;}
QMenuBar {
border-bottom: 1px solid black;
}
QMenuBar::item:selected {
background: #f5d6d6;
}
QFrame {
border: 0px solid;
}
QTableWidget {
outline: none;
selection-background-color: #e87d68;
}
QTableWidget::item {border: 1px solid black; padding: 5px;}
QTableWidget::item:selected {color: white}
QTableWidget::item:selected:hover {color: white}
QTableWidget::item:hover {color: black}
QHeaderView::section {
background: white;
color: #b30000;
font-size: 20px;
}
QPushButton {
font: bold 16px 'Bookman Old Style';
border: 1px solid black;
padding: 5px;
}
QPushButton#translate {
background-color : #b30000;
color: white;
font-weight: normal;
border-color: #b30000;
}
QPushButton#translate:hover {
background-color : white;
color: #b30000;
}
QPushButton#translate:pressed {
background-color : #b30000;
color: white;
}
QPushButton#edit {
background-color : white;
color: #d66e11;
border-color: #d66e11;
}
QPushButton#edit:hover {
background-color : #ffe4c2;
}
QPushButton#edit:pressed {
background-color : #d66e11;
color: white;
}
QPushButton#add_word {
background-color : white;
color: #53964a;
border-color: #53964a;
}
QPushButton#add_word:hover {
background-color: #cbf7c5;
}
QPushButton#add_word:pressed {
background-color : #53964a;
color: white;
}
QPushButton#ok, QPushButton#cansel {
font: normal 14px 'Arial';
background-color : #b3d7ee;
border-color: #b3d7ee;
}
QPushButton#ok:hover, QPushButton#cansel:hover {
background-color: white;
}
QLineEdit {
border: 1px solid black;
padding: 2px;
font: 16px 'Times New Roman';
}
QTextEdit {
border: 1px solid black;
padding: 2px;
font: 16px 'Times New Roman';
}
QLabel {
padding: 2px;
font: 14px 'Arial';
}
QLabel#translation {
padding: 2px;
font: bold 18px 'Arial';
}
QLabel#meaning {
padding: 2px;
font: italic 14px 'Arial';
}
QLabel#invis {background: #f4ead8;}