-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.terminal.css
91 lines (90 loc) · 1.92 KB
/
jquery.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
.terminal .terminal-output .format, .terminal .cmd .format,
.terminal .cmd .prompt, .terminal .cmd .prompt div, .terminal .terminal-output div div{
display: inline;
}
.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: scroll;
}
.cmd {
padding: 0;
margin: 0;
height: 1.3em;
/*margin-top: 3px; */
}
.terminal .terminal-output div div, .terminal .prompt {
display: block;
line-height: 14px;
height: auto;
}
.terminal .prompt {
float: left;
}
.terminal {
font-family: FreeMono, monospace;
color: #ffffff;
background-color: #000;
font-size: 20px;
line-height: 10px;
}
.terminal-output > div {
/*padding-top: 3px;*/
min-height: 25px;
}
.terminal .terminal-output div span {
display: inline-block;
}
.terminal .cmd span {
float: left;
/*display: inline-block; */
}
.terminal .cmd span.inverted {
background-color: #aaa;
color: #000;
}
.terminal .terminal-output div div::-moz-selection,
.terminal .terminal-output div span::-moz-selection,
.terminal .terminal-output div div a::-moz-selection {
background-color: #aaa;
color: #000;
}
.terminal .terminal-output div div::selection,
.terminal .terminal-output div div a::selection,
.terminal .terminal-output div span::selection,
.terminal .cmd > span::selection,
.terminal .prompt span::selection {
background-color: #aaa;
color: #000;
}
.terminal .terminal-output div.error, .terminal .terminal-output div.error div {
color: red;
}
.tilda {
/*position: absolute;*/
top: 0;
left: 0;
/*width: 100%;*/
/* z-index: 1100;*/
}
.clear {
clear: both;
}
.terminal a {
color: #0F60FF;
}
.terminal a:hover {
color: red;
}