mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-21 02:29:23 +00:00
64 lines
1.1 KiB
CSS
64 lines
1.1 KiB
CSS
.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 {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.cmd {
|
|
padding: 0;
|
|
margin: 0;
|
|
height: 1.3em;
|
|
}
|
|
.terminal .terminal-output div {
|
|
display: block;
|
|
}
|
|
.terminal {
|
|
font-family: FreeMono, monospace;
|
|
color: #aaa;
|
|
background-color: #000;
|
|
line-height: 14px;
|
|
}
|
|
.terminal .cmd span {
|
|
float: left;
|
|
}
|
|
.terminal .cmd span.inverted {
|
|
background-color: #aaa;
|
|
color: #000;
|
|
}
|
|
.terminal div::-moz-selection, .terminal span::-moz-selection {
|
|
background-color: #aaa;
|
|
color: #000;
|
|
}
|
|
.terminal div::selection, .terminal span::selection {
|
|
background-color: #aaa;
|
|
color: #000;
|
|
}
|
|
.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;
|
|
}
|
|
.terminal a {
|
|
color: #0F60FF;
|
|
}
|
|
.terminal a:hover {
|
|
color: red;
|
|
}
|