2021-05-28 02:43:42 +00:00
|
|
|
html, body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2021-05-28 04:25:41 +00:00
|
|
|
font-size: 12px;
|
|
|
|
|
color: #333333;
|
2021-05-28 02:43:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#mount canvas {
|
|
|
|
|
/* border-right: 1px solid #aaaaaa40; */
|
2021-07-09 11:22:55 +00:00
|
|
|
border: 1px solid #aaaaaa2a;
|
2021-05-28 02:43:42 +00:00
|
|
|
background-image:
|
2021-07-09 11:22:55 +00:00
|
|
|
linear-gradient(#aaaaaa2a 1px, transparent 0),
|
|
|
|
|
linear-gradient(90deg, #aaaaaa2a 1px, transparent 0),
|
2021-09-26 14:27:39 +00:00
|
|
|
linear-gradient(#aaaaaa4a 1px, transparent 0),
|
|
|
|
|
linear-gradient(90deg, #aaaaaa4a 1px, transparent 0);
|
2021-05-28 02:43:42 +00:00
|
|
|
background-size: 10px 10px, 10px 10px, 50px 50px, 50px 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dashboard {
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 100%;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dashboard .row {
|
2021-10-17 03:35:49 +00:00
|
|
|
/* margin-top: 20px; */
|
2021-05-28 02:43:42 +00:00
|
|
|
display: flex;
|
|
|
|
|
width: 100%;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dashboard .row .col {
|
|
|
|
|
display: flex;
|
2021-10-17 03:35:49 +00:00
|
|
|
/* flex: 1;
|
|
|
|
|
width: 100%; */
|
2021-05-28 02:43:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.center {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.transform {
|
|
|
|
|
display: flex;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.transform input {
|
|
|
|
|
width: 100px;
|
|
|
|
|
margin-right: 12px;
|
2021-05-28 04:25:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.elem-item {
|
|
|
|
|
height: 32px;
|
2021-09-14 02:40:06 +00:00
|
|
|
min-width: 300px;
|
2021-05-28 04:25:41 +00:00
|
|
|
border: 1px solid #999999;
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
color: #666;
|
|
|
|
|
font-size: 14px;
|
2021-09-14 03:09:46 +00:00
|
|
|
user-select: none;
|
2021-05-28 04:25:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.elem-item:last-child {
|
|
|
|
|
border-bottom: 1px solid #999999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.elem-item-name {
|
2021-09-14 02:40:06 +00:00
|
|
|
margin: 0 10px;
|
2021-05-28 04:25:41 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.elem-item-btn {
|
|
|
|
|
float: right;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
height: 24px;
|
2021-09-14 02:40:06 +00:00
|
|
|
min-width: 40px;
|
|
|
|
|
padding: 0 6px;
|
2021-05-28 04:25:41 +00:00
|
|
|
border-radius: 12px;
|
|
|
|
|
border: 1px solid #cccccc;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
margin-right: 6px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-28 06:32:46 +00:00
|
|
|
.btn-hidden {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-28 04:25:41 +00:00
|
|
|
.elem-item-btn:hover {
|
|
|
|
|
color: #4183c4;
|
|
|
|
|
border-color: #4183c4;
|
2021-10-17 03:35:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#mount {
|
2021-10-17 03:58:10 +00:00
|
|
|
margin-top: 20px;
|
|
|
|
|
margin-left: 20px;
|
2021-05-28 02:43:42 +00:00
|
|
|
}
|