-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.qss
50 lines (42 loc) · 901 Bytes
/
style.qss
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
/* QMainWindow - Main widget styles */
QApplication, QMainWindow, QVBoxLayout, QHBoxLayout, QWebEngineView, QDialog, QFrame {
background-color: black;
}
QListWidget {
border: 10px solid black;
background-color: black;
}
QLabel {
color: white;
}
/* QScrollBar - Dark Theme */
QScrollBar:vertical {
background: #2A2A2A;
width: 15px;
margin: 15px 0 15px 0;
}
QScrollBar::handle:vertical {
background: #5A5A5A;
min-height: 30px;
}
QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical {
background: none;
height: 0;
width: 0;
subcontrol-origin: margin;
}
QScrollBar:horizontal {
background: #2A2A2A;
height: 15px;
margin: 0 15px 0 15px;
}
QScrollBar::handle:horizontal {
background: #5A5A5A;
min-width: 30px;
}
QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal {
background: none;
height: 0;
width: 0;
subcontrol-origin: margin;
}