aboutsummaryrefslogtreecommitdiff
path: root/src/command-line/command-line.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/command-line/command-line.scss')
-rw-r--r--src/command-line/command-line.scss42
1 files changed, 42 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..2256bf2
--- /dev/null
+++ b/src/command-line/command-line.scss
@@ -0,0 +1,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;
+ }
+ }
+}