-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.css
More file actions
51 lines (47 loc) · 1 KB
/
Copy pathtemplate.css
File metadata and controls
51 lines (47 loc) · 1 KB
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
#on-screen-console { /* Console main body */
/* to align on-screen-console at page top use this style:
top: 0px;
bottom: auto;
border-top: none;
border-bottom: 0.3rem solid #888;
*/
}
/* Input prompt */
#on-screen-console input {
}
/* output area */
#on-screen-console div.output {
}
/* Output beeing generated via console.debug() */
#on-screen-console div.debug {
}
/* Output beeing generated via console.info() */
#on-screen-console div.info {
}
/* Output beeing generated via console.warn() */
#on-screen-console div.warn {
}
/* Output beeing generated via console.error() */
#on-screen-console div.error {
}
/* Internal types like undefined, null, booean values */
#on-screen-console span.internal {
}
/* Numbers */
#on-screen-console span.number {
}
/* Strings */
#on-screen-console span.string {
}
/* Objects */
#on-screen-console span.object {
}
/* Functions */
#on-screen-console span.function {
}
/* Errors */
#on-screen-console span.error {
}
/* object members */
#on-screen-console li>span:nth-child(1) {
}