-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (63 loc) · 1.4 KB
/
style.css
File metadata and controls
75 lines (63 loc) · 1.4 KB
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
/* style.css */
QMainWindow {
background-color: #121212;
color: #00ff88;
}
QWidget {
font-size: 14px;
font-family: "Consolas", "Courier New", monospace;
}
QPushButton {
background-color: #002244;
color: #00ff88;
border: 1px solid #00ff88;
padding: 8px 16px;
border-radius: 2px;
font-weight: bold;
}
QPushButton:hover {
background-color: #003366;
border: 1px solid #00ffaa;
}
QPushButton:pressed {
background-color: #001122;
}
QLineEdit, QTextEdit, QComboBox {
padding: 6px;
border: 1px solid #00ff88;
border-radius: 2px;
background-color: #0a0a0a;
color: #00ff88;
selection-background-color: #00ff88;
}
QListWidget {
border: 1px solid #00ff88;
border-radius: 2px;
background-color: #0a0a0a;
color: #00ff88;
}
QLabel {
font-weight: bold;
color: #00ff88;
}
QScrollBar:vertical {
border: 1px solid #00ff88;
background: #121212;
width: 10px;
margin: 0px;
}
QScrollBar::handle:vertical {
background: #00aa66;
min-height: 20px;
}
QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical {
background: none;
border: none;
}
QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical {
background: none;
border: none;
}
QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
background: none;
}