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-24 21:34:34 -06:00
|
|
|
.button-array {
|
2022-11-21 05:27:21 -06:00
|
|
|
display: flex;
|
2022-11-24 21:34:34 -06:00
|
|
|
justify-content: stretch;
|
2022-11-20 11:59:11 -06:00
|
|
|
}
|
|
|
|
|
2022-11-24 21:34:34 -06:00
|
|
|
.button-array > .button.tool {
|
2022-11-21 05:27:21 -06:00
|
|
|
flex: 1;
|
2022-11-24 21:34:34 -06:00
|
|
|
border-radius: 0;
|
2022-11-20 11:59:11 -06:00
|
|
|
}
|
|
|
|
|
2022-11-24 21:34:34 -06:00
|
|
|
.button-array > .button.tool:first-child {
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-bottom-left-radius: 5px;
|
2022-11-20 11:59:11 -06:00
|
|
|
}
|
|
|
|
|
2022-11-24 21:34:34 -06:00
|
|
|
.button-array > .button.tool:last-child {
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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
|
|
|
}
|
|
|
|
|
2022-11-25 10:16:22 -06:00
|
|
|
.button.tool:disabled {
|
|
|
|
background-color: #666 !important;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2022-11-24 21:34:34 -06:00
|
|
|
.button.tool:hover {
|
|
|
|
background-color: rgb(30, 30, 80);
|
|
|
|
}
|
|
|
|
.button.tool:active {
|
|
|
|
background-color: rgb(60, 60, 130);
|
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;
|
2022-11-25 17:27:44 -06:00
|
|
|
overflow-y: clip;
|
|
|
|
overflow-x: visible;
|
|
|
|
transition: max-height 0.2s ease-out, height 0s 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;
|
2022-11-24 21:34:34 -06:00
|
|
|
overflow: visible;
|
2022-11-21 05:27:21 -06:00
|
|
|
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
|
|
|
}
|
2022-11-25 17:27:44 -06:00
|
|
|
|
|
|
|
#models {
|
|
|
|
width: 100%;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2022-11-26 10:10:37 -06:00
|
|
|
/* Host input */
|
|
|
|
.host-field-wrapper {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
height: fit-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.host-field-wrapper input {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.host-field-wrapper .connection-status {
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
|
|
|
|
box-sizing: inherit;
|
|
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
margin: 5px;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
aspect-ratio: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.host-field-wrapper .connection-status:hover {
|
|
|
|
width: 19px;
|
|
|
|
height: 19px;
|
|
|
|
|
|
|
|
margin: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.host-field-wrapper .connection-status:active {
|
|
|
|
width: 17px;
|
|
|
|
height: 17px;
|
|
|
|
|
|
|
|
margin: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.host-field-wrapper .connection-status.online {
|
|
|
|
background-color: #49dd49;
|
|
|
|
}
|
|
|
|
|
|
|
|
.host-field-wrapper .connection-status.offline {
|
|
|
|
background-color: #dd4949;
|
|
|
|
}
|
|
|
|
|
|
|
|
.host-field-wrapper .connection-status.cors-issue {
|
|
|
|
background-color: #dddd49;
|
|
|
|
}
|
|
|
|
|
|
|
|
input#host {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2022-11-25 17:27:44 -06:00
|
|
|
/* Prompt Fields */
|
|
|
|
|
|
|
|
div.prompt-wrapper {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.prompt-wrapper > textarea {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
top: 0px;
|
|
|
|
bottom: 0px;
|
|
|
|
left: 0px;
|
|
|
|
right: 0;
|
|
|
|
|
|
|
|
resize: vertical;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.prompt-wrapper > textarea:focus {
|
|
|
|
width: 700px;
|
|
|
|
}
|