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-12-02 11:31:49 -06:00
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
input,
|
|
|
|
textarea {
|
|
|
|
user-select: auto;
|
2022-11-17 22:37:28 -06:00
|
|
|
}
|
2022-11-27 06:54:34 -06:00
|
|
|
|
|
|
|
/* Body is stuck with no scroll */
|
2022-11-21 23:16:17 -06:00
|
|
|
body {
|
2022-11-27 06:54:34 -06:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
2022-11-21 23:16:17 -06:00
|
|
|
margin: 0px;
|
2022-11-27 06:54:34 -06:00
|
|
|
padding: 0px;
|
|
|
|
|
|
|
|
overflow: clip;
|
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
|
|
|
|
|
|
|
.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-26 19:35:16 -06:00
|
|
|
/* Mask colors for mask inversion */
|
|
|
|
/* Filters are some magic acquired at https://codepen.io/sosuke/pen/Pjoqqp */
|
2022-11-29 14:55:25 -06:00
|
|
|
.mask-canvas {
|
2022-11-26 19:35:16 -06:00
|
|
|
opacity: 0%;
|
|
|
|
}
|
|
|
|
|
2022-11-29 14:55:25 -06:00
|
|
|
.mask-canvas.display {
|
2022-11-26 19:35:16 -06:00
|
|
|
opacity: 40%;
|
|
|
|
filter: invert(100%);
|
|
|
|
}
|
|
|
|
|
2022-11-29 14:55:25 -06:00
|
|
|
.mask-canvas.display.opaque {
|
2022-11-26 20:00:41 -06:00
|
|
|
opacity: 100%;
|
|
|
|
}
|
|
|
|
|
2022-11-29 14:55:25 -06:00
|
|
|
.mask-canvas.display.clear {
|
2022-11-26 19:35:16 -06:00
|
|
|
filter: invert(71%) sepia(46%) saturate(6615%) hue-rotate(321deg)
|
|
|
|
brightness(106%) contrast(100%);
|
|
|
|
}
|
|
|
|
|
2022-11-29 14:55:25 -06:00
|
|
|
.mask-canvas.display.hold {
|
2022-11-26 19:35:16 -06:00
|
|
|
filter: invert(41%) sepia(16%) saturate(5181%) hue-rotate(218deg)
|
|
|
|
brightness(103%) contrast(108%);
|
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
|
|
|
|
2022-12-01 20:31:49 -06:00
|
|
|
.wideSelect {
|
2022-11-25 17:27:44 -06:00
|
|
|
width: 100%;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2022-11-26 10:10:37 -06:00
|
|
|
/* Host input */
|
|
|
|
.host-field-wrapper {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
|
2022-12-02 11:31:49 -06:00
|
|
|
align-items: stretch;
|
2022-11-26 10:10:37 -06:00
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.host-field-wrapper input {
|
2022-12-02 11:31:49 -06:00
|
|
|
flex-shrink: 0;
|
|
|
|
width: calc(100% - 15px);
|
|
|
|
|
2022-11-26 10:10:37 -06:00
|
|
|
display: block;
|
2022-12-02 11:31:49 -06:00
|
|
|
|
|
|
|
border: 0;
|
2022-11-26 10:10:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.host-field-wrapper .connection-status {
|
|
|
|
width: 15px;
|
|
|
|
|
2022-12-02 11:31:49 -06:00
|
|
|
position: absolute;
|
|
|
|
left: calc(100% - 15px);
|
2022-11-26 10:10:37 -06:00
|
|
|
|
2022-12-02 11:31:49 -06:00
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
|
|
|
|
box-sizing: inherit;
|
2022-11-26 10:10:37 -06:00
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
2022-12-02 11:31:49 -06:00
|
|
|
transition-duration: 50ms;
|
|
|
|
|
|
|
|
padding-top: 1px;
|
|
|
|
padding-bottom: 1px;
|
2022-11-26 10:10:37 -06:00
|
|
|
|
2022-12-02 11:31:49 -06:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.host-field-wrapper .connection-status:active,
|
2022-11-26 10:10:37 -06:00
|
|
|
.host-field-wrapper .connection-status:hover {
|
2022-12-02 11:31:49 -06:00
|
|
|
width: fit-content;
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 6px;
|
2022-11-26 10:10:37 -06:00
|
|
|
|
2022-12-02 11:31:49 -06:00
|
|
|
filter: brightness(110%);
|
2022-11-26 10:10:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.host-field-wrapper .connection-status:active {
|
2022-12-02 11:31:49 -06:00
|
|
|
filter: brightness(80%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.host-field-wrapper .connection-status > #connection-status-indicator-text {
|
|
|
|
opacity: 0%;
|
|
|
|
transition-duration: 20ms;
|
|
|
|
}
|
2022-11-26 10:10:37 -06:00
|
|
|
|
2022-12-02 11:31:49 -06:00
|
|
|
.host-field-wrapper
|
|
|
|
.connection-status:hover
|
|
|
|
> #connection-status-indicator-text {
|
|
|
|
opacity: 100%;
|
2022-11-26 10:10:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.host-field-wrapper .connection-status.online {
|
|
|
|
background-color: #49dd49;
|
2022-12-02 11:31:49 -06:00
|
|
|
color: #1f3f1f;
|
2022-11-26 10:10:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.host-field-wrapper .connection-status.offline {
|
|
|
|
background-color: #dd4949;
|
2022-12-02 11:31:49 -06:00
|
|
|
color: #3f1f1f;
|
2022-11-26 10:10:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.host-field-wrapper .connection-status.cors-issue {
|
|
|
|
background-color: #dddd49;
|
2022-12-02 11:31:49 -06:00
|
|
|
color: #3f3f1f;
|
2022-11-26 10:10:37 -06:00
|
|
|
}
|
|
|
|
|
2022-11-30 15:47:30 -06:00
|
|
|
.host-field-wrapper .connection-status.before {
|
|
|
|
background-color: #777;
|
2022-12-02 11:31:49 -06:00
|
|
|
color: #1f1f1f;
|
2022-11-30 15:47:30 -06:00
|
|
|
}
|
|
|
|
|
2022-11-26 10:10:37 -06:00
|
|
|
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;
|
|
|
|
|
|
|
|
resize: vertical;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.prompt-wrapper > textarea:focus {
|
|
|
|
width: 700px;
|
|
|
|
}
|
2022-11-26 20:00:41 -06:00
|
|
|
|
2022-12-02 11:31:49 -06:00
|
|
|
/* Style Field */
|
|
|
|
select > .style-select-option {
|
2022-12-03 17:00:10 -06:00
|
|
|
position: relative;
|
|
|
|
|
2022-12-02 11:31:49 -06:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
select > .style-select-option:hover {
|
|
|
|
background-color: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
select > .style-select-option:active {
|
|
|
|
background-color: #aaa;
|
|
|
|
}
|
|
|
|
|
2022-11-26 20:00:41 -06:00
|
|
|
/* Tool buttons */
|
|
|
|
.button-array {
|
|
|
|
display: flex;
|
|
|
|
justify-content: stretch;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-array > .button.tool {
|
|
|
|
flex: 1;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-array > .button.tool:first-child {
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-array > .button.tool:last-child {
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
}
|
|
|
|
|
2022-11-28 09:17:07 -06:00
|
|
|
.button.tool {
|
2022-11-26 20:00:41 -06:00
|
|
|
background-color: rgb(0, 0, 50);
|
|
|
|
color: rgb(255, 255, 255);
|
|
|
|
cursor: pointer;
|
|
|
|
border: none;
|
|
|
|
text-align: center;
|
|
|
|
outline: none;
|
|
|
|
font-size: 15px;
|
|
|
|
padding: 5px;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2022-11-28 09:17:07 -06:00
|
|
|
.button.tool:disabled {
|
2022-11-26 20:00:41 -06:00
|
|
|
background-color: #666 !important;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2022-11-28 09:17:07 -06:00
|
|
|
.button.tool:hover {
|
2022-11-26 20:00:41 -06:00
|
|
|
background-color: rgb(30, 30, 80);
|
|
|
|
}
|
2022-11-28 09:17:07 -06:00
|
|
|
.button.tool:active,
|
2022-11-26 20:00:41 -06:00
|
|
|
.button.tool.active {
|
|
|
|
background-color: rgb(60, 60, 130);
|
|
|
|
}
|