2022-11-17 22:37:28 -06:00
|
|
|
* {
|
2022-11-21 05:27:21 -06:00
|
|
|
font-size: 100%;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2022-11-17 22:37:28 -06:00
|
|
|
}
|
2022-11-21 23:16:17 -06:00
|
|
|
body {
|
|
|
|
margin: 0px;
|
2022-11-21 06:05:57 -06:00
|
|
|
}
|
2022-11-17 22:37:28 -06:00
|
|
|
|
2022-11-16 16:52:11 -06:00
|
|
|
.container {
|
2022-11-21 05:27:21 -06:00
|
|
|
position: relative;
|
2022-11-16 16:52:11 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.backgroundCanvas {
|
2022-11-21 05:27:21 -06:00
|
|
|
background-color: #ccc;
|
2022-11-16 16:52:11 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.mainHSplit {
|
2022-11-21 05:27:21 -06:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
grid-template-rows: repeat(2, 1fr);
|
|
|
|
grid-column-gap: 5px;
|
|
|
|
grid-row-gap: 5px;
|
2022-11-16 16:52:11 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.uiWrapper {
|
2022-11-21 05:27:21 -06:00
|
|
|
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
|
|
|
|
2022-11-20 11:59:11 -06:00
|
|
|
.toolbar {
|
2022-11-21 05:27:21 -06:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2022-11-20 11:59:11 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar > .tool {
|
2022-11-21 05:27:21 -06:00
|
|
|
flex: 1;
|
2022-11-20 11:59:11 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar > .tool:not(:last-child) {
|
2022-11-21 05:27:21 -06:00
|
|
|
margin-right: 10px;
|
2022-11-20 11:59:11 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
button.tool {
|
2022-11-21 05:27:21 -06:00
|
|
|
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;
|
2022-11-20 11:59:11 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
button.tool:hover {
|
2022-11-21 05:27:21 -06:00
|
|
|
background-color: #667;
|
2022-11-20 11:59:11 -06:00
|
|
|
}
|
|
|
|
|
2022-11-19 15:48:12 -06:00
|
|
|
.collapsible {
|
2022-11-21 05:27:21 -06:00
|
|
|
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;
|
2022-11-19 15:48:12 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.collapsible:hover {
|
2022-11-21 05:27:21 -06:00
|
|
|
background-color: #777;
|
2022-11-19 15:48:12 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
2022-11-21 05:27:21 -06:00
|
|
|
max-height: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
transition: max-height 0.2s ease-out;
|
2022-11-16 16:52:11 -06:00
|
|
|
}
|
|
|
|
|
2022-11-22 16:24:55 -06:00
|
|
|
.menu-container {
|
2022-11-21 05:27:21 -06:00
|
|
|
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-19 15:48:12 -06:00
|
|
|
}
|
|
|
|
|
2022-11-16 16:52:11 -06:00
|
|
|
.canvasHolder {
|
2022-11-21 05:27:21 -06:00
|
|
|
position: relative;
|
|
|
|
width: 2560px;
|
|
|
|
height: 1440px;
|
2022-11-16 16:52:11 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.mainCanvases {
|
2022-11-21 05:27:21 -06:00
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
width: 2560px;
|
|
|
|
height: 1440px;
|
2022-11-16 16:52:11 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.masks {
|
2022-11-21 05:27:21 -06:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
grid-template-rows: 1fr;
|
|
|
|
grid-column-gap: 0px;
|
|
|
|
grid-row-gap: 0px;
|
2022-11-16 16:52:11 -06:00
|
|
|
}
|
|
|
|
|
2022-11-19 16:11:48 -06:00
|
|
|
.maskCanvasMonitor .overMaskCanvasMonitor .initImgCanvasMonitor {
|
2022-11-21 05:27:21 -06:00
|
|
|
position: absolute;
|
2022-11-19 22:10:20 -06:00
|
|
|
}
|
|
|
|
|
2022-11-20 20:29:50 -06:00
|
|
|
.maskPaintCanvas {
|
2022-11-21 05:27:21 -06:00
|
|
|
filter: opacity(40%);
|
2022-11-19 22:10:20 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.strokeText {
|
2022-11-21 18:04:05 -06:00
|
|
|
-webkit-text-stroke: 1px #000;
|
2022-11-21 05:27:21 -06:00
|
|
|
font-size: 150%;
|
2022-11-21 23:16:17 -06:00
|
|
|
font-weight: 600;
|
2022-11-21 18:04:05 -06:00
|
|
|
color: #fff;
|
2022-11-20 20:29:50 -06:00
|
|
|
}
|