diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-08-29 21:32:35 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-08-29 21:32:35 +0900 |
commit | f1b9c6ba9d33fe1927c4855d4981d88ad73d5818 (patch) | |
tree | ce65ff2c7979d27d86049d5cb13a6d43672817dc /src/command-line/command-line.scss | |
parent | 21404ad534278eff643be089da9c07882b29da82 (diff) | |
parent | b711678329463d1ec5f2eb9db99f99af5b69895e (diff) |
Merge branch 'iframe-command-line'
Diffstat (limited to 'src/command-line/command-line.scss')
-rw-r--r-- | src/command-line/command-line.scss | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/command-line/command-line.scss b/src/command-line/command-line.scss new file mode 100644 index 0000000..68a0a03 --- /dev/null +++ b/src/command-line/command-line.scss @@ -0,0 +1,52 @@ +html, body, * { + margin: 0; + padding: 0; +} + +body { + position: absolute; + bottom: 0; + left: 0; + right: 0; +} + +.vimvixen-command-line { + border-top: 1px solid gray; + bottom: 0; + margin: 0; + padding: 0; + + @mixin input-style { + font-style: normal; + font-family: monospace; + font-size: 12px; + } + + + &-title { + background-color: lightgray; + font-weight: bold; + margin: 0; + padding: 0; + + @include input-style; + } + + &-line { + background-color: white; + display: flex; + + &-prompt:before { + content: ':'; + + @include input-style; + } + + &-input { + border: none; + flex-grow: 1; + + @include input-style; + } + } +} |