aboutsummaryrefslogtreecommitdiff
path: root/js/web/console.css
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2014-04-26 14:19:49 -0500
committerJoel Martin <github@martintribe.org>2014-04-26 14:19:49 -0500
commite4393504176dc4da117fde95fc10181a2ea6f929 (patch)
tree1d33db0f4a66edf23dc8b7149bfd080eb2433268 /js/web/console.css
parent9b1563a3fb98f04c8280a8840b7dce4f3549234d (diff)
downloadmal-e4393504176dc4da117fde95fc10181a2ea6f929.tar.gz
mal-e4393504176dc4da117fde95fc10181a2ea6f929.zip
JS: switch from josh.js console to jqconsole.
js/web/jqconsole.min.js and web/ansi.css are from https://github.com/replit/jq-console and licensed MIT.
Diffstat (limited to 'js/web/console.css')
-rw-r--r--js/web/console.css55
1 files changed, 55 insertions, 0 deletions
diff --git a/js/web/console.css b/js/web/console.css
new file mode 100644
index 0000000..454fbcb
--- /dev/null
+++ b/js/web/console.css
@@ -0,0 +1,55 @@
+html, body {
+ background-color: #333;
+ color: white;
+ font-family: monospace;
+ margin: 0;
+ padding: 0;
+}
+#console {
+ height: 400px;
+ width: 750px;
+ position:relative;
+ background-color: black;
+ border: 2px solid #CCC;
+ margin: 0 auto;
+ margin-top: 50px;
+}
+.jqconsole {
+ padding: 10px;
+ padding-bottom: 10px;
+}
+.jqconsole-cursor {
+ background-color: #999;
+}
+.jqconsole-blurred .jqconsole-cursor {
+ background-color: #666;
+}
+.jqconsole-prompt {
+ color: #0d0;
+}
+.jqconsole-old-prompt {
+ color: #0b0;
+ font-weight: normal;
+}
+.jqconsole-input {
+ color: #dd0;
+}
+.jqconsole-old-input {
+ color: #bb0;
+ font-weight: normal;
+}
+.brace {
+ color: #00FFFF;
+}
+.paren {
+ color: #FF00FF;
+}
+.bracket {
+ color: #FFFF00;
+}
+.dquote {
+ color: #FF8888;
+}
+.jqconsole-composition {
+ background-color: red;
+}