2021-12-16 19:11:52 -05:00
|
|
|
:root {
|
2026-02-17 23:48:25 -05:00
|
|
|
--accent: #5a9fd4;
|
2024-07-29 21:49:18 -04:00
|
|
|
--menu-blue: #0079ff;
|
2026-02-17 23:48:25 -05:00
|
|
|
--menu-back: rgba(60,60,60,0.75);
|
|
|
|
|
--border: #444;
|
|
|
|
|
--selected: rgba(90,159,212,0.5);
|
|
|
|
|
--selected-hover: rgba(90,159,212,1);
|
2021-12-16 19:11:52 -05:00
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
2021-12-16 19:11:52 -05:00
|
|
|
@font-face {
|
|
|
|
|
font-family: 'Russo One';
|
2025-07-13 18:47:09 -04:00
|
|
|
src: url('../moto/russo-one.ttf');
|
2021-12-16 19:11:52 -05:00
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
2024-07-23 13:08:17 -04:00
|
|
|
/** defaults */
|
|
|
|
|
|
2021-12-16 19:11:52 -05:00
|
|
|
a, a:hover, a:visited {
|
|
|
|
|
border: none;
|
|
|
|
|
color: inherit;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
2021-12-26 22:00:31 -05:00
|
|
|
body, div {
|
2024-07-28 22:39:04 -04:00
|
|
|
font-family: system-ui, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
2021-12-26 20:01:56 -05:00
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: 0;
|
|
|
|
|
margin: 0;
|
2024-07-29 21:49:18 -04:00
|
|
|
white-space: nowrap;
|
2021-12-26 20:01:56 -05:00
|
|
|
}
|
|
|
|
|
|
2024-07-23 13:08:17 -04:00
|
|
|
hr {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
height: 0.5px;
|
|
|
|
|
max-height: 0.5px;
|
|
|
|
|
border-top: 0.5px solid rgba(0,0,0,0.5);
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-25 15:09:05 -05:00
|
|
|
input {
|
|
|
|
|
background-color: #eee;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
border: 1px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-16 19:11:52 -05:00
|
|
|
#app {
|
|
|
|
|
position: fixed;
|
|
|
|
|
overflow: hidden;
|
2021-12-26 22:00:31 -05:00
|
|
|
flex-direction: column;
|
2021-12-16 19:11:52 -05:00
|
|
|
font-family: sans-serif;
|
2021-12-26 22:00:31 -05:00
|
|
|
font-weight: normal;
|
2021-12-16 19:11:52 -05:00
|
|
|
font-size: larger;
|
2026-02-17 23:48:25 -05:00
|
|
|
background: #0f1116;
|
2021-12-16 19:11:52 -05:00
|
|
|
bottom: 0;
|
2021-12-26 22:00:31 -05:00
|
|
|
right: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
2021-12-16 19:11:52 -05:00
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
2026-02-17 23:48:25 -05:00
|
|
|
#app.booting #top,
|
|
|
|
|
#app.booting #app-body {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-26 22:00:31 -05:00
|
|
|
#app-body {
|
2021-12-16 19:11:52 -05:00
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-26 22:00:31 -05:00
|
|
|
#app-body > div {
|
|
|
|
|
z-index: 2;
|
2021-12-16 19:11:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#curtain {
|
2021-12-26 22:00:31 -05:00
|
|
|
z-index: 50000;
|
2021-12-16 19:11:52 -05:00
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
position: fixed;
|
2026-02-17 23:48:25 -05:00
|
|
|
background: radial-gradient(circle at 50% 40%, #1a2436 0%, #0f1116 60%, #0a0c11 100%);
|
|
|
|
|
color: #d7deea;
|
2021-12-16 19:11:52 -05:00
|
|
|
font-family: 'Russo One', sans-serif;
|
2026-02-17 23:48:25 -05:00
|
|
|
font-size: 16px;
|
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
text-shadow: 0 1px 2px rgba(0,0,0,0.35);
|
2021-12-26 22:00:31 -05:00
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
2021-12-16 19:11:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#container {
|
2021-12-26 22:00:31 -05:00
|
|
|
z-index: 1;
|
2021-12-16 19:11:52 -05:00
|
|
|
position: fixed;
|
2026-02-17 23:48:25 -05:00
|
|
|
background: #0f1116;
|
2021-12-16 19:11:52 -05:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
2021-12-16 19:11:52 -05:00
|
|
|
#container canvas {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#top {
|
2024-07-23 13:08:17 -04:00
|
|
|
z-index: 50;
|
2026-02-17 23:48:25 -05:00
|
|
|
color: #eee;
|
2024-07-29 21:49:18 -04:00
|
|
|
font-size: 14px;
|
2021-12-26 22:00:31 -05:00
|
|
|
flex-direction: row;
|
2024-07-29 21:49:18 -04:00
|
|
|
background-color: var(--menu-back);
|
|
|
|
|
border-bottom: 1px solid var(--border);
|
2024-07-23 13:08:17 -04:00
|
|
|
}
|
|
|
|
|
|
2021-12-26 22:00:31 -05:00
|
|
|
.noselect {
|
|
|
|
|
-khtml-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:-moz-any() {
|
|
|
|
|
overflow-x: hidden !important;
|
|
|
|
|
overflow-y: hidden !important;
|
|
|
|
|
}
|
|
|
|
|
:-moz-any() {
|
|
|
|
|
overflow-x: scroll !important;
|
|
|
|
|
overflow-y: scroll !important;
|
|
|
|
|
margin-right: -14px !important;
|
|
|
|
|
margin-bottom: -14px !important;
|
|
|
|
|
}
|
2022-01-02 16:30:05 -05:00
|
|
|
|
2026-02-17 23:48:25 -05:00
|
|
|
#modal button {
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-02 21:39:09 -05:00
|
|
|
button {
|
|
|
|
|
padding: 2px 3px 2px 3px;
|
|
|
|
|
border: 1px solid rgba(150,150,150,0.5);
|
2022-01-07 21:32:53 -05:00
|
|
|
background-color: rgba(220,220,220,0.75);
|
2022-01-15 13:47:03 -05:00
|
|
|
user-select: none;
|
2022-01-14 16:45:40 -05:00
|
|
|
outline: none;
|
2022-01-02 21:39:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button:hover {
|
2026-02-17 23:48:25 -05:00
|
|
|
background-color: rgba(220,220,220,1);
|
2022-01-02 21:39:09 -05:00
|
|
|
}
|
|
|
|
|
|
2022-01-06 17:28:57 -05:00
|
|
|
/** misc ui **/
|
|
|
|
|
|
2025-10-26 18:15:13 -04:00
|
|
|
.grow {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-06 17:28:57 -05:00
|
|
|
.hide {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-14 23:30:06 -05:00
|
|
|
.pad3 {
|
|
|
|
|
width: 3px;
|
|
|
|
|
height: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pad5 {
|
|
|
|
|
width: 5px;
|
|
|
|
|
height: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-28 22:39:04 -04:00
|
|
|
#top-left {
|
|
|
|
|
margin-left: 5px;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
padding: 0 !important;
|
2022-01-18 16:34:42 -05:00
|
|
|
}
|
|
|
|
|
|
2026-02-17 23:48:25 -05:00
|
|
|
.title {
|
|
|
|
|
cursor: default;
|
|
|
|
|
align-self: stretch;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin: 4px 0 4px 0;
|
|
|
|
|
padding: 4px 12px 4px 12px;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
user-select: none;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: var(--accent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menubar-separator {
|
|
|
|
|
align-self: stretch;
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: rgba(255,255,255,0.2);
|
|
|
|
|
margin: 5px;
|
|
|
|
|
width: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-separator {
|
|
|
|
|
align-self: stretch;
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: rgba(255,255,255,0.2);
|
|
|
|
|
margin: 2px;
|
|
|
|
|
height: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu, #top-doc-name, #top-mode-label {
|
2024-07-28 22:39:04 -04:00
|
|
|
cursor: default;
|
|
|
|
|
align-self: stretch;
|
2022-02-25 14:06:28 -05:00
|
|
|
align-items: center;
|
2024-07-29 21:49:18 -04:00
|
|
|
padding: 8px 12px 8px 12px;
|
2026-02-17 23:48:25 -05:00
|
|
|
border: 1px solid transparent;
|
2024-07-28 22:39:04 -04:00
|
|
|
border-radius: 6px;
|
|
|
|
|
user-select: none;
|
2026-02-17 23:48:25 -05:00
|
|
|
margin: 2px;
|
2024-07-28 22:39:04 -04:00
|
|
|
}
|
|
|
|
|
|
2026-02-17 23:48:25 -05:00
|
|
|
.menu hr {
|
2024-07-28 22:39:04 -04:00
|
|
|
border-top: 0.5px solid rgba(255,255,255,0.5);
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-29 21:49:18 -04:00
|
|
|
.menu:hover, .menu-items > div:hover, .tools i:hover {
|
2026-02-17 23:48:25 -05:00
|
|
|
border: 1px solid var(--accent);
|
|
|
|
|
background-color: rgba(0,0,0,0.5);
|
2024-07-28 22:39:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu:hover .menu-items {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-items {
|
|
|
|
|
display: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
flex-direction: column;
|
2026-02-17 23:48:25 -05:00
|
|
|
border: 1px solid #999;
|
2024-07-28 22:39:04 -04:00
|
|
|
border-radius: 6px;
|
2026-02-17 23:48:25 -05:00
|
|
|
background: #333;
|
2024-07-28 22:39:04 -04:00
|
|
|
padding: 4px;
|
2026-02-17 23:48:25 -05:00
|
|
|
top: calc(100% + 3px);
|
2024-07-28 22:39:04 -04:00
|
|
|
left: 0;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-17 23:48:25 -05:00
|
|
|
/* invisible bridge between menu label and pop menu */
|
|
|
|
|
.menu-items::before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -20px;
|
|
|
|
|
left: -10px;
|
|
|
|
|
right: -10px;
|
|
|
|
|
height: calc(100% + 20px);
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-28 22:39:04 -04:00
|
|
|
.menu-items > div {
|
2024-07-29 17:37:27 -04:00
|
|
|
gap: 15px;
|
2026-02-17 23:48:25 -05:00
|
|
|
border: 1px solid transparent;
|
2024-07-28 22:39:04 -04:00
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 4px 8px 4px 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-29 17:37:27 -04:00
|
|
|
.menu-items .short {
|
|
|
|
|
gap: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-18 14:05:05 -04:00
|
|
|
#top-left:not(:hover) #mode-label {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-28 22:39:04 -04:00
|
|
|
#top-mid {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#top-right {
|
2022-01-18 16:34:42 -05:00
|
|
|
flex-direction: row;
|
2024-07-28 22:39:04 -04:00
|
|
|
margin-right: 5px;
|
|
|
|
|
padding: 0 !important;
|
2022-01-18 16:34:42 -05:00
|
|
|
}
|
|
|
|
|
|
2024-07-28 22:39:04 -04:00
|
|
|
#top-right > div {
|
|
|
|
|
gap: 8px;
|
2022-01-09 10:13:09 -05:00
|
|
|
}
|
|
|
|
|
|
2026-02-17 23:48:25 -05:00
|
|
|
#top-mode-label {
|
|
|
|
|
color: var(--accent);
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#top-doc-name {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
max-width: 320px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
border-color: #404040;
|
|
|
|
|
background-color: #202020;
|
|
|
|
|
transition: border-color 0.15s, color 0.15s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#top-doc-name:hover {
|
|
|
|
|
border-color: var(--accent);
|
|
|
|
|
background-color: rgba(0,0,0,0.5);
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 16:51:55 -04:00
|
|
|
/** specific modal dialogs */
|
|
|
|
|
|
2022-01-10 21:06:38 -05:00
|
|
|
.export {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-09 14:43:20 -05:00
|
|
|
.export, .export div {
|
|
|
|
|
gap: 4px;
|
2022-01-09 15:10:55 -05:00
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-10 21:06:38 -05:00
|
|
|
.export input, .export button {
|
2022-01-09 15:10:55 -05:00
|
|
|
font-family: monospace;
|
2022-01-10 21:06:38 -05:00
|
|
|
padding: 3px;
|
2022-01-09 15:10:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.export button {
|
|
|
|
|
padding: 4px;
|
2022-01-09 14:43:20 -05:00
|
|
|
}
|
|
|
|
|
|
2022-05-03 09:02:09 -04:00
|
|
|
.addact {
|
2022-04-19 16:51:55 -04:00
|
|
|
gap: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-24 23:24:03 -04:00
|
|
|
.addact input, .additem input {
|
2022-04-19 16:51:55 -04:00
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-24 23:24:03 -04:00
|
|
|
.additem {
|
2024-07-20 02:24:40 -04:00
|
|
|
gap: 5px 10px;
|
2024-07-18 10:53:27 -06:00
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 50px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-24 23:24:03 -04:00
|
|
|
/* .additem hr {
|
2024-07-19 12:43:13 -04:00
|
|
|
width: 100%;
|
2024-07-28 22:39:04 -04:00
|
|
|
} */
|
2024-07-19 12:43:13 -04:00
|
|
|
|
2024-08-24 23:24:03 -04:00
|
|
|
.additem button, .additem hr, .additem code {
|
2024-07-19 12:43:13 -04:00
|
|
|
grid-column: span 2;
|
|
|
|
|
text-align: center;
|
2024-07-18 10:53:27 -06:00
|
|
|
}
|
|
|
|
|
|
2026-02-17 23:48:25 -05:00
|
|
|
.doc-open-list {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
min-width: 420px;
|
|
|
|
|
max-height: 60vh;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.doc-open-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
border: 1px solid var(--menu-border, #bbb);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 6px 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.doc-open-row:hover {
|
|
|
|
|
background-color: var(--menu-blue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.doc-open-name {
|
|
|
|
|
flex: 1;
|
|
|
|
|
text-align: left;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.doc-open-empty {
|
|
|
|
|
padding: 8px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.doc-open-new {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.doc-open-del {
|
|
|
|
|
min-width: 28px;
|
|
|
|
|
padding: 2px 8px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-11 23:18:34 -04:00
|
|
|
.image-import {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image-import label {
|
|
|
|
|
padding-right: 5px;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image-import input {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image-import button {
|
|
|
|
|
margin: 10px 20px 1px 20px;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 16:51:55 -04:00
|
|
|
/** generic modal dialogs **/
|
2022-01-06 15:10:03 -05:00
|
|
|
|
|
|
|
|
#modal_page {
|
2022-01-07 14:39:32 -05:00
|
|
|
background-color: rgba(0,0,0,0.25);
|
2022-01-06 15:10:03 -05:00
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
position: absolute;
|
2024-07-23 13:08:17 -04:00
|
|
|
z-index: 500 !important;
|
2022-01-06 15:10:03 -05:00
|
|
|
bottom: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#modal_frame {
|
2026-02-17 23:48:25 -05:00
|
|
|
background-color: rgba(30,30,30,0.9);
|
|
|
|
|
border: 1px solid rgba(200,200,200,0.6);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
color: white;
|
2022-01-06 15:10:03 -05:00
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 2px;
|
2026-02-17 23:48:25 -05:00
|
|
|
margin: 0 0 2px 0;
|
|
|
|
|
padding: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#modal_frame a {
|
|
|
|
|
color: var(--accent);
|
2022-01-06 15:10:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#modal_frame > div {
|
2022-01-14 23:30:06 -05:00
|
|
|
flex-direction: column;
|
2022-01-09 14:43:20 -05:00
|
|
|
padding: 5px; /* compensate for removing padding above */
|
2022-01-06 15:10:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#modal_title {
|
2026-02-17 23:48:25 -05:00
|
|
|
color: white;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
border-bottom: 1px solid rgba(0,0,0,0.2);
|
|
|
|
|
background-color: rgba(0,0,0,0.7);
|
2022-01-18 16:34:42 -05:00
|
|
|
font-family: 'Russo One', monospace;
|
|
|
|
|
font-size: smaller;
|
2022-01-09 15:10:55 -05:00
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
2022-01-06 15:10:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#modal_title_close {
|
2022-01-09 15:10:55 -05:00
|
|
|
position: absolute;
|
2026-02-17 23:48:25 -05:00
|
|
|
color: #999;
|
2022-04-19 16:51:55 -04:00
|
|
|
right: 3px;
|
2022-01-20 15:42:28 -05:00
|
|
|
top: 2px;
|
2022-01-06 15:10:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#modal_title_close:hover {
|
2026-02-17 23:48:25 -05:00
|
|
|
color: #eee;
|
2022-01-06 15:10:03 -05:00
|
|
|
}
|
|
|
|
|
|
2022-02-25 15:09:05 -05:00
|
|
|
/** welcome dialog **/
|
|
|
|
|
|
|
|
|
|
.welcome {
|
2024-07-29 17:37:27 -04:00
|
|
|
font-size: smaller;
|
2022-02-25 15:09:05 -05:00
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
gap: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.welcome a {
|
|
|
|
|
border-radius: 3px;
|
2026-02-17 23:48:25 -05:00
|
|
|
padding: 2px 10px 2px 10px;
|
2022-02-25 15:09:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.welcome a:hover {
|
2026-02-17 23:48:25 -05:00
|
|
|
background-color: #111;
|
2022-02-25 15:09:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.welcome .choice {
|
|
|
|
|
gap: 5px
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-20 23:29:35 -05:00
|
|
|
/** settings dialog **/
|
|
|
|
|
|
2022-04-18 22:02:36 -04:00
|
|
|
.settings {
|
|
|
|
|
gap: 5px;
|
|
|
|
|
display: grid;
|
2026-02-17 23:48:25 -05:00
|
|
|
/* background-color: #fff; */
|
2022-04-18 22:02:36 -04:00
|
|
|
grid: min-content 1fr / min-content 1fr;
|
2024-07-27 22:08:26 -04:00
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
2022-04-18 22:02:36 -04:00
|
|
|
}
|
|
|
|
|
|
2022-02-25 13:56:09 -05:00
|
|
|
.settings > div {
|
2022-01-20 23:29:35 -05:00
|
|
|
display: grid;
|
2026-02-17 23:48:25 -05:00
|
|
|
background-color: rgba(0,0,0,0.1);
|
2022-01-20 23:29:35 -05:00
|
|
|
grid: min-content 1fr / min-content 1fr;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
align-items: center;
|
2026-02-17 23:48:25 -05:00
|
|
|
border: 1px solid rgba(100,100,100,0.7);
|
2022-04-18 22:02:36 -04:00
|
|
|
border-radius: 3px;
|
|
|
|
|
padding: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settings .header {
|
|
|
|
|
grid-column: 1 / 3;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
border-radius: 3px;
|
2026-02-17 23:48:25 -05:00
|
|
|
background-color: rgba(100,100,100,0.8);
|
2022-04-18 22:02:36 -04:00
|
|
|
padding: 0;
|
2022-01-20 23:29:35 -05:00
|
|
|
}
|
|
|
|
|
|
2022-02-25 13:56:09 -05:00
|
|
|
.settings label {
|
|
|
|
|
padding: 0 5px 0 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settings input {
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
text-align: center;
|
2022-04-18 22:02:36 -04:00
|
|
|
background: #fff;
|
2024-07-26 22:28:52 -04:00
|
|
|
justify-self: end;
|
2022-02-25 13:56:09 -05:00
|
|
|
}
|
|
|
|
|
|
2022-01-07 01:18:35 -05:00
|
|
|
/** spinner animation **/
|
|
|
|
|
|
|
|
|
|
@keyframes spinner {
|
|
|
|
|
0% {
|
|
|
|
|
transform: translate3d(-50%, -50%, 0) rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
transform: translate3d(-50%, -50%, 0) rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spin::before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
animation: 2.0s linear infinite spinner;
|
|
|
|
|
animation-play-state: inherit;
|
|
|
|
|
border: solid 10px #cfd0d1;
|
|
|
|
|
border-bottom-color: #1c87c9;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
content: "";
|
|
|
|
|
height: 50px;
|
|
|
|
|
width: 50px;
|
|
|
|
|
top: 10%;
|
|
|
|
|
left: 10%;
|
|
|
|
|
transform: translate3d(-50%, -50%, 0);
|
|
|
|
|
will-change: transform;
|
2022-01-06 15:10:03 -05:00
|
|
|
}
|
|
|
|
|
|
2022-01-15 13:47:03 -05:00
|
|
|
/** common look & feel */
|
2022-01-06 11:46:52 -05:00
|
|
|
|
2026-02-17 23:48:25 -05:00
|
|
|
#actions > div, #grouplist > div {
|
|
|
|
|
border: 1px solid #555;
|
2022-01-06 11:46:52 -05:00
|
|
|
border-radius: 3px;
|
|
|
|
|
margin: 0 0 2px 0;
|
|
|
|
|
padding: 3px;
|
2022-01-07 21:32:53 -05:00
|
|
|
background-color: rgba(255,255,255,0.5);
|
2022-01-06 11:46:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#actions .vsep, #grouplist .vsep {
|
|
|
|
|
margin: 1px 0 1px 0;
|
|
|
|
|
border-bottom: 1px dashed gray;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-28 22:39:04 -04:00
|
|
|
.menu .selected {
|
2024-07-29 21:49:18 -04:00
|
|
|
background-color: var(--selected);
|
2022-01-15 13:47:03 -05:00
|
|
|
}
|
|
|
|
|
|
2024-07-28 22:39:04 -04:00
|
|
|
.menu .selected:hover {
|
2024-07-29 21:49:18 -04:00
|
|
|
background-color: var(--selected-hover);
|
2022-01-15 13:47:03 -05:00
|
|
|
}
|
|
|
|
|
|
2026-02-17 23:48:25 -05:00
|
|
|
/* .head {
|
2022-01-19 14:04:04 -05:00
|
|
|
color: #000 !important;
|
2024-07-29 17:37:27 -04:00
|
|
|
} */
|
2022-01-19 14:04:04 -05:00
|
|
|
|
2022-01-07 14:39:32 -05:00
|
|
|
/** slide in/out logging window **/
|
|
|
|
|
|
|
|
|
|
#logger {
|
2024-07-29 21:49:18 -04:00
|
|
|
border-top: 1px solid var(--border);
|
|
|
|
|
border-right: 1px solid var(--border);
|
|
|
|
|
background-color: var(--menu-back);
|
2022-01-07 14:39:32 -05:00
|
|
|
display: none;
|
2026-02-17 23:48:25 -05:00
|
|
|
color: #ddd;
|
2022-01-07 14:39:32 -05:00
|
|
|
min-width: 300px;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
position: absolute;
|
2024-07-29 21:49:18 -04:00
|
|
|
margin: 0 0 0 1px;
|
2022-01-07 14:39:32 -05:00
|
|
|
bottom: 0;
|
2024-07-29 21:49:18 -04:00
|
|
|
left: 100%;
|
|
|
|
|
padding: 5px;
|
2022-01-07 14:39:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#logtext {
|
|
|
|
|
flex-direction: column;
|
2024-07-19 18:26:38 -04:00
|
|
|
max-height: 8em;
|
2022-01-07 14:39:32 -05:00
|
|
|
min-height: 1em;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-29 21:49:18 -04:00
|
|
|
#logtext > div {
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-07 14:39:32 -05:00
|
|
|
#logtext::-webkit-scrollbar {
|
|
|
|
|
width: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#logtext::-webkit-scrollbar-track {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#logtext::-webkit-scrollbar-thumb {
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
background-color: #ddd;
|
|
|
|
|
border: 3px solid rgba(255,255,255,0.1);
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-29 21:49:18 -04:00
|
|
|
/** left menu sketch and object tool menus */
|
|
|
|
|
|
|
|
|
|
#tools {
|
|
|
|
|
border-right: 1px solid var(--border);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tools {
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
background-color: var(--menu-back);
|
2026-02-17 23:48:25 -05:00
|
|
|
padding-top: 2px;
|
2024-07-29 21:49:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tools > div {
|
2026-02-17 23:48:25 -05:00
|
|
|
color: #fff;
|
2024-07-29 21:49:18 -04:00
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr;
|
2026-02-17 23:48:25 -05:00
|
|
|
margin: 2px;
|
2024-07-29 21:49:18 -04:00
|
|
|
}
|
|
|
|
|
|
2024-07-29 22:56:57 -04:00
|
|
|
.tools i {
|
2024-07-29 21:49:18 -04:00
|
|
|
padding: 9px;
|
2026-02-17 23:48:25 -05:00
|
|
|
border: 1px solid transparent;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
/* border-bottom: 1px solid var(--border); */
|
2024-07-29 21:49:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tool > div {
|
|
|
|
|
display: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
left: 100%;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
place-items: center; /* Center the single grid item */
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-19 14:57:09 -04:00
|
|
|
.tool label:before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -2px; /* Adjust to position the caret */
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
border-width: 6px;
|
|
|
|
|
border-style: solid;
|
|
|
|
|
border-color: transparent #ddd transparent transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-29 21:49:18 -04:00
|
|
|
.tool label {
|
|
|
|
|
font-size: 12px !important;
|
|
|
|
|
background-color: var(--menu-back);
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 4px 6px 4px 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tool:hover > div {
|
|
|
|
|
display: grid;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-24 23:56:06 -04:00
|
|
|
#script {
|
2025-10-26 18:15:13 -04:00
|
|
|
margin: 5px 0px 5px 5px;
|
|
|
|
|
/* margin-top: 5px;
|
|
|
|
|
margin-left: 5px; */
|
2025-10-24 23:56:06 -04:00
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: end;
|
|
|
|
|
color: white;
|
2025-10-26 18:15:13 -04:00
|
|
|
height: calc(100% - 10px);
|
2025-10-24 23:56:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#script-header {
|
|
|
|
|
padding: 3px 5px 3px 5px;
|
|
|
|
|
background-color: #333;
|
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
|
border-top: 1px solid #999;
|
|
|
|
|
border-left: 1px solid #999;
|
|
|
|
|
border-right: 1px solid #999;
|
|
|
|
|
flex-direction: row;
|
2025-10-26 18:15:13 -04:00
|
|
|
gap: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#script-header button {
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#script-header .close {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
line-height: 1;
|
2025-10-24 23:56:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#script-editor {
|
|
|
|
|
color: white;
|
|
|
|
|
background-color: #222;
|
|
|
|
|
outline: none;
|
2025-10-26 18:15:13 -04:00
|
|
|
height: 100%;
|
|
|
|
|
resize: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#script-error {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
font-family: monospace;
|
2025-10-24 23:56:06 -04:00
|
|
|
}
|
|
|
|
|
|
2022-01-06 15:10:03 -05:00
|
|
|
/** group/model buttons top/right of workspace **/
|
2022-01-05 15:58:11 -05:00
|
|
|
|
2022-01-02 16:30:05 -05:00
|
|
|
#grouplist {
|
|
|
|
|
position: absolute;
|
|
|
|
|
margin: 3px 3px 0 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-29 21:49:18 -04:00
|
|
|
#grouplist .selected {
|
|
|
|
|
background-color: var(--selected);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#grouplist .selected:hover {
|
|
|
|
|
background-color: var(--selected-hover);
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-02 16:30:05 -05:00
|
|
|
#grouplist, #grouplist div {
|
|
|
|
|
flex-direction: column;
|
2022-01-06 11:46:52 -05:00
|
|
|
gap: 2px;
|
2022-01-02 21:25:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#grouplist .group {
|
|
|
|
|
font-weight: bold;
|
2022-01-02 16:30:05 -05:00
|
|
|
padding: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-06 11:46:52 -05:00
|
|
|
#grouplist .models {
|
2022-04-19 20:56:36 -04:00
|
|
|
display: grid;
|
2022-04-20 11:13:52 -04:00
|
|
|
grid-template-columns: auto min-content;
|
2022-01-06 20:22:50 -05:00
|
|
|
max-height: 200px;
|
|
|
|
|
overflow-y: auto;
|
2022-04-20 11:13:52 -04:00
|
|
|
gap: 1px;
|
2022-01-06 11:46:52 -05:00
|
|
|
}
|
|
|
|
|
|
2022-04-19 20:56:36 -04:00
|
|
|
#grouplist .models .square {
|
2022-04-20 16:53:28 -04:00
|
|
|
display: flex;
|
2022-04-19 20:56:36 -04:00
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2022-04-20 11:13:52 -04:00
|
|
|
margin: 0;
|
2022-04-19 20:56:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#grouplist .models .square > svg {
|
|
|
|
|
aspect-ratio: 1;
|
2024-07-22 21:31:52 -04:00
|
|
|
max-height: 20px;
|
2026-02-17 23:48:25 -05:00
|
|
|
color: #333;
|
2022-01-12 00:28:33 -05:00
|
|
|
}
|
|
|
|
|
|
2022-04-19 20:56:36 -04:00
|
|
|
#grouplist .models > div {
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#grouplist .models button {
|
|
|
|
|
text-align: left;
|
2022-01-12 00:28:33 -05:00
|
|
|
}
|
|
|
|
|
|
2022-01-06 15:10:03 -05:00
|
|
|
/** selection info bottom/right of workspace **/
|
2022-01-05 15:58:11 -05:00
|
|
|
|
|
|
|
|
#selectlist {
|
2022-01-05 17:58:37 -05:00
|
|
|
font-size: smaller;
|
2022-01-05 15:58:11 -05:00
|
|
|
position: absolute;
|
|
|
|
|
margin: 0 3px 3px 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
right: 0;
|
2022-01-05 17:58:37 -05:00
|
|
|
gap: 2px;
|
2022-01-05 15:58:11 -05:00
|
|
|
}
|
|
|
|
|
|
2022-01-07 23:30:19 -05:00
|
|
|
#selectlist > .side {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 1.75em;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#selectlist > .side > div {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translate(-50%, -50%) rotate(-90deg);
|
|
|
|
|
padding-bottom: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-05 15:58:11 -05:00
|
|
|
#selectlist > div {
|
|
|
|
|
flex-direction: column;
|
2022-01-05 17:58:37 -05:00
|
|
|
gap: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 23:03:58 -04:00
|
|
|
#selectlist > button, #selectlist > div > button {
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-05 17:58:37 -05:00
|
|
|
#selectlist label {
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
text-align: right;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
background-color: rgba(0,0,0,0.05);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#selectlist .top {
|
|
|
|
|
display: block;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: smaller;
|
|
|
|
|
text-align: center;
|
2022-01-05 15:58:11 -05:00
|
|
|
}
|
|
|
|
|
|
2022-01-05 17:58:37 -05:00
|
|
|
#selectlist .side {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: smaller;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#selectlist .grid {
|
2022-01-06 09:38:04 -05:00
|
|
|
background-color: rgba(255,255,255,0.8);
|
2022-01-05 17:58:37 -05:00
|
|
|
border: 1px solid rgba(0,0,0,0.15);
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
padding: 3px;
|
2022-01-05 15:58:11 -05:00
|
|
|
display: grid;
|
2024-07-30 15:12:02 -04:00
|
|
|
flex-grow: 1;
|
2022-01-05 17:58:37 -05:00
|
|
|
gap: 2px 2px;
|
|
|
|
|
grid: min-content 1fr 1fr / min-content 1fr 1fr 1fr;
|
2022-01-05 15:58:11 -05:00
|
|
|
}
|
2022-01-05 17:58:37 -05:00
|
|
|
|
2024-07-25 23:30:58 -04:00
|
|
|
#selectlist .grid0 {
|
2022-04-19 23:03:58 -04:00
|
|
|
display: flex;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-25 23:30:58 -04:00
|
|
|
#selectlist .grid1 {
|
2022-01-05 22:09:49 -05:00
|
|
|
grid: min-content 1fr / min-content 1fr;
|
|
|
|
|
}
|
2022-01-20 15:42:28 -05:00
|
|
|
|
2024-07-25 23:30:58 -04:00
|
|
|
#selectlist .grid2 {
|
|
|
|
|
grid: min-content 1fr 1fr / min-content 1fr 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-20 17:01:56 -05:00
|
|
|
.grid .ungrouped {
|
|
|
|
|
background-color: rgba(128,128,128,0.5) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grid .ungrouped:hover {
|
|
|
|
|
color: #fff !important;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-20 17:40:10 -05:00
|
|
|
.tempedit, .rename {
|
2022-01-20 15:42:28 -05:00
|
|
|
gap: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tempedit input {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editable {
|
2022-01-20 17:01:56 -05:00
|
|
|
color: #05a;
|
|
|
|
|
cursor: default;
|
2022-01-20 15:42:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editable:hover {
|
2022-01-20 17:01:56 -05:00
|
|
|
color: #000;
|
2022-01-20 15:42:28 -05:00
|
|
|
background-color: rgba(0,128,255,0.5) !important;
|
|
|
|
|
}
|
2022-03-31 20:45:49 -04:00
|
|
|
|
2022-04-05 16:29:33 -07:00
|
|
|
#pinner-box {
|
2022-03-31 20:45:49 -04:00
|
|
|
position: absolute;
|
2022-04-05 16:29:33 -07:00
|
|
|
z-index: 5000;
|
2022-04-01 09:45:35 -04:00
|
|
|
left: 50%;
|
|
|
|
|
bottom: 50%;
|
2022-04-05 16:29:33 -07:00
|
|
|
transform: translate(-50%, 50%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#pinner {
|
|
|
|
|
z-index: 5000;
|
|
|
|
|
display: none;
|
2024-08-29 14:49:31 -04:00
|
|
|
width: 50px;
|
|
|
|
|
height: 50px;
|
2026-02-17 23:48:25 -05:00
|
|
|
background-color: rgba(255,255,255,0.15);
|
|
|
|
|
border: 12px solid rgba(255,255,255,0.25);
|
2022-03-31 20:45:49 -04:00
|
|
|
border-radius: 50%;
|
2026-02-17 23:48:25 -05:00
|
|
|
border-top-color: rgba(255,255,255,0.6);
|
2022-03-31 20:45:49 -04:00
|
|
|
animation: spin 1.5s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes spin {
|
2022-04-05 16:29:33 -07:00
|
|
|
to { transform: rotate(360deg) }
|
2022-03-31 20:45:49 -04:00
|
|
|
}
|