diff options
| author | Joel Martin <github@martintribe.org> | 2014-04-26 16:03:03 -0500 |
|---|---|---|
| committer | Joel Martin <github@martintribe.org> | 2014-04-26 16:03:03 -0500 |
| commit | a9993e0a683bc56ef091762e192fdb47676be82b (patch) | |
| tree | 0cfb8d4825fb056c0b10698b3aa58261de981fc4 /js/web/console.css | |
| parent | e4393504176dc4da117fde95fc10181a2ea6f929 (diff) | |
| download | mal-a9993e0a683bc56ef091762e192fdb47676be82b.tar.gz mal-a9993e0a683bc56ef091762e192fdb47676be82b.zip | |
JS web: use/import to Himera style web REPL.
Diffstat (limited to 'js/web/console.css')
| -rw-r--r-- | js/web/console.css | 52 |
1 files changed, 30 insertions, 22 deletions
diff --git a/js/web/console.css b/js/web/console.css index 454fbcb..5454fd1 100644 --- a/js/web/console.css +++ b/js/web/console.css @@ -1,28 +1,9 @@ -html, body { - background-color: #333; - color: white; - font-family: monospace; - margin: 0; - padding: 0; -} +/* Outer console element */ #console { - height: 400px; - width: 750px; - position:relative; - background-color: black; - border: 2px solid #CCC; - margin: 0 auto; - margin-top: 50px; } +/* The inner console element. */ .jqconsole { - padding: 10px; - padding-bottom: 10px; -} -.jqconsole-cursor { - background-color: #999; -} -.jqconsole-blurred .jqconsole-cursor { - background-color: #666; + background-color: black;; } .jqconsole-prompt { color: #0d0; @@ -38,6 +19,33 @@ html, body { color: #bb0; font-weight: normal; } +.jqconsole-output { + font-weight: lighter; + font-family:monospace; + color: grey; +} +.jqconsole-return { + font-weight: normal; + font-family:monospace; + color: white; +} +.jqconsole-error { + font-weight: normal; + font-family:monospace; + color: red; +} +/* The cursor. */ +.jqconsole-cursor { + font-weight: normal; + font-family:monospace; + background-color: #BDB; +} +/* The cursor color when the console looses focus. */ +.jqconsole-blurred .jqconsole-cursor { + font-weight: normal; + font-family:monospace; + background-color: #444; +} .brace { color: #00FFFF; } |
