diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-08-16 20:33:53 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-08-16 20:33:53 +0900 |
commit | 13fb726332e9638cb3fafc477cf9fe641cb906ce (patch) | |
tree | 407ac0092fcb20c94e407bf1cbc8e5c4844b3bd6 /src/content/footer-line.css | |
parent | 85e22063fe522518e70928255349fb1c16b7cb42 (diff) | |
parent | dc860d32f50e2fc21a4f38663bfb0b9099a77513 (diff) |
Merge branch 'command-line'
Diffstat (limited to 'src/content/footer-line.css')
-rw-r--r-- | src/content/footer-line.css | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/content/footer-line.css b/src/content/footer-line.css new file mode 100644 index 0000000..041776c --- /dev/null +++ b/src/content/footer-line.css @@ -0,0 +1,46 @@ +.vimvixen-footerline { + border-top: 1px solid gray; + bottom: 0; + box-sizing: border-box; + font-family: monospace; + font-size: 12px; + left: 0; + margin: 0; + padding: 0; + position: fixed; + right: 0; + z-index: 10000; +} + +.vimvixen-footerline-title { + background-color: lightgray; + font-weight: bold; + margin: 0; + padding: 0; +} + +.vimvixen-footerline-container-outer { + background-color: white; + position: relative; +} + +.vimvixen-footerline-container-outer:before { + content: ':'; + background-color: white; + float: left; + text-align: right; + width: 12px; +} + +.vimvixen-footerline-container-inner { + position: absolute; + left: 12px; + right: 0; +} + +.vimvixen-footerline-input { + margin: 0; + padding: 0; + width: 100%; + border: none; +} |