mirror of
https://shylinux.com/x/volcanos
synced 2025-04-25 16:58:06 +08:00
188 lines
3.2 KiB
CSS
188 lines
3.2 KiB
CSS
body {
|
|
background:black;
|
|
padding:0;
|
|
margin:0;
|
|
}
|
|
fieldset {
|
|
color:cyan;
|
|
padding:2px;
|
|
}
|
|
legend {
|
|
margin-left:10px;
|
|
}
|
|
div.hidden {
|
|
display:none;
|
|
}
|
|
|
|
fieldset>form.option {
|
|
padding:0 5px;
|
|
}
|
|
fieldset>form.option>br {
|
|
clear:both;
|
|
}
|
|
fieldset>form.option>div.item {
|
|
margin-right:3px;
|
|
float:left;
|
|
}
|
|
fieldset>form.option>div.item label {
|
|
margin-right:3px;
|
|
}
|
|
fieldset>form.option>div.item input.args.char {
|
|
width:20px;
|
|
}
|
|
fieldset>form.option>div.item input.args.tiny {
|
|
width:40px;
|
|
}
|
|
fieldset>form.option>div.item input.args {
|
|
width:80px;
|
|
}
|
|
fieldset>form.option>div.item input.args.cmd {
|
|
background-color:black;
|
|
color:white;
|
|
width:160px;
|
|
}
|
|
fieldset>form.option>div.item input.args.long {
|
|
width:240px;
|
|
}
|
|
fieldset>form.option>div.item input.args.full {
|
|
width:480px;
|
|
}
|
|
fieldset>form.option>div.item input.opts {
|
|
width:80px;
|
|
}
|
|
fieldset>form.option>div.item textarea.args {
|
|
background-color:cyan;
|
|
width:300px;
|
|
height:50px;
|
|
}
|
|
fieldset>form.option>div.item.text>input {
|
|
background-color:cyan;
|
|
}
|
|
fieldset>form.option>div.item.button>input {
|
|
background:black;
|
|
color:cyan;
|
|
}
|
|
fieldset>form.option>div.item.select>select {
|
|
background:black;
|
|
color:cyan;
|
|
}
|
|
fieldset>form.option>div.item.textarea {
|
|
margin-top:4px;
|
|
clear:both;
|
|
}
|
|
|
|
fieldset>div.action {
|
|
clear:both;
|
|
}
|
|
fieldset>div.action>div.item {
|
|
float:left;
|
|
}
|
|
fieldset>div.status>div.item {
|
|
float:left;
|
|
padding:4px;
|
|
}
|
|
fieldset>div.status>div.item>label {
|
|
font-size:14px;
|
|
color:gray;
|
|
}
|
|
|
|
fieldset div.output {
|
|
margin-top:4px;
|
|
clear:both;
|
|
overflow:auto;
|
|
}
|
|
fieldset div.output>div.project {
|
|
float:left;
|
|
}
|
|
fieldset div.output>div.project>div.item {
|
|
clear:both;
|
|
}
|
|
fieldset div.output>div.project>div.item:hover {
|
|
border:solid 1px red;
|
|
}
|
|
fieldset div.output>pre.display {
|
|
padding:4px;
|
|
max-height:80px;
|
|
border:solid 2px red;
|
|
margin:0;
|
|
overflow:auto;
|
|
}
|
|
fieldset div.code {
|
|
color:white;
|
|
font-size:14px;
|
|
font-family:monospace;
|
|
background-color:#343a34f2;
|
|
white-space:pre;
|
|
padding:10px;
|
|
overflow:auto;
|
|
border:solid 3px green;
|
|
max-height:640px;
|
|
}
|
|
|
|
fieldset table {
|
|
font-size:14px;
|
|
cursor:pointer;
|
|
border:solid 1px green;
|
|
overflow: auto;
|
|
}
|
|
fieldset table tr:hover {
|
|
background-color:#0fbd45;
|
|
}
|
|
fieldset table tr.select {
|
|
background-color:#0fbd45;
|
|
}
|
|
fieldset table tr.over {
|
|
background:red;
|
|
}
|
|
fieldset table th {
|
|
font-family:monospace;
|
|
background-color:#0fbd45;
|
|
cursor:pointer;
|
|
padding: 0 6px;
|
|
}
|
|
fieldset table td {
|
|
max-width:1200px;
|
|
font-family:monospace;
|
|
padding: 0 6px;
|
|
white-space: pre;
|
|
}
|
|
fieldset table td:hover {
|
|
background-color:red;
|
|
}
|
|
fieldset table td.select {
|
|
background-color:red;
|
|
}
|
|
|
|
div.carte {
|
|
background:black;
|
|
border:solid 2px red;
|
|
position:absolute;
|
|
}
|
|
div.carte div.item {
|
|
padding:0 5px;
|
|
}
|
|
div.carte div.item:hover {
|
|
background:red;
|
|
border:solid 2px yellow;
|
|
cursor:pointer;
|
|
}
|
|
|
|
div.toast {
|
|
background:black;
|
|
border:solid 2px red;
|
|
position:absolute;
|
|
padding:5px;
|
|
color:yellow
|
|
}
|
|
div.toast div.title {
|
|
font-size:14px;
|
|
color:gray;
|
|
}
|
|
div.toast div.content {
|
|
text-align:center;
|
|
}
|
|
div.toast div.duration {
|
|
font-size:14px;
|
|
color:gray;
|
|
}
|