blob: 2256bf29426684eccaaf5d4b3064a2decf9ff2b2 (
plain) (
blame)
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
|
html, body, * {
margin: 0;
padding: 0;
}
.vimvixen-command-line {
border-top: 1px solid gray;
bottom: 0;
margin: 0;
padding: 0;
&-title {
background-color: lightgray;
font-weight: bold;
margin: 0;
padding: 0;
}
&-line {
background-color: white;
display: flex;
@mixin input-style {
font-style: normal;
font-family: monospace;
font-size: 12px;
}
&-prompt:before {
content: ':';
@include input-style;
}
&-input {
border: none;
flex-grow: 1;
@include input-style;
}
}
}
|