aboutsummaryrefslogtreecommitdiff
path: root/src/console/console.scss
blob: 0de873df20fcb45b4fe858a85fdae7b7b79c8f90 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
html, body, * {
  margin: 0;
  padding: 0;
}

body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.vimvixen-console {
  border-top: 1px solid gray;
  bottom: 0;
  margin: 0;
  padding: 0;

  @mixin consoole-font {
    font-style: normal;
    font-family: monospace;
    font-size: 12px;
    line-height: 16px;
  }

  &-error {
    background-color: red;
    font-weight: bold;
    color: white;

    @include consoole-font;
  }


  &-title {
    background-color: lightgray;
    font-weight: bold;
    margin: 0;
    padding: 0;

    @include consoole-font;
  }

  &-command {
    background-color: white;
    display: flex;

    &-prompt:before {
      content: ':';

      @include consoole-font;
    }

    &-input {
      border: none;
      flex-grow: 1;

      @include consoole-font;
    }
  }
}