-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
131 lines (112 loc) · 2.83 KB
/
styles.css
File metadata and controls
131 lines (112 loc) · 2.83 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
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
126
127
128
129
130
131
:root {
--vimium-font-family: -apple-system, Inter, system-ui;
--vimium-font-size: 14px;
--vimium-font-size-sm: 13px;
--vimium-clr-bg-primary: #16161C;
--vimium-clr-bg-secondary: #1A1C23;
--vimium-clr-primary: #F09383;
--vimium-clr-white: #FDF0ED;
--vimium-clr-grey: #2E303E;
--vimium-clr-url-primary: #1EAEAE;
--vimium-clr-url-secondary: #21BFC2;
}
/* Hints */
.vimiumHintMarker {
background: var(--vimium-clr-bg-primary) !important;
padding: 4px 5px !important;
border: none !important;
box-shadow: none !important;
}
.vimiumHintMarker span {
color: var(--vimium-clr-white) !important;
font-family: var(--vimium-font-family) !important;
text-shadow: none !important;
}
.vimiumHintMarker .matchingCharacter {
opacity: 0.7;
}
.vimiumHintMarker .matchingCharacter ~ span {
color: var(--vimium-clr-primary) !important;
}
/* Vomnibar */
#vomnibar {
max-width: 700px;
background-color: var(--vimium-clr-bg-primary);
border: none;
box-shadow: none;
overflow: hidden;
position: relative;
margin-inline: auto;
animation: 200ms ease-in-out forwards show;
}
#vomnibar-search-area {
background-color: transparent !important;
padding: 10px 30px !important;
border: none;
}
#vomnibar-search-area input {
color: var(--vimium-clr-white) !important;
font-family: var(--vimium-font-family) !important;
font-size: var(--vimium-font-size) !important;
background-color: transparent !important;
border: none !important;
padding: 0px !important;
box-shadow: none !important;
}
#vomnibar-search-area input::selection {
background-color: var(--vimium-clr-primary) !important;
color: var(--vimium-clr-grey) !important;
}
@keyframes show {
0% {
transform: translateY(50px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
/* list items */
#vomnibar li {
border-bottom: none !important;
border-top: 1px solid var(--vimium-clr-grey);
}
#vomnibar li.selected {
background-color: var(--vimium-clr-bg-secondary);
}
#vomnibar span {
font-family: var(--vimium-font-family);
font-size: var(--vimium-font-size) !important;
}
/* source */
#vomnibar .source {
color: var(--vimium-clr-white) !important;
opacity: .6;
}
/* title */
#vomnibar .title {
color: var(--vimium-clr-white) !important;
}
#vomnibar .title .match {
color: var(--vimium-clr-primary) !important;
}
/* url */
#vomnibar .url {
color: var(--vimium-clr-url-primary) !important;
font-family: var(--vimium-font-family) !important;
font-size: var(--vimium-font-size-sm) !important;
}
#vomnibar .url .match {
color: var(--vimium-clr-url-secondary) !important;
}
/* HUD */
#hud-container {
box-shadow: none !important;
border: none !important;
background-color: var(--vimium-clr-bg-primary) !important;
font-family: var(--vimium-font-family);
}
#hud-find-input {
color: var(--vimium-clr-white) !important;
}