2022-11-17 22:37:28 -06:00
|
|
|
* {
|
|
|
|
font-size: 100%;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
}
|
|
|
|
|
2022-11-16 16:52:11 -06:00
|
|
|
.container {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.backgroundCanvas {
|
|
|
|
background-color: #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.maskPaintCanvas {
|
|
|
|
border: 3px dotted #993355C0
|
|
|
|
}
|
|
|
|
|
|
|
|
.overlayCanvas {
|
|
|
|
border: 1px solid #F00;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tempCanvas {
|
|
|
|
border: 3px dotted #007AFFC0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.targetCanvas {
|
|
|
|
border: 2px dashed #0F0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.canvas {
|
|
|
|
border: 2px dotted #00F;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mainHSplit {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
grid-template-rows: repeat(2, 1fr);
|
|
|
|
grid-column-gap: 5px;
|
|
|
|
grid-row-gap: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.uiWrapper {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 15fr;
|
|
|
|
grid-template-rows: 1fr;
|
|
|
|
grid-column-gap: 5px;
|
|
|
|
grid-row-gap: 5px;
|
2022-11-19 15:48:12 -06:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#infoContainer {
|
|
|
|
position: absolute;
|
|
|
|
width: 250px;
|
|
|
|
height: auto;
|
|
|
|
z-index: 999;
|
|
|
|
|
|
|
|
}
|
2022-11-20 10:24:17 -06:00
|
|
|
#draggable{
|
|
|
|
cursor:move
|
|
|
|
}
|
2022-11-19 15:48:12 -06:00
|
|
|
|
|
|
|
#DraggableTitleBar {
|
|
|
|
z-index: 999;
|
|
|
|
cursor: move;
|
|
|
|
background-color: rgba(104, 104, 104, 0.75);
|
|
|
|
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
margin-bottom: auto;
|
|
|
|
font-size: 1.5em;
|
|
|
|
color: black;
|
|
|
|
text-align: center;
|
|
|
|
border-top-left-radius: 10px;
|
|
|
|
border-top-right-radius: 10px;
|
|
|
|
border: solid;
|
|
|
|
border-bottom: none;
|
|
|
|
border-color: black;
|
|
|
|
}
|
|
|
|
|
2022-11-20 11:59:11 -06:00
|
|
|
.toolbar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar > .tool {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar > .tool:not(:last-child) {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.tool {
|
|
|
|
background-color: rgb(0, 0, 50);
|
|
|
|
color: rgb(255, 255, 255);
|
|
|
|
border-radius: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
border: none;
|
|
|
|
text-align: center;
|
|
|
|
outline: none;
|
|
|
|
font-size: 15px;
|
|
|
|
padding: 5px;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.tool:hover {
|
|
|
|
background-color: #667;
|
|
|
|
}
|
|
|
|
|
2022-11-19 15:48:12 -06:00
|
|
|
.collapsible {
|
|
|
|
background-color: rgb(0, 0, 0);
|
|
|
|
color: rgb(255, 255, 255);
|
|
|
|
border-radius: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
text-align: center;
|
|
|
|
outline: none;
|
|
|
|
font-size: 15px;
|
|
|
|
padding: 5px;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapsible:hover {
|
|
|
|
background-color: #777;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
max-height: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
transition: max-height 0.2s ease-out;
|
2022-11-16 16:52:11 -06:00
|
|
|
}
|
|
|
|
|
2022-11-19 15:48:12 -06:00
|
|
|
.info {
|
|
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
|
|
|
|
color: black;
|
|
|
|
border: solid;
|
|
|
|
border-top: none;
|
|
|
|
border-color: black;
|
|
|
|
font-size: medium;
|
|
|
|
text-align: left;
|
|
|
|
max-height: fit-content;
|
|
|
|
overflow: auto;
|
|
|
|
cursor: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-16 16:52:11 -06:00
|
|
|
.canvasHolder {
|
|
|
|
position: relative;
|
|
|
|
width: 2560px;
|
|
|
|
height: 1440px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mainCanvases {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
width: 2560px;
|
|
|
|
height: 1440px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.masks {
|
|
|
|
display: grid;
|
2022-11-17 21:21:48 -06:00
|
|
|
grid-template-columns: repeat(3, 1fr);
|
2022-11-16 16:52:11 -06:00
|
|
|
grid-template-rows: 1fr;
|
|
|
|
grid-column-gap: 0px;
|
|
|
|
grid-row-gap: 0px;
|
|
|
|
}
|
|
|
|
|
2022-11-19 16:11:48 -06:00
|
|
|
.maskCanvasMonitor .overMaskCanvasMonitor .initImgCanvasMonitor {
|
2022-11-16 16:52:11 -06:00
|
|
|
position: absolute;
|
2022-11-19 22:10:20 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.strokeText {
|
|
|
|
-webkit-text-stroke: 1px #888;
|
|
|
|
font-size: 150%;
|
|
|
|
color: #000;
|
2022-11-16 16:52:11 -06:00
|
|
|
}
|