2022-10-15 01:27:01 +02:00
|
|
|
* {
|
|
|
|
font-family: Work Sans, Verdana, Geneva, sans-serif;
|
2022-10-16 02:26:52 +02:00
|
|
|
box-sizing: border-box;
|
2022-10-20 06:12:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
position: relative;
|
2022-10-15 01:27:01 +02:00
|
|
|
}
|
|
|
|
|
2022-09-23 16:18:48 +02:00
|
|
|
body {
|
2022-11-02 07:03:05 +01:00
|
|
|
margin: 0;
|
2022-09-23 16:18:48 +02:00
|
|
|
font-size: 11pt;
|
2022-11-09 09:13:43 +01:00
|
|
|
background-color: var(--background-color1);
|
2022-10-16 01:41:38 +02:00
|
|
|
color: var(--text-color);
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
a {
|
|
|
|
color: rgb(0, 102, 204);
|
|
|
|
}
|
|
|
|
a:visited {
|
|
|
|
color: rgb(0, 102, 204);
|
|
|
|
}
|
|
|
|
label {
|
2022-10-18 12:50:35 +02:00
|
|
|
font-size: 10pt;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
2022-11-17 08:43:01 +01:00
|
|
|
code {
|
|
|
|
background: var(--background-color4);
|
|
|
|
padding: 2px 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2022-09-23 16:18:48 +02:00
|
|
|
#prompt {
|
|
|
|
width: 100%;
|
|
|
|
height: 65pt;
|
2022-11-18 12:31:20 +01:00
|
|
|
font-size: 14px;
|
2022-10-16 03:34:59 +02:00
|
|
|
margin-bottom: 6px;
|
2022-11-09 09:13:43 +01:00
|
|
|
margin-top: 5px;
|
2022-11-18 10:28:21 +01:00
|
|
|
display: block;
|
2022-11-18 12:31:20 +01:00
|
|
|
border: 2px solid var(--background-color2);
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
2022-11-16 23:35:27 +01:00
|
|
|
#negative_prompt {
|
|
|
|
width: 100%;
|
|
|
|
height: 50pt;
|
2022-11-18 12:39:42 +01:00
|
|
|
font-size: 13px;
|
2022-11-16 23:35:27 +01:00
|
|
|
margin-bottom: 5px;
|
|
|
|
margin-top: 5px;
|
|
|
|
display: block;
|
|
|
|
}
|
2022-09-23 16:18:48 +02:00
|
|
|
.image_clear_btn {
|
|
|
|
position: absolute;
|
2022-10-17 08:10:01 +02:00
|
|
|
transform: translate(30%, -30%);
|
2022-09-23 16:18:48 +02:00
|
|
|
background: black;
|
|
|
|
color: white;
|
|
|
|
border: 2pt solid #ccc;
|
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
outline: inherit;
|
|
|
|
border-radius: 8pt;
|
|
|
|
width: 16pt;
|
|
|
|
height: 16pt;
|
|
|
|
font-family: Verdana;
|
|
|
|
font-size: 8pt;
|
2022-10-17 08:10:01 +02:00
|
|
|
top: 0px;
|
|
|
|
right: 0px;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
2022-11-30 16:44:18 +01:00
|
|
|
.image_clear_btn:active {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: auto;
|
|
|
|
}
|
2022-09-23 16:18:48 +02:00
|
|
|
.settings-box ul {
|
|
|
|
font-size: 9pt;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
padding-left: 10px;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
.settings-box li {
|
|
|
|
padding-bottom: 4pt;
|
|
|
|
}
|
|
|
|
.editor-slider {
|
2022-09-24 12:00:22 +02:00
|
|
|
vertical-align: middle;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
2022-09-27 14:39:07 +02:00
|
|
|
.outputMsg {
|
2022-09-23 16:18:48 +02:00
|
|
|
font-size: small;
|
2022-09-27 10:26:17 +02:00
|
|
|
padding-bottom: 3pt;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
#footer {
|
|
|
|
font-size: small;
|
2022-11-09 05:19:31 +01:00
|
|
|
padding: 10pt;
|
2022-09-23 16:18:48 +02:00
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
#footer-legal {
|
|
|
|
font-size: 8pt;
|
|
|
|
}
|
2022-11-09 05:19:31 +01:00
|
|
|
#footer-spacer {
|
2022-11-09 09:13:43 +01:00
|
|
|
flex: 0.7
|
2022-11-09 05:19:31 +01:00
|
|
|
}
|
2022-09-23 16:18:48 +02:00
|
|
|
.imgSeedLabel {
|
2022-09-29 09:31:18 +02:00
|
|
|
font-size: 0.8em;
|
2022-10-16 01:41:38 +02:00
|
|
|
background-color: var(--background-color2);
|
2022-09-29 09:31:18 +02:00
|
|
|
border-radius: 3px;
|
2022-09-26 16:50:27 +02:00
|
|
|
padding: 5px;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
.imgItem {
|
2022-09-25 01:55:11 +02:00
|
|
|
display: inline-block;
|
|
|
|
margin-top: 1em;
|
|
|
|
margin-right: 1em;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
2022-09-26 16:50:27 +02:00
|
|
|
.imgContainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
2022-09-23 16:18:48 +02:00
|
|
|
.imgItemInfo {
|
2022-09-25 01:55:11 +02:00
|
|
|
padding-bottom: 0.5em;
|
|
|
|
display: flex;
|
2022-09-26 16:50:27 +02:00
|
|
|
align-items: flex-end;
|
|
|
|
flex-direction: column;
|
|
|
|
position: absolute;
|
|
|
|
padding: 5px;
|
2022-09-29 09:31:18 +02:00
|
|
|
opacity: 0;
|
2022-09-26 16:50:27 +02:00
|
|
|
transition: 0.1s all;
|
2022-09-25 01:55:11 +02:00
|
|
|
}
|
2022-09-26 16:50:27 +02:00
|
|
|
.imgContainer:hover > .imgItemInfo {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
.imgItemInfo * {
|
|
|
|
margin-bottom: 7px;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
#container {
|
2022-11-09 05:19:31 +01:00
|
|
|
min-height: 100vh;
|
2022-11-02 07:03:05 +01:00
|
|
|
width: 100%;
|
|
|
|
margin: 0px;
|
2022-11-09 05:19:31 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
#logo small {
|
|
|
|
font-size: 11pt;
|
|
|
|
}
|
|
|
|
#editor {
|
2022-11-09 09:13:43 +01:00
|
|
|
background: var(--background-color1);
|
2022-11-09 04:22:14 +01:00
|
|
|
padding: 16px;
|
2022-11-02 07:03:05 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-11-14 06:53:22 +01:00
|
|
|
flex: 0 0 370pt;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
#editor label {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2022-11-02 07:03:05 +01:00
|
|
|
#editor h4 {
|
|
|
|
margin: 0px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
#editor .collapsible-content {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2022-09-23 16:18:48 +02:00
|
|
|
.settings-box label small {
|
|
|
|
color: rgb(153, 153, 153);
|
2022-10-17 08:10:01 +02:00
|
|
|
margin-right: 10px;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
#preview {
|
2022-11-02 07:03:05 +01:00
|
|
|
padding: 8px;
|
|
|
|
background: var(--background-color1);
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
2022-10-28 02:03:09 +02:00
|
|
|
#preview .collapsible-content {
|
|
|
|
padding: 0px 15px;
|
|
|
|
}
|
2022-09-23 16:18:48 +02:00
|
|
|
#editor-inputs-prompt {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
#editor-inputs .row {
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
#makeImage {
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
#editor-modifiers h5 {
|
|
|
|
padding: 5pt 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
#makeImage {
|
|
|
|
flex: 0 0 70px;
|
2022-10-16 01:41:38 +02:00
|
|
|
background: var(--accent-color);
|
2022-11-15 07:52:55 +01:00
|
|
|
border: var(--primary-button-border);
|
2022-09-23 16:18:48 +02:00
|
|
|
color: rgb(255, 221, 255);
|
|
|
|
width: 100%;
|
|
|
|
height: 30pt;
|
|
|
|
}
|
|
|
|
#makeImage:hover {
|
2022-10-16 01:41:38 +02:00
|
|
|
background: hsl(var(--accent-hue), 100%, calc(var(--accent-lightness) + 6%));
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
#stopImage {
|
|
|
|
flex: 0 0 70px;
|
|
|
|
background: rgb(132, 8, 0);
|
|
|
|
border: 2px solid rgb(122, 29, 0);
|
|
|
|
color: rgb(255, 221, 255);
|
|
|
|
width: 100%;
|
|
|
|
height: 30pt;
|
|
|
|
border-radius: 6px;
|
|
|
|
display: none;
|
2022-11-16 07:03:05 +01:00
|
|
|
margin-top: 2pt;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
#stopImage:hover {
|
2022-09-27 14:39:07 +02:00
|
|
|
background: rgb(177, 27, 0);
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
.flex-container {
|
|
|
|
display: flex;
|
2022-10-16 02:26:52 +02:00
|
|
|
width: 100%;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
.col-free {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.collapsible {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.collapsible-content {
|
2022-11-02 07:03:05 +01:00
|
|
|
display: block;
|
2022-11-29 10:57:13 +01:00
|
|
|
padding-left: 10px;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
.collapsible-content h5 {
|
|
|
|
padding: 5pt 0pt;
|
|
|
|
margin: 0;
|
|
|
|
font-size: 10pt;
|
|
|
|
}
|
|
|
|
.collapsible-handle {
|
|
|
|
color: white;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
2022-11-02 07:03:05 +01:00
|
|
|
.collapsible:not(.active) ~ .collapsible-content {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
#editor-modifiers {
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
2022-09-23 16:18:48 +02:00
|
|
|
#editor-modifiers .editor-modifiers-leaf {
|
|
|
|
padding-top: 10pt;
|
|
|
|
padding-bottom: 10pt;
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
|
|
|
|
}
|
|
|
|
.line-separator {
|
2022-11-02 07:03:05 +01:00
|
|
|
background: var(--background-color3);
|
2022-11-09 09:13:43 +01:00
|
|
|
height: 1pt;
|
2022-11-02 07:03:05 +01:00
|
|
|
margin: 16px 0px;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
#editor-inputs-tags-container {
|
|
|
|
margin-top: 5pt;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#server-status {
|
2022-11-02 07:03:05 +01:00
|
|
|
position: absolute;
|
|
|
|
right: 16px;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
text-align: right;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
#server-status-color {
|
|
|
|
font-size: 14pt;
|
2022-10-17 14:22:55 +02:00
|
|
|
color: rgb(200, 139, 0);
|
2022-09-23 16:18:48 +02:00
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
#server-status-msg {
|
2022-10-17 14:22:55 +02:00
|
|
|
color: rgb(200, 139, 0);
|
2022-09-23 16:18:48 +02:00
|
|
|
padding-left: 2pt;
|
|
|
|
font-size: 10pt;
|
|
|
|
}
|
2022-09-27 14:39:07 +02:00
|
|
|
.preview-prompt {
|
2022-10-14 19:28:36 +02:00
|
|
|
font-size: 13pt;
|
2022-09-23 16:18:48 +02:00
|
|
|
margin-bottom: 10pt;
|
|
|
|
}
|
|
|
|
#coffeeButton {
|
|
|
|
height: 23px;
|
|
|
|
transform: translateY(25%);
|
|
|
|
}
|
|
|
|
|
|
|
|
#top-nav {
|
2022-11-02 07:03:05 +01:00
|
|
|
position: relative;
|
|
|
|
background: var(--background-color4);
|
|
|
|
display: flex;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
2022-11-09 05:37:49 +01:00
|
|
|
.tab .icon {
|
2022-09-23 16:18:48 +02:00
|
|
|
padding-right: 4pt;
|
|
|
|
font-size: 14pt;
|
|
|
|
transform: translateY(1pt);
|
|
|
|
}
|
|
|
|
#logo {
|
|
|
|
display: inline;
|
2022-11-02 07:03:05 +01:00
|
|
|
padding: 12px;
|
2022-11-09 05:37:49 +01:00
|
|
|
white-space: nowrap;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
#logo h1 {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
#top-nav-items {
|
|
|
|
list-style-type: none;
|
|
|
|
display: inline;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
#top-nav-items > li {
|
|
|
|
float: left;
|
|
|
|
display: inline;
|
|
|
|
padding-left: 20pt;
|
2022-10-29 03:25:54 +02:00
|
|
|
}
|
|
|
|
#top-nav-items > li:first-child {
|
2022-09-23 16:18:48 +02:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
#initial-text {
|
|
|
|
padding-top: 15pt;
|
|
|
|
padding-left: 4pt;
|
|
|
|
}
|
|
|
|
.settings-subheader {
|
|
|
|
font-size: 10pt;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.pl-5 {
|
|
|
|
padding-left: 5pt;
|
|
|
|
}
|
|
|
|
#community-links {
|
2022-11-09 05:19:31 +01:00
|
|
|
display: inline-block;
|
2022-09-23 16:18:48 +02:00
|
|
|
list-style-type: none;
|
2022-11-09 05:19:31 +01:00
|
|
|
text-align: left;
|
|
|
|
margin: auto;
|
|
|
|
padding: 0px;
|
2022-09-23 16:18:48 +02:00
|
|
|
}
|
|
|
|
#community-links li {
|
|
|
|
padding-bottom: 12pt;
|
|
|
|
display: block;
|
|
|
|
font-size: 10pt;
|
|
|
|
}
|
|
|
|
#community-links li .fa-fw {
|
|
|
|
padding-right: 2pt;
|
|
|
|
}
|
|
|
|
#community-links li a {
|
2022-10-16 01:41:38 +02:00
|
|
|
color: var(--text-color);
|
2022-09-23 16:18:48 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2022-11-09 23:57:48 +01:00
|
|
|
.float-child h1 {
|
2022-11-10 00:44:42 +01:00
|
|
|
border-bottom: var(--button-border);
|
2022-11-09 23:57:48 +01:00
|
|
|
}
|
2022-11-09 23:42:56 +01:00
|
|
|
#help-links {
|
|
|
|
display: inline-block;
|
|
|
|
list-style-type: none;
|
|
|
|
text-align: left;
|
|
|
|
margin: auto;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
#help-links li {
|
|
|
|
padding-bottom: 12pt;
|
|
|
|
display: block;
|
|
|
|
font-size: 10pt;
|
|
|
|
}
|
|
|
|
#help-links li .fa-fw {
|
|
|
|
padding-right: 2pt;
|
|
|
|
}
|
|
|
|
#help-links li a {
|
|
|
|
color: var(--text-color);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
#help-links li ul {
|
|
|
|
padding-inline-start: 10px;
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
.help-section {
|
|
|
|
font-size: 130%;
|
|
|
|
}
|
2022-09-23 16:18:48 +02:00
|
|
|
.dropdown {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.dropdown-content {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
|
2022-10-16 01:41:38 +02:00
|
|
|
background: var(--background-color4);
|
|
|
|
border: 2px solid var(--background-color2);
|
2022-09-23 16:18:48 +02:00
|
|
|
border-radius: 7px;
|
|
|
|
padding: 5px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
box-shadow: 0 20px 28px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
|
|
|
|
}
|
|
|
|
.dropdown:hover .dropdown-content {
|
|
|
|
display: block;
|
2022-09-27 14:39:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.imageTaskContainer {
|
2022-11-14 16:55:57 +01:00
|
|
|
border: 1px solid var(--background-color2);
|
2022-09-27 14:39:07 +02:00
|
|
|
margin-bottom: 10pt;
|
|
|
|
padding: 5pt;
|
|
|
|
border-radius: 5pt;
|
|
|
|
box-shadow: 0 20px 28px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
|
|
|
|
}
|
2022-11-09 06:00:56 +01:00
|
|
|
.imageTaskContainer > div > .collapsible-handle {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-09-27 14:39:07 +02:00
|
|
|
.taskStatusLabel {
|
|
|
|
float: left;
|
|
|
|
font-size: 8pt;
|
2022-10-16 01:41:38 +02:00
|
|
|
background:var(--background-color2);
|
2022-09-27 14:39:07 +02:00
|
|
|
border: 1px solid rgb(61, 62, 66);
|
|
|
|
padding: 2pt 4pt;
|
|
|
|
border-radius: 2pt;
|
|
|
|
margin-right: 5pt;
|
|
|
|
}
|
2022-09-27 15:07:21 +02:00
|
|
|
.activeTaskLabel {
|
|
|
|
background:rgb(0, 90, 30);
|
|
|
|
border: 1px solid rgb(0, 75, 19);
|
2022-10-17 14:22:55 +02:00
|
|
|
color:rgb(222, 253, 230)
|
2022-09-27 15:07:21 +02:00
|
|
|
}
|
2022-10-14 06:56:04 +02:00
|
|
|
.waitingTaskLabel {
|
2022-10-17 14:22:55 +02:00
|
|
|
background:rgb(128, 89, 0);
|
2022-10-17 14:34:46 +02:00
|
|
|
border: 1px solid rgb(107, 75, 0);
|
2022-10-17 14:22:55 +02:00
|
|
|
color:rgb(255, 242, 211)
|
2022-10-14 06:56:04 +02:00
|
|
|
}
|
2022-11-15 07:52:55 +01:00
|
|
|
.primaryButton {
|
|
|
|
flex: 0 0 70px;
|
|
|
|
background: var(--accent-color);
|
|
|
|
border: var(--primary-button-border);
|
|
|
|
color: rgb(255, 221, 255);
|
|
|
|
}
|
2022-09-27 14:39:07 +02:00
|
|
|
.secondaryButton {
|
|
|
|
background: rgb(132, 8, 0);
|
|
|
|
border: 1px solid rgb(122, 29, 0);
|
|
|
|
color: rgb(255, 221, 255);
|
|
|
|
padding: 3pt 6pt;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
.secondaryButton:hover {
|
|
|
|
background: rgb(177, 27, 0);
|
|
|
|
}
|
2022-11-11 03:36:39 +01:00
|
|
|
.useSettings {
|
|
|
|
background: var(--accent-color);
|
2022-11-18 11:24:47 +01:00
|
|
|
border: 1px solid var(--accent-color);
|
2022-11-11 03:36:39 +01:00
|
|
|
color: rgb(255, 221, 255);
|
2022-11-18 11:24:47 +01:00
|
|
|
padding: 3pt 6pt;
|
2022-11-11 03:36:39 +01:00
|
|
|
margin-right: 6pt;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.useSettings:hover {
|
|
|
|
background: hsl(var(--accent-hue), 100%, calc(var(--accent-lightness) + 6%));
|
|
|
|
}
|
2022-09-27 14:39:07 +02:00
|
|
|
.stopTask {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
#preview-tools {
|
|
|
|
display: none;
|
|
|
|
padding: 4pt;
|
|
|
|
}
|
|
|
|
.taskConfig {
|
|
|
|
font-size: 10pt;
|
|
|
|
color: #aaa;
|
|
|
|
margin-bottom: 5pt;
|
2022-09-29 10:13:25 +02:00
|
|
|
}
|
|
|
|
.img-batch {
|
|
|
|
display: inline;
|
2022-10-07 20:16:56 +02:00
|
|
|
}
|
|
|
|
#prompt_from_file {
|
|
|
|
display: none;
|
2022-10-15 01:27:01 +02:00
|
|
|
}
|
2022-12-01 11:31:09 +01:00
|
|
|
|
2022-12-06 09:26:51 +01:00
|
|
|
#init_image_preview_container {
|
|
|
|
display: flex;
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
2022-12-01 11:31:09 +01:00
|
|
|
#init_image_preview_container:not(.has-image) #init_image_wrapper,
|
2022-12-06 09:26:51 +01:00
|
|
|
#init_image_preview_container:not(.has-image) #inpaint_button_container {
|
2022-12-01 11:31:09 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-12-06 09:26:51 +01:00
|
|
|
|
|
|
|
#init_image_buttons {
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
2022-12-01 11:31:09 +01:00
|
|
|
}
|
|
|
|
|
2022-12-06 09:26:51 +01:00
|
|
|
#init_image_preview_container.has-image #init_image_buttons {
|
|
|
|
flex-direction: column;
|
|
|
|
padding-left: 8px;
|
2022-12-01 11:31:09 +01:00
|
|
|
}
|
|
|
|
|
2022-12-06 09:26:51 +01:00
|
|
|
#init_image_buttons .button {
|
2022-12-01 11:31:09 +01:00
|
|
|
position: relative;
|
2022-12-06 09:26:51 +01:00
|
|
|
height: 32px;
|
|
|
|
width: 150px;
|
2022-12-01 11:31:09 +01:00
|
|
|
}
|
|
|
|
|
2022-12-06 09:26:51 +01:00
|
|
|
#init_image_buttons .button > input {
|
2022-12-01 11:31:09 +01:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
2022-12-06 09:26:51 +01:00
|
|
|
#inpaint_button_container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 8px;
|
|
|
|
}
|
|
|
|
|
2022-12-01 11:31:09 +01:00
|
|
|
#init_image_wrapper {
|
|
|
|
grid-row: span 3;
|
|
|
|
position: relative;
|
|
|
|
width: fit-content;
|
|
|
|
max-height: 150px;
|
|
|
|
}
|
|
|
|
|
2022-10-15 01:27:01 +02:00
|
|
|
#init_image_preview {
|
|
|
|
max-height: 150px;
|
2022-11-09 04:22:14 +01:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2022-10-15 01:27:01 +02:00
|
|
|
object-fit: contain;
|
|
|
|
border-radius: 6px;
|
|
|
|
transition: all 1s ease-in-out;
|
|
|
|
}
|
2022-12-01 11:31:09 +01:00
|
|
|
/*
|
2022-10-15 01:27:01 +02:00
|
|
|
#init_image_preview:hover {
|
|
|
|
max-width: 500px;
|
|
|
|
max-height: 1000px;
|
2022-11-09 04:22:14 +01:00
|
|
|
|
2022-10-15 01:27:01 +02:00
|
|
|
transition: all 1s 0.5s ease-in-out;
|
2022-12-01 11:31:09 +01:00
|
|
|
} */
|
2022-10-15 01:27:01 +02:00
|
|
|
|
|
|
|
#init_image_size_box {
|
|
|
|
position: absolute;
|
|
|
|
right: 0px;
|
2022-12-01 11:31:09 +01:00
|
|
|
bottom: 0px;
|
2022-10-15 01:27:01 +02:00
|
|
|
padding: 3px;
|
2022-10-16 03:39:56 +02:00
|
|
|
background: black;
|
|
|
|
color: white;
|
|
|
|
text-shadow: 0px 0px 4px black;
|
|
|
|
opacity: 60%;
|
2022-10-15 01:27:01 +02:00
|
|
|
font-size: 12px;
|
|
|
|
border-radius: 6px 0px;
|
|
|
|
}
|
|
|
|
|
2022-11-18 02:58:09 +01:00
|
|
|
#editor-settings {
|
2022-11-21 14:12:07 +01:00
|
|
|
min-width: 350px;
|
2022-11-18 02:58:09 +01:00
|
|
|
}
|
|
|
|
|
2022-11-02 07:03:05 +01:00
|
|
|
#editor-settings-entries {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#editor-settings-entries > div {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#editor-settings-entries ul {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
2022-10-15 01:27:01 +02:00
|
|
|
#editor-settings-entries table td {
|
|
|
|
padding: 0px;
|
|
|
|
line-height: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#editor-settings-entries table td:first-child {
|
|
|
|
float: right;
|
|
|
|
padding-right: 4px;
|
2022-10-16 02:26:52 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
#negative_prompt {
|
|
|
|
width: 100%;
|
2022-10-15 01:27:01 +02:00
|
|
|
}
|
|
|
|
|
2022-11-09 04:22:14 +01:00
|
|
|
/* INPUTS STYLING */
|
2022-10-15 01:27:01 +02:00
|
|
|
button,
|
|
|
|
input[type="file"],
|
|
|
|
input[type="checkbox"],
|
2022-10-18 08:00:08 +02:00
|
|
|
select,
|
|
|
|
option {
|
2022-10-15 01:27:01 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2022-12-01 11:31:09 +01:00
|
|
|
input[type="file"] * {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2022-10-15 01:27:01 +02:00
|
|
|
input,
|
|
|
|
select,
|
|
|
|
textarea {
|
2022-10-16 03:04:41 +02:00
|
|
|
border-radius: var(--input-border-radius);
|
2022-10-15 01:27:01 +02:00
|
|
|
padding: 4px;
|
2022-10-16 01:41:38 +02:00
|
|
|
accent-color: var(--accent-color);
|
|
|
|
background: var(--input-background-color);
|
2022-10-16 03:04:41 +02:00
|
|
|
border: var(--input-border-size) solid var(--input-border-color);
|
2022-10-16 01:41:38 +02:00
|
|
|
color: var(--input-text-color);
|
2022-10-17 07:51:35 +02:00
|
|
|
font-size: 9pt;
|
2022-10-15 01:27:01 +02:00
|
|
|
}
|
|
|
|
|
2022-10-17 11:04:48 +02:00
|
|
|
input:hover {
|
|
|
|
accent-color: var(--accent-color-hover);
|
|
|
|
}
|
|
|
|
|
2022-10-15 01:27:01 +02:00
|
|
|
input {
|
|
|
|
padding: 4px 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:focus,
|
|
|
|
select:focus,
|
|
|
|
textarea:focus {
|
2022-10-16 01:41:38 +02:00
|
|
|
outline: 2px solid var(--accent-color);
|
2022-10-15 01:27:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
input[disabled],
|
|
|
|
select[disabled],
|
|
|
|
textarea[disabled] {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2022-10-16 03:04:41 +02:00
|
|
|
input[type="file"] {
|
|
|
|
width: 100%;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
|
2022-10-16 03:34:59 +02:00
|
|
|
button,
|
2022-12-01 11:31:09 +01:00
|
|
|
input::file-selector-button,
|
|
|
|
.button {
|
2022-12-06 11:06:52 +01:00
|
|
|
padding: 2px 4px;
|
2022-12-06 09:26:51 +01:00
|
|
|
border-radius: var(--input-border-radius);
|
2022-10-16 03:34:59 +02:00
|
|
|
background: var(--button-color);
|
|
|
|
color: var(--button-text-color);
|
|
|
|
border: var(--button-border);
|
2022-12-01 11:31:09 +01:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button i {
|
|
|
|
margin-right: 8px;
|
2022-10-16 03:34:59 +02:00
|
|
|
}
|
|
|
|
|
2022-12-06 09:26:51 +01:00
|
|
|
button:hover,
|
|
|
|
.button:hover {
|
2022-12-06 11:06:52 +01:00
|
|
|
transition-duration: 0.1s;
|
|
|
|
background: hsl(var(--accent-hue), 100%, calc(var(--accent-lightness) + 6%));
|
2022-12-06 09:26:51 +01:00
|
|
|
}
|
|
|
|
|
2022-10-16 03:04:41 +02:00
|
|
|
input::file-selector-button {
|
|
|
|
padding: 0px 4px;
|
2022-10-16 03:34:59 +02:00
|
|
|
height: 19px;
|
2022-10-16 03:04:41 +02:00
|
|
|
}
|
|
|
|
|
2022-11-18 02:58:09 +01:00
|
|
|
|
|
|
|
.input-toggle {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: calc(var(--input-height) * 2);
|
|
|
|
user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
.input-toggle > input {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
.input-toggle > label {
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
cursor: pointer;
|
|
|
|
height: var(--input-height);
|
|
|
|
padding: 0;
|
|
|
|
line-height: var(--input-height);
|
|
|
|
border: var(--input-border-size) solid var(--input-border-color);
|
|
|
|
border-radius: var(--input-height);
|
|
|
|
background: var(--input-background-color);
|
|
|
|
transition: background 0.2s ease-in;
|
|
|
|
}
|
|
|
|
.input-toggle > label:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
width: calc(var(--input-height) - ((var(--input-border-size) + var(--input-switch-padding)) * 2));
|
|
|
|
margin: 0px;
|
|
|
|
background: var(--input-text-color);
|
|
|
|
position: absolute;
|
|
|
|
top: calc(var(--input-border-size) + var(--input-switch-padding));
|
|
|
|
bottom: calc(var(--input-border-size) + var(--input-switch-padding));
|
|
|
|
right: calc(var(--input-border-size) + var(--input-switch-padding) + var(--input-height));
|
|
|
|
border-radius: calc(var(--input-height) - ((var(--input-border-size) + var(--input-switch-padding)) * 2));
|
|
|
|
transition: all 0.2s ease-in 0s;
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
.input-toggle > input:checked + label {
|
|
|
|
background: var(--accent-color);
|
|
|
|
}
|
|
|
|
.input-toggle > input:checked + label:before {
|
|
|
|
right: calc(var(--input-border-size) + var(--input-switch-padding));
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2022-11-28 02:36:19 +01:00
|
|
|
/* Small screens */
|
|
|
|
@media screen and (max-width: 1265px) {
|
2022-11-02 07:03:05 +01:00
|
|
|
#top-nav {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2022-11-28 02:36:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* MOBILE SUPPORT */
|
|
|
|
@media screen and (max-width: 700px) {
|
2022-10-16 02:26:52 +02:00
|
|
|
body {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
#container {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
.flex-container {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
#preview {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
#preview .collapsible-content {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
#preview .collapsible-content {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
.imgItem {
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
|
|
|
.imgItem img {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
|
|
|
.dropdown-content {
|
|
|
|
width: auto !important;
|
|
|
|
transform: none !important;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
}
|
2022-11-09 04:22:14 +01:00
|
|
|
#editor {
|
|
|
|
padding: 16px 8px;
|
|
|
|
}
|
2022-11-18 02:58:09 +01:00
|
|
|
#editor-settings {
|
|
|
|
min-width: 0px;
|
|
|
|
}
|
2022-11-09 04:54:41 +01:00
|
|
|
.tab-content-inner {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
2022-11-09 05:37:49 +01:00
|
|
|
.tab {
|
|
|
|
font-size: 0;
|
|
|
|
}
|
|
|
|
.tab .icon {
|
|
|
|
padding-right: 0px;
|
|
|
|
}
|
|
|
|
#server-status {
|
2022-11-28 02:36:19 +01:00
|
|
|
top: 75%;
|
2022-11-09 05:37:49 +01:00
|
|
|
}
|
2022-10-30 23:16:31 +01:00
|
|
|
.popup > div {
|
|
|
|
padding-left: 5px !important;
|
|
|
|
padding-right: 5px !important;
|
|
|
|
}
|
|
|
|
.popup > div input, .popup > div select {
|
|
|
|
max-width: 40vw;
|
|
|
|
}
|
|
|
|
.popup .close-button {
|
|
|
|
padding: 0px !important;
|
|
|
|
margin: 24px !important;
|
|
|
|
}
|
2022-11-18 02:58:09 +01:00
|
|
|
.simple-tooltip {
|
|
|
|
display: none;
|
2022-10-30 23:16:31 +01:00
|
|
|
}
|
2022-11-09 04:22:14 +01:00
|
|
|
}
|
2022-11-09 06:22:22 +01:00
|
|
|
|
2022-11-29 02:22:28 +01:00
|
|
|
@media screen and (max-width: 500px) {
|
|
|
|
#server-status #server-status-msg {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#server-status:hover #server-status-msg {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-09 04:22:14 +01:00
|
|
|
@media (min-width: 700px) {
|
2022-11-18 10:28:21 +01:00
|
|
|
/* #editor {
|
2022-11-09 09:13:43 +01:00
|
|
|
max-width: 480px;
|
2022-11-18 10:28:21 +01:00
|
|
|
}*/
|
2022-11-09 23:42:56 +01:00
|
|
|
.float-container {
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
.float-child {
|
|
|
|
width: 50%;
|
|
|
|
float: left;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
2022-10-16 02:26:52 +02:00
|
|
|
}
|
2022-10-17 09:14:05 +02:00
|
|
|
|
2022-11-08 13:19:46 +01:00
|
|
|
.help-btn {
|
|
|
|
position: relative;
|
|
|
|
}
|
2022-11-09 06:22:22 +01:00
|
|
|
|
2022-10-17 10:15:08 +02:00
|
|
|
#promptsFromFileBtn {
|
|
|
|
font-size: 9pt;
|
2022-12-01 11:40:20 +01:00
|
|
|
display: inline;
|
2022-12-06 11:06:52 +01:00
|
|
|
background-color: var(--accent-color);
|
2022-10-18 16:48:56 +02:00
|
|
|
}
|
2022-10-22 02:44:04 +02:00
|
|
|
|
2022-11-02 07:03:05 +01:00
|
|
|
.section-button {
|
2022-10-22 02:44:04 +02:00
|
|
|
position: relative;
|
2022-10-25 07:42:34 +02:00
|
|
|
transform: translateY(-13%);
|
2022-10-22 02:44:04 +02:00
|
|
|
}
|
2022-11-03 07:09:42 +01:00
|
|
|
.collapsible:not(.active) #copy-image-settings {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-22 02:44:04 +02:00
|
|
|
|
2022-11-02 07:03:05 +01:00
|
|
|
.section-button {
|
|
|
|
cursor: pointer;
|
|
|
|
float: right;
|
|
|
|
padding: 8px;
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-button {
|
|
|
|
cursor: pointer;
|
|
|
|
float: right;
|
|
|
|
padding: 8px;
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapsible:not(.active) .section-button {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-11-09 04:22:14 +01:00
|
|
|
/* SIMPLE TOOTIP */
|
2022-10-22 02:44:04 +02:00
|
|
|
.simple-tooltip {
|
|
|
|
border-radius: 3px;
|
|
|
|
font-weight: bold;
|
2022-11-08 13:10:47 +01:00
|
|
|
font-size: 12px;
|
2022-10-22 02:44:04 +02:00
|
|
|
background-color: var(--background-color3);
|
|
|
|
|
|
|
|
visibility: hidden;
|
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
|
|
|
white-space: nowrap;
|
|
|
|
padding: 8px 12px;
|
|
|
|
transition: 0.3s all;
|
|
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (hover: hover) {
|
|
|
|
:hover > .simple-tooltip {
|
|
|
|
opacity: 1;
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.simple-tooltip.right {
|
|
|
|
right: 0px;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(calc(100% - 15%), -50%);
|
|
|
|
}
|
|
|
|
:hover > .simple-tooltip.right {
|
|
|
|
transform: translate(100%, -50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.simple-tooltip.top {
|
|
|
|
top: 0px;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, calc(-100% + 15%));
|
|
|
|
}
|
|
|
|
:hover > .simple-tooltip.top {
|
|
|
|
transform: translate(-50%, -100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.simple-tooltip.left {
|
|
|
|
left: 0px;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(calc(-100% + 15%), -50%);
|
|
|
|
}
|
|
|
|
:hover > .simple-tooltip.left {
|
|
|
|
transform: translate(-100%, -50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.simple-tooltip.bottom {
|
|
|
|
bottom: 0px;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, calc(100% - 15%));
|
|
|
|
}
|
|
|
|
:hover > .simple-tooltip.bottom {
|
|
|
|
transform: translate(-50%, 100%);
|
|
|
|
}
|
2022-11-09 04:22:14 +01:00
|
|
|
|
|
|
|
/* PROGRESS BAR */
|
2022-10-28 02:03:09 +02:00
|
|
|
.progress-bar {
|
|
|
|
background: var(--background-color3);
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 2px solid var(--background-color3);
|
|
|
|
height: 16px;
|
|
|
|
position: relative;
|
|
|
|
transition: 0.25s 1s border, 0.25s 1s height;
|
|
|
|
}
|
|
|
|
.progress-bar > div {
|
|
|
|
background: var(--accent-color);
|
|
|
|
border-radius: 4px;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 0%;
|
|
|
|
transition: width 1s ease-in-out;
|
|
|
|
}
|
|
|
|
.progress-bar.active {
|
|
|
|
background: repeating-linear-gradient(-65deg,
|
|
|
|
var(--background-color2),
|
|
|
|
var(--background-color2) 4px,
|
|
|
|
var(--background-color3) 5px,
|
|
|
|
var(--background-color3) 9px,
|
|
|
|
var(--background-color2) 10px);
|
|
|
|
background-size: 200% auto;
|
|
|
|
background-position: 0 100%;
|
|
|
|
animation: progress-anim 2s infinite;
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
animation-timing-function: linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes progress-anim {
|
|
|
|
0% { background-position: -55px 0; }
|
|
|
|
100% { background-position: 0 0; }
|
2022-10-29 01:48:32 +02:00
|
|
|
}
|
|
|
|
|
2022-11-09 04:22:14 +01:00
|
|
|
/* POPUPS */
|
2022-10-29 01:48:32 +02:00
|
|
|
.popup:not(.active) {
|
2022-10-29 03:41:41 +02:00
|
|
|
visibility: hidden;
|
|
|
|
opacity: 0;
|
2022-10-29 01:48:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup {
|
2022-11-09 09:13:43 +01:00
|
|
|
position: absolute;
|
2022-10-29 01:48:32 +02:00
|
|
|
background: rgba(32, 33, 36, 50%);
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
bottom: 0px;
|
|
|
|
z-index: 1000;
|
2022-10-29 03:41:41 +02:00
|
|
|
opacity: 1;
|
|
|
|
transition: 0s visibility, 0.3s opacity;
|
2022-10-29 01:48:32 +02:00
|
|
|
}
|
|
|
|
|
2022-11-08 11:17:26 +01:00
|
|
|
@media only screen and (min-height: 1050px) {
|
|
|
|
.popup {
|
|
|
|
position: fixed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-29 01:48:32 +02:00
|
|
|
.popup > div {
|
|
|
|
position: relative;
|
|
|
|
background: var(--background-color2);
|
|
|
|
border: solid 1px var(--background-color3);
|
|
|
|
max-width: 700px;
|
|
|
|
margin: auto;
|
|
|
|
margin-top: 50px;
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 30px;
|
|
|
|
text-align: center;
|
2022-10-29 03:41:41 +02:00
|
|
|
box-shadow: 0px 0px 30px black;
|
2022-10-29 01:48:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup .close-button {
|
|
|
|
position: absolute;
|
|
|
|
right: 0px;
|
|
|
|
top: 0px;
|
|
|
|
transform: scale(150%);
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 24px;
|
2022-10-29 03:25:54 +02:00
|
|
|
}
|
|
|
|
|
2022-11-09 04:22:14 +01:00
|
|
|
/* TABS */
|
2022-11-02 07:03:05 +01:00
|
|
|
#tab-container {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
|
|
|
}
|
|
|
|
|
2022-11-09 04:54:41 +01:00
|
|
|
.tab {
|
2022-11-02 07:03:05 +01:00
|
|
|
padding: 8px 16px;
|
|
|
|
border-radius: 4px 4px 0px 0px;
|
|
|
|
margin-left: 8px;
|
2022-10-29 03:25:54 +02:00
|
|
|
cursor: pointer;
|
2022-11-09 09:13:43 +01:00
|
|
|
background: var(--background-color1);
|
2022-11-02 07:03:05 +01:00
|
|
|
opacity: 50%;
|
|
|
|
transition: opacity 0.25s;
|
|
|
|
}
|
|
|
|
|
2022-11-09 04:54:41 +01:00
|
|
|
.tab:hover {
|
2022-11-02 07:03:05 +01:00
|
|
|
opacity: 75%;
|
|
|
|
}
|
|
|
|
|
2022-11-09 04:54:41 +01:00
|
|
|
.tab.active {
|
2022-11-02 07:03:05 +01:00
|
|
|
opacity: 100%;
|
|
|
|
}
|
|
|
|
|
2022-11-09 04:54:41 +01:00
|
|
|
.tab-content:not(.active) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-12-01 11:31:09 +01:00
|
|
|
#tab-content-wrapper > * {
|
|
|
|
padding-top: 8px;
|
2022-11-02 07:03:05 +01:00
|
|
|
}
|
|
|
|
|
2022-11-09 04:54:41 +01:00
|
|
|
.tab-content-inner {
|
|
|
|
margin: auto;
|
|
|
|
max-width: 600px;
|
|
|
|
text-align: center;
|
|
|
|
padding: 20px 10px;
|
|
|
|
}
|
|
|
|
|
2022-11-09 09:13:43 +01:00
|
|
|
.panel-box {
|
|
|
|
background: var(--background-color2);
|
|
|
|
border: 1px solid var(--background-color3);
|
|
|
|
border-radius: 7px;
|
|
|
|
padding: 7px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
|
|
|
|
}
|
2022-11-14 01:58:24 +01:00
|
|
|
|
|
|
|
i.active {
|
|
|
|
background: var(--accent-color);
|
|
|
|
}
|
2022-11-17 06:31:10 +01:00
|
|
|
.primaryButton.active {
|
|
|
|
background: hsl(var(--accent-hue), 100%, 50%);
|
|
|
|
}
|
2022-11-14 15:23:40 +01:00
|
|
|
#system-info {
|
|
|
|
max-width: 800px;
|
2022-11-14 16:51:48 +01:00
|
|
|
font-size: 10pt;
|
2022-11-14 15:23:40 +01:00
|
|
|
}
|
2022-11-14 06:53:22 +01:00
|
|
|
#system-info .value {
|
|
|
|
text-align: left;
|
2022-11-14 15:23:40 +01:00
|
|
|
padding-left: 10pt;
|
2022-11-14 06:53:22 +01:00
|
|
|
}
|
|
|
|
#system-info label {
|
|
|
|
float: right;
|
2022-11-14 15:23:40 +01:00
|
|
|
font-weight: bold;
|
2022-11-14 06:53:22 +01:00
|
|
|
}
|
2022-11-16 20:52:40 +01:00
|
|
|
|
2022-11-18 12:44:58 +01:00
|
|
|
button:active {
|
2022-11-16 20:52:40 +01:00
|
|
|
transition-duration: 0.1s;
|
2022-11-18 12:44:58 +01:00
|
|
|
background-color: hsl(var(--accent-hue), 100%, calc(var(--accent-lightness) + 24%));
|
2022-11-28 01:26:01 +01:00
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
left: 1px;
|
2022-11-16 20:52:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
button#save-system-settings-btn {
|
2022-11-15 07:52:55 +01:00
|
|
|
padding: 4pt 8pt;
|
|
|
|
}
|
2022-11-23 11:25:36 +01:00
|
|
|
#ip-info a {
|
|
|
|
color:var(--text-color)
|
|
|
|
}
|
|
|
|
#ip-info div {
|
|
|
|
line-height: 200%;
|
|
|
|
}
|