67 lines
No EOL
1.1 KiB
CSS
67 lines
No EOL
1.1 KiB
CSS
.demo-render {
|
|
margin: 20px;
|
|
width: min-content;
|
|
background-color: #000;
|
|
}
|
|
|
|
.controlbar {
|
|
background-color: #181818;
|
|
padding: 2px 5px;
|
|
height: max-content;
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
align-content: stretch;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.controlbar button,
|
|
.controlbar input {
|
|
padding: 4px 6px;
|
|
height: 25px;
|
|
border: 1px solid #000;
|
|
border: 0;
|
|
cursor: pointer;
|
|
-webkit-box-flex: 1;
|
|
-ms-flex-positive: 1;
|
|
flex-grow: 1;
|
|
margin: 2px;
|
|
}
|
|
|
|
.controlbar label {
|
|
background-color: #181818;
|
|
color: #fb8;
|
|
margin: 2px;
|
|
font-family: 'Consolas', 'Courier New', Courier, monospace;
|
|
}
|
|
|
|
.clickable,
|
|
nav li,
|
|
.controlbar button,
|
|
.controlbar input {
|
|
border-radius: 2px;
|
|
background-color: #4a4;
|
|
}
|
|
|
|
.clickable:hover,
|
|
nav li:hover,
|
|
.controlbar button:hover,
|
|
.controlbar input:hover {
|
|
background-color: #4af;
|
|
}
|
|
|
|
.clickable:active,
|
|
nav li:active,
|
|
.controlbar button:active,
|
|
.controlbar input:active {
|
|
background-color: #46c;
|
|
}
|
|
|
|
.clickable:disabled,
|
|
nav li:disabled,
|
|
.controlbar button:disabled,
|
|
.controlbar input:disabled {
|
|
background-color: #8b8;
|
|
text-decoration: line-through;
|
|
color: #000;
|
|
cursor: default;
|
|
} |