-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommand.css
66 lines (65 loc) · 1.35 KB
/
command.css
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
/* Copyright (C) MMXVIII Arthur A. Gleckler.
* GNU LGPL v3. See "LICENSE.txt" and "COPYING.LESSER".
*/
@font-face {
font-family: "Ruluko";
font-style: normal;
font-weight: 400;
src: local("Ruluko"), url("https://themes.googleusercontent.com/static/fonts/ruluko/v1/ktCr6OaMRtWuActE8_wCCuvvDin1pK8aKteLpeZ5c0A.woff") format("woff");
}
#command {
border-top: 1px solid black;
background: lightgrey;
bottom: 0;
font-family: 'Ruluko', sans-serif;
font-size: x-large;
height: auto;
left: 0;
margin-top: 10px;
min-height: 1em;
position: fixed;
white-space: pre-wrap;
width: 100%;
z-index: 2;
}
#command li {
color: black;
line-height: 1.2em;
white-space: nowrap;
}
#command li:hover,
#command .selected-completion {
background: blue;
color: white;
}
#command span {
position: relative;
}
#command ul {
background: lightgrey;
border-left: 1px solid grey;
border-right: 1px solid grey;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-top: 1px solid grey;
bottom: 1.2em;
left: -0.1em;
list-style: none;
margin-bottom: -0.1em;
margin-left: -0.25em;
padding-bottom: 0.1em;
padding-left: 0.25em;
padding-right: 0.25em;
padding-top: 0.25em;
position: absolute;
user-select: none;
}
.command-name {
font-weight: 650;
}
.parameter-name {
font-style: italic;
}
.parameter-value {
color: blue;
}