Skip to content

Commit

Permalink
deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
gbishop committed May 23, 2024
1 parent 23df7a4 commit 7024d01
Show file tree
Hide file tree
Showing 4 changed files with 505 additions and 631 deletions.
146 changes: 69 additions & 77 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,6 @@ body:not(.designing) video[dbsrc]:not([src]) {
display: flex;
width: 100%;
height: 100%;
white-space: pre-line;
}

.display button {
Expand All @@ -401,13 +400,6 @@ body:not(.designing) video[dbsrc]:not([src]) {
.display button:disabled {
color: var(--text1);
}

.display span.caret {
display: inline-block;
width: 0.1ch;
height: 0.7lh;
background-color: red;
}
.radio {
display: flex;
width: 100%;
Expand Down Expand Up @@ -723,75 +715,6 @@ button.button {
#monitor table tr[accessed] {
background-color: var(--surface2);
}
div.logging-indicator {
position: absolute;
top: 2px;
right: 2px;
width: 10px;
height: 10px;
border-radius: 50%;
}

div.logging-indicator[logging] {
background: var(--warning);
animation: pulse 5s infinite;
}

@keyframes pulse {
0% {
opacity: 0;
}

50% {
opacity: 1;
}

100% {
opacity: 0;
}
}

.settings details.Logger textarea {
width: 97%;
}

.settings details.Logger {
width: 100%;
}

.settings label.labeledInput:has(textarea) {
width: 100%;
}
#PleaseWait {
position: fixed;
width: 100vw;
height: 100vh;
background-color: rgb(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
font-size: 2em;
transition: all 0.5s ease-in;
opacity: 1;
top: 0;
left: 0;
}

#PleaseWait:empty {
background-color: rgb(0, 0, 0, 0);
opacity: 0;
}

#PleaseWait div {
padding: 5em;
border: 1px solid black;
background-color: white;
}

#PleaseWait .message {
color: blue;
}
body.designing {
display: grid;
grid-template-rows: 2.5em 50% auto;
Expand Down Expand Up @@ -1059,6 +982,75 @@ details summary > * {
vertical-align: bottom;
margin-right: 0.5em;
}
#PleaseWait {
position: fixed;
width: 100vw;
height: 100vh;
background-color: rgb(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
font-size: 2em;
transition: all 0.5s ease-in;
opacity: 1;
top: 0;
left: 0;
}

#PleaseWait:empty {
background-color: rgb(0, 0, 0, 0);
opacity: 0;
}

#PleaseWait div {
padding: 5em;
border: 1px solid black;
background-color: white;
}

#PleaseWait .message {
color: blue;
}
div.logging-indicator {
position: absolute;
top: 2px;
right: 2px;
width: 10px;
height: 10px;
border-radius: 50%;
}

div.logging-indicator[logging] {
background: var(--warning);
animation: pulse 5s infinite;
}

@keyframes pulse {
0% {
opacity: 0;
}

50% {
opacity: 1;
}

100% {
opacity: 0;
}
}

.settings details.Logger textarea {
width: 97%;
}

.settings details.Logger {
width: 100%;
}

.settings label.labeledInput:has(textarea) {
width: 100%;
}
div.empty {
background-color: rgba(15, 15, 15, 0.3);
justify-content: center;
Expand Down
Loading

0 comments on commit 7024d01

Please sign in to comment.