Fix comment
[jscl.git] / style.css
1 /* The console container element */
2 body { background-color: black; font-size: 16px; font-family: Courier; overflow: hidden; padding: 0 0 0 0;}
3
4 #console {
5     position: absolute;
6     top: 0px;
7     bottom: 0px;
8     left: 0px;
9     right: 0px;
10     background-color:black;
11 }
12
13 .parents {
14     font-weight: bold;
15 }
16
17 /* The inner console element. */
18 .jqconsole {
19     padding: 10px;
20 }
21 /* The cursor. */
22 .jqconsole-cursor {
23     background-color: gray;
24 }
25 /* The cursor color when the console looses focus. */
26 .jqconsole-blurred .jqconsole-cursor {
27     background-color: #666;
28 }
29 /* The current prompt text color */
30 .jqconsole-prompt {
31     color: White;
32 }
33 /* The command history */
34 .jqconsole-old-prompt {
35     color: White;
36     font-weight: normal;
37 }
38 /* The text color when in input mode. */
39 .jqconsole-input {
40     color: White;
41 }
42 /* Previously entered input. */
43 .jqconsole-old-input {
44     color: White;
45     font-weight: normal;
46 }
47 /* The text color of the output. */
48 .jqconsole-output {
49     color: green;
50 }
51 .jqconsole-return, .jqconsole-header {
52     color: gray;
53 }
54 .jqconsole-error {
55     color: red;
56 }