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; } } }