-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.css
53 lines (52 loc) · 1002 Bytes
/
default.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
html, body {
background-color: white;
color: black;
font-family: monospace;
margin: 0;
padding: 0;
margin-bottom: 25px;
}
/* The console container element */
/*#console {
height: 400px;
width: 750px;
position:relative;
background-color: black;
border: 2px solid #CCC;
margin: 0 auto;
margin-top: 50px;
} */
/* 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: #00f;
}
/* The command history */
.jqconsole-old-prompt {
color: #b00;
font-weight: normal;
}
/* The text color when in input mode. */
.jqconsole-input {
color: #d00;
}
/* Previously entered input. */
.jqconsole-old-input {
color: #b00;
font-weight: normal;
}
/* The text color of the output. */
.jqconsole-output {
color: blue;
}