-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcleancommandline.user.css
More file actions
43 lines (41 loc) · 1.25 KB
/
cleancommandline.user.css
File metadata and controls
43 lines (41 loc) · 1.25 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
/* ==UserStyle==
@name monkeytype clean command line
@namespace github.com/openstyles/stylus
@version 1.0.0
@description clean command line
@author refact0r
@homepageURL https://github.com/refact0r/monkeytype-themes
@updateURL https://github.com/refact0r/monkeytype-themes/raw/main/cleancommandline.user.css
==/UserStyle== */
@-moz-document domain("monkeytype.com") {
/* clean command line */
#commandLine {
background: none !important;
}
#commandLineWrapper {
background: none;
backdrop-filter: blur(5px) brightness(0.5);
transition: 0.5s ease;
}
#commandLine input {
background: none !important;
}
#commandLine > div:first-child {
border-radius: 0;
border-bottom: 1px solid var(--sub-color) !important;
}
/* command line scrollbar */
#commandLine .suggestions {
scrollbar-width: none !important;
scrollbar-color: rgba(255, 255, 255, .1) transparent !important;
}
#commandLine .suggestions:hover {
scrollbar-width: thin !important;
}
#commandLine .suggestions::-webkit-scrollbar {
width: 0px;
}
#commandLine .suggestions:hover::-webkit-scrollbar {
width: 7px;
}
}