-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcssConsole.css
More file actions
53 lines (48 loc) · 784 Bytes
/
cssConsole.css
File metadata and controls
53 lines (48 loc) · 784 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
.cssConsole {
position:relative;
font-family: courier;
font-size: 14px;
background: black;
color: #21f838;
padding: 5px;
overflow: hidden;
height: 20px;
cursor:text;
}
.cssConsoleDisplay {
float: left;
padding-left: 3px;
white-space: pre;
}
.cssConsoleInput {
position:absolute;
left:0px;
top:-30px;
opacity: 0;
filter:alpha(opacity=0);
}
.cssConsoleCursor {
float: left;
background: #21f838;
width:8px;
height:17px;
margin:0;
padding:0;
padding-right:1px;
padding-left:1px;
visibility: hidden;
}
.cssConsoleDisplay span.selected {
background: #21f838;
color: black;
}
.cssConsoleDisplay span {
background: black;
color: #21f838;
margin:0;
padding:0;
padding-right:1px;
padding-left:1px;
height:14px;
line-height:14px;
}