-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.css
69 lines (56 loc) · 905 Bytes
/
main.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
QMainWindow {
background: #fff;
}
QTabWidget, QTextEdit {
background: #fff;
}
QTableView {
border: 0;
}
QGraphicsView {
background: #000;
}
QTextEdit {
border: 1px solid #eee;
}
QLineEdit {
border: 2px solid #DEE1E3;
outline: none;
padding: 4px 4px;
border-radius: 3px;
}
QLineEdit::focus {
border: 2px solid #3498DB;
outline: none;
}
QCheckBox {
/* color: red;*/
}
QTabBar::tab {
background: #3498DB;
color: #eee;
padding: 8px 18px;
}
QTabBar::tab:selected {
background: #2980b9;
color: #fff;
}
QPushButton {
border: 0;
background: #3498DB;
color: #ffffff;
padding: 7px 18px;
border-radius: 3px;
font-size: 14pt;
}
QPushButton::hover {
background: #5DADE2;
}
QPushButton::disabled {
color: #bdc3c7;
background: #2980b9;
}
QGroupBox {
/* border: 0;*/
/* background: transparent;*/
}