-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconsole.css
57 lines (50 loc) · 1.01 KB
/
console.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
54
55
56
57
.error-msg {
color: crimson;
}
.log-msg {
color: #444;
}
.error-msg, .log-msg {
display : block;
padding : 10px;
margin : 10px;
background : beige;
-webkit-border-radius : 5px;
-moz-border-radius : 5px;
border-radius : 5px;
}
.error-msg, .log-msg, .jqconsole-prompt, .jqconsole-old-prompt {
font : 16px 'Droid Sans Mono', 'Ubuntu Mono', 'Consolas', monospace;
}
.jqconsole {
padding : 10px;
padding-bottom : 10px;
background : #fffdf9;
}
.jqconsole-cursor {
background-color: #999;
}
.jqconsole-blurred .jqconsole-cursor {
background-color: #666;
}
.jqconsole-prompt {
color: #4a473a;
}
.jqconsole-old-prompt {
font-weight : normal;
color : #b7b4a8;
}
.jqconsole-prompt, .jqconsole-old-prompt {
margin: 10px;
word-wrap: break-word;
white-space: pre-wrap;
}
.brace {
color: #0ff;
}
.paran {
color: #f0f;
}
.bracket {
color: #ff0;
}