2024-08-21 20:01:33 +00:00
|
|
|
body {
|
|
|
|
margin-left: 20px;
|
|
|
|
margin-top: 20px;
|
|
|
|
color: #fcfcfc;
|
|
|
|
background-color: #202020;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 600px;
|
|
|
|
}
|
|
|
|
|
|
|
|
canvas {
|
|
|
|
float: left;
|
|
|
|
background-color: #020202;
|
2024-09-09 09:15:04 +00:00
|
|
|
border: 1px solid #555;
|
2024-08-21 20:01:33 +00:00
|
|
|
border-radius: 10px;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2024-09-09 09:15:04 +00:00
|
|
|
canvas:focus {
|
|
|
|
border-color: #aaa;
|
|
|
|
}
|
|
|
|
|
2024-09-04 23:27:28 +00:00
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.control, .tab-pane {
|
2024-08-26 08:47:53 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
width: 600px;
|
|
|
|
}
|
|
|
|
|
2024-09-04 23:27:28 +00:00
|
|
|
input[type="radio"] {
|
2024-09-09 09:15:04 +00:00
|
|
|
appearance: none;
|
|
|
|
width: 0px;
|
|
|
|
height: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
outline: none;
|
2024-09-04 23:27:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tab-pane > label {
|
|
|
|
border: 1px solid #aaa;
|
|
|
|
border-radius: 5px;
|
|
|
|
text-align: center;
|
|
|
|
padding: 5px;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-pane > label:has(:checked) {
|
|
|
|
border-color: #fcfcfc;
|
|
|
|
background-color: #555;
|
|
|
|
}
|
|
|
|
|
2024-09-09 09:15:04 +00:00
|
|
|
.tab-pane > label:has(:focus-visible) {
|
|
|
|
outline: medium auto currentColor;
|
|
|
|
}
|
|
|
|
|
2024-09-04 23:27:28 +00:00
|
|
|
.tab-pane > label:hover:not(:has(:checked)) {
|
|
|
|
border-color: #bbb;
|
|
|
|
background-color: #333;
|
|
|
|
}
|
|
|
|
|
2024-09-09 07:32:29 +00:00
|
|
|
.control > span {
|
2024-09-04 23:27:28 +00:00
|
|
|
width: 170px;
|
2024-08-26 08:47:53 +00:00
|
|
|
}
|
|
|
|
|
2024-08-21 20:01:33 +00:00
|
|
|
input {
|
2024-08-26 08:47:53 +00:00
|
|
|
flex-grow: 1;
|
2024-08-21 20:01:33 +00:00
|
|
|
}
|