1
0
mirror of https://shylinux.com/x/volcanos synced 2025-04-25 16:58:06 +08:00
volcanos/page/black.css
2020-03-01 04:26:47 +08:00

76 lines
1.3 KiB
CSS

body, fieldset {
color: white;
background-color:black;
}
fieldset.item {
border:ridge 1px cyan;
margin:2px;
}
fieldset.item:hover {
/* background-color:gold; */
border:ridge 2px red;
}
fieldset.item.select {
/* background-color:gold; */
border:ridge 2px red;
}
fieldset.input {
border:solid 2px yellow;
}
fieldset.input table tr:hover {
background-color:yellow;
}
fieldset.input table td:hover {
background-color:red;
cursor:pointer;
}
fieldset.input table td.select {
background-color:red;
}
fieldset.story {
border:ridge 1px cyan;
margin:2px;
}
fieldset input {
font-size:12px;
}
fieldset input.args {
background-color:cyan;
font-weight:600;
width:80px;
}
fieldset input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
color:green;
}
fieldset table tr:hover {
background-color:#0fbd45;
}
fieldset table tr.over {
background:red;
}
fieldset table tr.select {
background-color:#0fbd45;
}
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;
}