-
Notifications
You must be signed in to change notification settings - Fork 3
/
terminal.css
63 lines (62 loc) · 1.28 KB
/
terminal.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
58
59
60
61
62
.terminal .clipboard {
position: absolute;
bottom: 0;
left: 0;
opacity: 0.01;
filter: alpha(opacity = 0.01);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.01);
width: 2px;
}
.cmd > .clipboard {
position: fixed;
}
.terminal {
padding: 10px;
position: relative;
overflow: hidden;
}
.cmd {
padding: 0;
margin: 0;
height: 1.3em;
}
.terminal .terminal-output div {
display: block;
}
.terminal, .terminal .terminal-output, .terminal .terminal-output div,
.terminal .terminal-output div div, .cmd, .terminal .cmd span, .terminal .cmd div {
font-family: monospace;
/*color: #aaa;
background-color: #000;*/
background-color: #eee;
font-size: 12px;
line-height: 16px;
}
.terminal .cmd span {
float: left;
}
.terminal .cmd span.inverted {
background-color: #000;
color: #fff;
}
.terminal div::-moz-selection, .terminal span::-moz-selection {
background-color: #000;
color: #fff;
}
.terminal div::selection, .terminal span::selection {
background-color: #000;
color: #fff;
}
.terminal .terminal-output div.error, .terminal .terminal-output div.error div {
color: red;
}
.tilda {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1100;
}
.clear {
clear: both;
}