console.css
1005 Bytes
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
58
/*console*/
.console {
position: relative;
background-color: transparent;
border-top: 1px solid #dfe0e1;
color: #333;
min-height: 15em;
height: auto;
margin: 2em 0;
padding: 0;
overflow-x: hidden;
overflow-y: auto
text-align: left;
}
.console .count {
background-color: #26c6da;
box-sizing: border-box;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius: 15px;
color: #FFFFFF;
font-size: .7em;
font-weight: bold;
margin-left: 1em;
padding: 4px 8px;
}
.console div {
background-position: 6px -95px;
border-bottom: 1px solid #f8fafb;
padding: 0;
line-height: 2.5;
min-height: 2.5em;
color: #333;
vertical-align: middle;
text-indent: 1em;
}
.console .error {
background-position: 6px -135px;
}
.km-root .km-android .console .count {
background-color: #f00;
background-clip: border-box;
font-weight: bold;
}
.km-root .km-wp .console .count {
font-size: 1em;
}
.demo-section .console {
width: 300px;
margin: 0;
}