From 5f8015714f94a7d1785cf148c257d3be72d1e6c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=C5=A1=20Smodi=C5=A1?= Date: Mon, 13 Jul 2015 17:56:49 +0200 Subject: Initial commit: bare page for Prolog tasks with editor and command prompt, lightweight task definition parser of pythonic assignment statements. --- css/codeq.css | 84 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 css/codeq.css (limited to 'css/codeq.css') diff --git a/css/codeq.css b/css/codeq.css new file mode 100644 index 0000000..15a0e23 --- /dev/null +++ b/css/codeq.css @@ -0,0 +1,84 @@ +html { + width: 100%; + height: 100%; + background-color: whitesmoke; + padding: 0; + margin: 0; + border: none; +} + +body { + width: 100%; + height: 100%; + mrgin: 0 auto; + padding: 0; + border: none; + color: black; + font-family: Trebuchet MS, Verdana, Tahoma, sans-serif; + background-color: red; +} + +#gui { + width: 100%; + height: 100%; +} + +.block { + width: 100%; + min-height: 10%; + background-color: #ddffdd; +} + +nav { + background-color: #e6db74; +} + +nav > ul li { + list-style: none; + display: inline; + padding: 0 10px; +} + +/* console */ +#console { + font-size: 14px +} +#console div.jquery-console-inner { + width:900px; + height:200px; + background:#333; + padding:0.5em; + overflow:auto +} +#console div.jquery-console-prompt-box { + color:#fff; + font-family:monospace; +} +#console div.jquery-console-focus span.jquery-console-cursor { + background:#fefefe; + color:#333; + font-weight:bold +} +#console div.jquery-console-message-error { + color:#ef0505; + font-family:sans-serif; + font-weight:bold; + padding:0.1em; +} +#console div.jquery-console-message-value { + color:#1ad027; + font-family:monospace; + padding:0.1em; +} +#console div.jquery-console-message-type { + color:#52666f; + font-family:monospace; + padding:0.1em; +} +#console span.jquery-console-prompt-label { + font-weight:bold +} +#console div.jquery-console-message { + color: #ddffdd; + font-family: monospace; +} \ No newline at end of file -- cgit v1.2.1