X-Git-Url: http://repo.macrolet.net/gitweb/?p=jscl.git;a=blobdiff_plain;f=style.css;fp=style.css;h=84174e21eec0e6d333c1091390272878a67b504f;hp=0000000000000000000000000000000000000000;hb=ac605fc4fba4b53a8624a5812e00dd98b589de4c;hpb=b1f973779a7f84645eb5b11f3839d2ed8f2c6290 diff --git a/style.css b/style.css new file mode 100644 index 0000000..84174e2 --- /dev/null +++ b/style.css @@ -0,0 +1,56 @@ +/* The console container element */ +body { background-color: black; font-size: 16px; font-family: Courier; overflow: hidden; padding: 0 0 0 0;} + +#console { + position: absolute; + top: 0px; + bottom: 0px; + left: 0px; + right: 0px; + background-color:black; +} + +.parents { + font-weight: bold; +} + +/* The inner console element. */ +.jqconsole { + padding: 10px; +} +/* The cursor. */ +.jqconsole-cursor { + background-color: gray; +} +/* The cursor color when the console looses focus. */ +.jqconsole-blurred .jqconsole-cursor { + background-color: #666; +} +/* The current prompt text color */ +.jqconsole-prompt { + color: White; +} +/* The command history */ +.jqconsole-old-prompt { + color: White; + font-weight: normal; +} +/* The text color when in input mode. */ +.jqconsole-input { + color: White; +} +/* Previously entered input. */ +.jqconsole-old-input { + color: White; + font-weight: normal; +} +/* The text color of the output. */ +.jqconsole-output { + color: green; +} +.jqconsole-return, .jqconsole-header { + color: gray; +} +.jqconsole-error { + color: red; +}