mirror of
https://shylinux.com/x/volcanos
synced 2025-04-26 01:04:06 +08:00
59 lines
1.3 KiB
CSS
59 lines
1.3 KiB
CSS
|
|
fieldset.editor>div.output input.editor {
|
|
position:absolute; padding:0; margin:0;
|
|
font-size:16px; font-family:monospace;
|
|
padding-left:9px;
|
|
|
|
background-color:#00000000; color:#00000000;
|
|
caret-color:yellow;
|
|
min-width:480px;
|
|
display:none;
|
|
}
|
|
fieldset.editor>div.output input.editor.insert {
|
|
caret-color:yellow;
|
|
display:block;
|
|
}
|
|
fieldset.editor>div.output input.editor.normal {
|
|
caret-color:blue;
|
|
display:block;
|
|
}
|
|
fieldset.editor>div.output input.editor.command {
|
|
display:none;
|
|
}
|
|
|
|
fieldset.editor>div.output input.command {
|
|
margin:0; padding:0 12px;
|
|
font-size:16px; font-family:monospace;
|
|
background-color:black; color:white;
|
|
caret-color:red;
|
|
|
|
min-width:480px;
|
|
border:solid 1px red;
|
|
border-left:solid 3px green;
|
|
}
|
|
fieldset.editor>div.output input.command.normal {
|
|
display:none;
|
|
}
|
|
fieldset.editor>div.output input.command.insert {
|
|
display:none;
|
|
}
|
|
|
|
fieldset.editor>div.output div.display {
|
|
border:solid 2px greenyellow;
|
|
padding:6px;
|
|
}
|
|
fieldset.editor>div.output div.display div.action {
|
|
padding-left:6px;
|
|
}
|
|
fieldset.editor>div.output div.display div.output {
|
|
padding:0; border:0; overflow:auto;
|
|
color:white;
|
|
}
|
|
fieldset.editor>div.output div.display input.cmd {
|
|
font-size:16px; font-family:monospace;
|
|
background-color:black; color:white;
|
|
min-width:480px;
|
|
}
|
|
|
|
|