forked from Roboron3042/Cyberpunk-Neon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKDE CyberPunk Neon.qss
88 lines (73 loc) · 1.76 KB
/
KDE CyberPunk Neon.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
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
/*
* author: Manuel Schneider <https://github.com/ManuelSchneid3r>
*
* Check http://doc.qt.io/qt-5/stylesheet-syntax.html especially the subtopics:
* The Style Sheet Syntax (http://doc.qt.io/qt-5/stylesheet-syntax.html)
* Qt Style Sheets Reference (http://doc.qt.io/qt-5/stylesheet-reference.html)
*/
* {
border: none;
color : #0ABDC6;
background-color: #000B1E;
}
#frame {
padding: 6px 0px;
border-radius: 8px;
background-color: #000B1E;
min-width:640px;
max-width:640px;
}
#inputLine {
padding: 0px 8px;
font-size: 36px;
selection-color: #EA00D9;
selection-background-color: #133E7C;
background-color: transparent;
}
#settingsButton {
margin: 6px 6px 0px 0px;
color: #EA00D9;
background-color: transparent;
padding: 2px;
min-width:14px;
min-height:14px;
max-width:14px;
max-height:14px;
}
/********** ListViews ************/
QListView {
background: transparent;
selection-color: #000B1E;
}
QListView::item:selected {
background: #711C91;
}
QListView QScrollBar:vertical {
width: 3px;
background: transparent;
}
QListView QScrollBar::handle:vertical {
background: #EA00D9;
border-radius: 1px;
min-height: 24px;
}
QListView QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical,
QListView QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical,
QListView QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
border: 0px;
width: 0px;
height: 0px;
background: transparent;
}
/********** resultsList **********/
QListView#resultsList {
icon-size: 40px;
font-size: 24px;
}
QListView#resultsList::item{
padding: 8px 0px 0px 0px;
}
/********** actionList **********/
QListView#actionList {
font-size: 20px;
}