diff options
author | Aleš Smodiš <aless@guru.si> | 2015-09-02 22:02:29 +0200 |
---|---|---|
committer | Aleš Smodiš <aless@guru.si> | 2015-09-02 22:02:29 +0200 |
commit | 4f4b1a97d3a2c6962fb9c1c230ab054deed82926 (patch) | |
tree | b714522a0e8bbcc168e10df8c2ace8d21d1014f6 /css/codeq | |
parent | 5c4f726e7dc79735376fde9514768d8b7c9c049a (diff) |
Bugfixed CodeQ Console, loaded it from prolog.html, added CSS and cursor blinking.
Diffstat (limited to 'css/codeq')
-rw-r--r-- | css/codeq/console.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/css/codeq/console.css b/css/codeq/console.css new file mode 100644 index 0000000..3e00913 --- /dev/null +++ b/css/codeq/console.css @@ -0,0 +1,17 @@ +.cq-con { + background: black; + color: greenyellow; + font-family: "Courier Menlo", Monaco, Consolas, "Courier New", monospace; + font-size: medium; +} +.cq-con-text { + +} +.cq-con-cursor { + color: black; + background: greenyellow; +} +.cq-con-cursor.inverted { + color: greenyellow; + background: black; +} |