Refactor org web content and simplify shared UI
All checks were successful
Build Org Website / build (push) Successful in 44s
All checks were successful
Build Org Website / build (push) Successful in 44s
This commit is contained in:
@@ -307,16 +307,14 @@
|
||||
transform: rotate(-4deg);
|
||||
}
|
||||
|
||||
.bookshelf,
|
||||
.timeline-list {
|
||||
.bookshelf {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.75rem;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.book-spine,
|
||||
.timeline-card {
|
||||
.book-spine {
|
||||
touch-action: none;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 7px;
|
||||
@@ -350,54 +348,6 @@
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.timeline-list {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.timeline-card {
|
||||
display: grid;
|
||||
grid-template-columns: 5rem 1fr;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.timeline-card span {
|
||||
color: var(--play-brass);
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.recipe-tool {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
|
||||
gap: 1rem;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.recipe-wheel {
|
||||
aspect-ratio: 1;
|
||||
width: 100%;
|
||||
border-radius: 50% !important;
|
||||
background:
|
||||
conic-gradient(from 0deg, var(--play-red), var(--play-brass), var(--play-green), var(--play-blue), var(--play-red));
|
||||
color: #fff8e8 !important;
|
||||
font-weight: 900;
|
||||
transition: transform 900ms cubic-bezier(.18, .88, .2, 1.15);
|
||||
}
|
||||
|
||||
.recipe-result {
|
||||
display: grid;
|
||||
gap: 0.7rem;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.recipe-result li {
|
||||
padding: 0.85rem;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 7px;
|
||||
background: var(--surface);
|
||||
}
|
||||
|
||||
.terminal-tool {
|
||||
background: #15120e;
|
||||
color: #f2e3bd;
|
||||
@@ -495,316 +445,358 @@
|
||||
background: var(--surface);
|
||||
}
|
||||
|
||||
.rpg-shell {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 960px) minmax(280px, 1fr);
|
||||
gap: 1rem;
|
||||
align-items: start;
|
||||
.archive-world {
|
||||
--world-ink: #17251e;
|
||||
--world-panel: #f3ead2;
|
||||
--world-paper: #fff9e9;
|
||||
--world-line: #8b6841;
|
||||
--world-brass: #d49a3a;
|
||||
--world-moss: #527657;
|
||||
--world-berry: #9d5268;
|
||||
max-width: 1440px;
|
||||
}
|
||||
|
||||
.ash-rpg-root {
|
||||
--ash-black: #05070c;
|
||||
--ash-ink: #0d1420;
|
||||
--ash-panel: #121a27;
|
||||
--ash-line: #344154;
|
||||
--ash-gold: #e0a451;
|
||||
--ash-cold: #8bd3ff;
|
||||
--ash-red: #db4f62;
|
||||
--ash-text: #f8efe0;
|
||||
--ash-muted: #a8b4c2;
|
||||
max-width: 1380px;
|
||||
.archive-world__heading {
|
||||
max-width: 900px;
|
||||
}
|
||||
|
||||
.ash-rpg-root .play-page-head {
|
||||
padding: 1rem 0;
|
||||
border-bottom: 1px solid rgba(139, 211, 255, 0.18);
|
||||
.archive-world__shell {
|
||||
overflow: hidden;
|
||||
border: 2px solid var(--world-line);
|
||||
border-radius: 12px;
|
||||
background: var(--world-ink);
|
||||
box-shadow: 0 22px 70px rgba(23, 37, 30, 0.28);
|
||||
}
|
||||
|
||||
.ash-rpg-root .play-page-head h1 {
|
||||
color: var(--ash-text);
|
||||
font-family: Georgia, "Times New Roman", serif;
|
||||
text-shadow: 0 0 18px rgba(139, 211, 255, 0.22);
|
||||
}
|
||||
|
||||
.ash-rpg-root .play-page-head p,
|
||||
.ash-rpg-root .play-back {
|
||||
color: var(--ash-muted);
|
||||
}
|
||||
|
||||
.ash-rpg-shell {
|
||||
position: relative;
|
||||
border-color: rgba(139, 211, 255, 0.22);
|
||||
.archive-world__toolbar {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.65rem;
|
||||
align-items: center;
|
||||
padding: 0.75rem;
|
||||
border-bottom: 2px solid #6e5738;
|
||||
background:
|
||||
linear-gradient(180deg, rgba(12, 20, 32, 0.96), rgba(4, 7, 12, 0.98)),
|
||||
var(--ash-black);
|
||||
box-shadow:
|
||||
0 0 0 1px rgba(224, 164, 81, 0.14) inset,
|
||||
0 28px 80px rgba(0, 0, 0, 0.42);
|
||||
linear-gradient(rgba(255, 255, 255, 0.04), transparent),
|
||||
#2d3f33;
|
||||
color: #fff6dc;
|
||||
}
|
||||
|
||||
.ash-rpg-shell::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
border-radius: 8px;
|
||||
background:
|
||||
repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 4px);
|
||||
mix-blend-mode: screen;
|
||||
opacity: 0.35;
|
||||
}
|
||||
|
||||
.rpg-stage {
|
||||
.archive-world__toolbar > div {
|
||||
display: grid;
|
||||
gap: 0.75rem;
|
||||
min-width: 110px;
|
||||
}
|
||||
|
||||
.rpg-canvas {
|
||||
display: block;
|
||||
width: 100%;
|
||||
aspect-ratio: 16 / 9;
|
||||
image-rendering: pixelated;
|
||||
border: 2px solid var(--ash-line);
|
||||
border-radius: 8px;
|
||||
background: var(--ash-black);
|
||||
box-shadow:
|
||||
0 0 0 4px #05070c,
|
||||
0 0 34px rgba(139, 211, 255, 0.16);
|
||||
}
|
||||
|
||||
.ash-rpg-canvas {
|
||||
min-height: 360px;
|
||||
}
|
||||
|
||||
.rpg-dialogue,
|
||||
.rpg-panel {
|
||||
border: 1px solid var(--ash-line);
|
||||
border-radius: 8px;
|
||||
background:
|
||||
linear-gradient(180deg, rgba(21, 31, 46, 0.95), rgba(8, 12, 18, 0.96)),
|
||||
var(--ash-panel);
|
||||
color: var(--ash-text);
|
||||
}
|
||||
|
||||
.rpg-dialogue {
|
||||
min-height: 130px;
|
||||
padding: 1rem;
|
||||
box-shadow: 0 0 0 1px rgba(248, 239, 224, 0.05) inset;
|
||||
}
|
||||
|
||||
.rpg-dialogue strong,
|
||||
.rpg-list h2 {
|
||||
color: var(--ash-gold);
|
||||
}
|
||||
|
||||
.rpg-dialogue p,
|
||||
.rpg-status {
|
||||
margin: 0.35rem 0 0;
|
||||
color: var(--ash-muted);
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.rpg-panel {
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
padding: 1rem;
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
.rpg-actions,
|
||||
.rpg-mobile-pad {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.ash-rpg-root button {
|
||||
border-color: rgba(139, 211, 255, 0.28);
|
||||
background: linear-gradient(180deg, #1a2638, #0c121c);
|
||||
color: var(--ash-text);
|
||||
font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
|
||||
font-weight: 800;
|
||||
.archive-world__toolbar span {
|
||||
color: #d8c9a6;
|
||||
font-size: 0.68rem;
|
||||
font-weight: 900;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.ash-rpg-root button:hover:not(:disabled),
|
||||
.ash-rpg-root button:focus-visible {
|
||||
background: linear-gradient(180deg, #31435f, #142236);
|
||||
color: #ffffff;
|
||||
box-shadow: 0 0 18px rgba(139, 211, 255, 0.22);
|
||||
.archive-world__toolbar button,
|
||||
.archive-world__controls button,
|
||||
.archive-world__dialog button {
|
||||
border: 1px solid #d6b777;
|
||||
border-radius: 6px;
|
||||
background: #fff3d2;
|
||||
color: #2b2116;
|
||||
font: inherit;
|
||||
font-weight: 800;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ash-rpg-root button:disabled {
|
||||
cursor: not-allowed;
|
||||
opacity: 0.42;
|
||||
.archive-world__toolbar button {
|
||||
margin-left: auto;
|
||||
padding: 0.55rem 0.75rem;
|
||||
}
|
||||
|
||||
.rpg-mobile-pad {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
.archive-world__toolbar button + button {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.rpg-mobile-pad [data-rpg-move="up"],
|
||||
.rpg-mobile-pad [data-rpg-move="down"] {
|
||||
.archive-world__toolbar button:hover,
|
||||
.archive-world__toolbar button:focus-visible,
|
||||
.archive-world__controls button:hover,
|
||||
.archive-world__controls button:focus-visible,
|
||||
.archive-world__dialog button:hover,
|
||||
.archive-world__dialog button:focus-visible {
|
||||
border-color: #fff0b5;
|
||||
background: #fffaf0;
|
||||
box-shadow: 0 0 0 3px rgba(255, 236, 173, 0.24);
|
||||
}
|
||||
|
||||
.archive-world__badge {
|
||||
margin: 0;
|
||||
padding: 0.4rem 0.65rem;
|
||||
border: 1px solid #f2d483;
|
||||
border-radius: 999px;
|
||||
background: #604b1f;
|
||||
color: #fff1b6;
|
||||
font-size: 0.78rem;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.archive-world__game {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
aspect-ratio: 3 / 2;
|
||||
max-height: min(72vh, 760px);
|
||||
overflow: hidden;
|
||||
outline: none;
|
||||
background: #17251e;
|
||||
image-rendering: pixelated;
|
||||
}
|
||||
|
||||
.archive-world__game:focus-visible {
|
||||
box-shadow: inset 0 0 0 4px #fff0a9;
|
||||
}
|
||||
|
||||
.archive-world__game canvas {
|
||||
display: block;
|
||||
width: 100% !important;
|
||||
height: 100% !important;
|
||||
image-rendering: pixelated;
|
||||
}
|
||||
|
||||
.archive-world__loading {
|
||||
position: absolute;
|
||||
inset: 45% 0 auto;
|
||||
margin: 0;
|
||||
color: #f5e4b7;
|
||||
text-align: center;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.archive-world[data-game-ready="true"] .archive-world__loading {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.archive-world__controls {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0.8rem;
|
||||
border-top: 2px solid #6e5738;
|
||||
background: #2d3f33;
|
||||
touch-action: none;
|
||||
}
|
||||
|
||||
.archive-world__dpad {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 46px);
|
||||
grid-template-rows: repeat(2, 42px);
|
||||
gap: 0.3rem;
|
||||
}
|
||||
|
||||
.archive-world__dpad [data-world-move="up"] {
|
||||
grid-column: 2;
|
||||
}
|
||||
|
||||
.rpg-mobile-pad [data-rpg-move="left"] {
|
||||
.archive-world__dpad [data-world-move="left"] {
|
||||
grid-column: 1;
|
||||
}
|
||||
|
||||
.rpg-mobile-pad [data-rpg-act] {
|
||||
.archive-world__dpad [data-world-move="down"] {
|
||||
grid-column: 2;
|
||||
}
|
||||
|
||||
.rpg-mobile-pad [data-rpg-move="right"] {
|
||||
.archive-world__dpad [data-world-move="right"] {
|
||||
grid-column: 3;
|
||||
}
|
||||
|
||||
.rpg-stats {
|
||||
display: grid;
|
||||
gap: 0.55rem;
|
||||
margin: 0;
|
||||
.archive-world__controls button {
|
||||
min-height: 42px;
|
||||
padding: 0.5rem 0.8rem;
|
||||
user-select: none;
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
|
||||
.rpg-stats div {
|
||||
.archive-world__interact {
|
||||
min-width: 110px;
|
||||
min-height: 64px !important;
|
||||
}
|
||||
|
||||
.archive-world__status,
|
||||
.archive-world__instructions {
|
||||
margin: 0;
|
||||
padding: 0.65rem 1rem;
|
||||
color: #f5e4b7;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.archive-world__status {
|
||||
border-top: 1px solid rgba(245, 228, 183, 0.16);
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.archive-world__instructions {
|
||||
padding-top: 0;
|
||||
color: #cbbd9d;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.archive-world__dialog {
|
||||
width: min(92vw, 620px);
|
||||
max-height: 86vh;
|
||||
overflow: auto;
|
||||
border: 2px solid var(--world-line);
|
||||
border-radius: 10px;
|
||||
padding: 1.2rem;
|
||||
background:
|
||||
linear-gradient(rgba(255, 255, 255, 0.45), transparent 50%),
|
||||
var(--world-panel);
|
||||
color: #2b2116;
|
||||
box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
|
||||
}
|
||||
|
||||
.archive-world__dialog::backdrop {
|
||||
background: rgba(15, 24, 19, 0.78);
|
||||
backdrop-filter: blur(3px);
|
||||
}
|
||||
|
||||
.archive-world__dialog h2 {
|
||||
margin-top: 0.25rem;
|
||||
font-family: Georgia, "Times New Roman", serif;
|
||||
}
|
||||
|
||||
.archive-world__dialog form,
|
||||
.archive-world__dialog label,
|
||||
.archive-world__dialog fieldset {
|
||||
display: grid;
|
||||
gap: 0.65rem;
|
||||
}
|
||||
|
||||
.archive-world__dialog input[type="text"] {
|
||||
width: 100%;
|
||||
border: 1px solid var(--world-line);
|
||||
border-radius: 6px;
|
||||
padding: 0.7rem;
|
||||
background: var(--world-paper);
|
||||
color: #2b2116;
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
.archive-world__dialog fieldset {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
border: 1px solid #b79b70;
|
||||
}
|
||||
|
||||
.archive-world__dialog fieldset label {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 1rem;
|
||||
padding-bottom: 0.45rem;
|
||||
border-bottom: 1px solid rgba(139, 211, 255, 0.16);
|
||||
gap: 0.4rem;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.rpg-stats dt,
|
||||
.rpg-list h2 {
|
||||
margin: 0;
|
||||
color: var(--ash-muted);
|
||||
font-size: 0.78rem;
|
||||
font-weight: 800;
|
||||
text-transform: uppercase;
|
||||
.archive-world__dialog button {
|
||||
padding: 0.65rem 0.85rem;
|
||||
}
|
||||
|
||||
.rpg-stats dd {
|
||||
.palette-swatch {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border: 2px solid #392e22;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.palette-swatch--brass { background: #f1c46f; }
|
||||
.palette-swatch--moss { background: #91c788; }
|
||||
.palette-swatch--berry { background: #d894ad; }
|
||||
|
||||
.archive-world__error {
|
||||
min-height: 1.4em;
|
||||
margin: 0;
|
||||
color: #8b2635;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.rpg-list ul {
|
||||
.archive-world__preview-links {
|
||||
display: grid;
|
||||
gap: 0.45rem;
|
||||
margin: 0.45rem 0 0;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 0.65rem;
|
||||
margin: 1rem 0;
|
||||
}
|
||||
|
||||
.archive-world__preview-links a {
|
||||
padding: 0.75rem;
|
||||
border: 1px solid var(--world-line);
|
||||
border-radius: 6px;
|
||||
background: var(--world-paper);
|
||||
color: #3a2b18;
|
||||
font-weight: 800;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.archive-world__preview-links a:hover,
|
||||
.archive-world__preview-links a:focus-visible {
|
||||
background: #fff;
|
||||
box-shadow: 0 0 0 3px rgba(82, 118, 87, 0.25);
|
||||
}
|
||||
|
||||
.archive-world__journal {
|
||||
display: grid;
|
||||
gap: 0.5rem;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.rpg-list li {
|
||||
padding: 0.55rem;
|
||||
border: 1px solid rgba(139, 211, 255, 0.16);
|
||||
border-radius: 6px;
|
||||
background: rgba(5, 7, 12, 0.62);
|
||||
color: var(--ash-text);
|
||||
font-size: 0.92rem;
|
||||
}
|
||||
|
||||
.rpg-list li.is-done {
|
||||
border-color: rgba(102, 199, 162, 0.42);
|
||||
background: rgba(45, 91, 77, 0.34);
|
||||
}
|
||||
|
||||
.rpg-list li.is-erased {
|
||||
border-color: rgba(219, 79, 98, 0.32);
|
||||
color: rgba(248, 239, 224, 0.42);
|
||||
background: repeating-linear-gradient(90deg, rgba(219, 79, 98, 0.08), rgba(219, 79, 98, 0.08) 6px, rgba(5, 7, 12, 0.6) 6px, rgba(5, 7, 12, 0.6) 12px);
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.ash-choicebar {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.ash-choicebar button {
|
||||
min-height: 50px;
|
||||
}
|
||||
|
||||
.ash-memory-meter {
|
||||
position: relative;
|
||||
display: grid;
|
||||
gap: 0.45rem;
|
||||
color: var(--ash-muted);
|
||||
font-size: 0.78rem;
|
||||
font-weight: 800;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.ash-memory-meter::after {
|
||||
content: "";
|
||||
display: block;
|
||||
height: 10px;
|
||||
border: 1px solid rgba(139, 211, 255, 0.24);
|
||||
border-radius: 999px;
|
||||
background: #05070c;
|
||||
}
|
||||
|
||||
.ash-memory-meter i {
|
||||
position: absolute;
|
||||
left: 1px;
|
||||
right: auto;
|
||||
bottom: 1px;
|
||||
width: 0;
|
||||
height: 10px;
|
||||
border-radius: 999px;
|
||||
background: linear-gradient(90deg, var(--ash-cold), var(--ash-red));
|
||||
transition: width 220ms ease;
|
||||
}
|
||||
|
||||
.ash-name-form {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
gap: 0.5rem;
|
||||
align-items: end;
|
||||
}
|
||||
|
||||
.ash-name-form label {
|
||||
display: grid;
|
||||
gap: 0.35rem;
|
||||
color: var(--ash-muted);
|
||||
font-size: 0.78rem;
|
||||
font-weight: 800;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.ash-name-form input {
|
||||
width: 100%;
|
||||
border: 1px solid rgba(139, 211, 255, 0.24);
|
||||
border-radius: 6px;
|
||||
.archive-world__journal li {
|
||||
padding: 0.65rem;
|
||||
background: #05070c;
|
||||
color: var(--ash-text);
|
||||
font: inherit;
|
||||
border: 1px dashed #aa977b;
|
||||
border-radius: 5px;
|
||||
color: #756956;
|
||||
}
|
||||
|
||||
.ash-rpg-root.is-lake-awake .rpg-dialogue,
|
||||
.ash-rpg-root.is-lake-awake .rpg-panel {
|
||||
border-color: rgba(219, 79, 98, 0.36);
|
||||
.archive-world__journal li.is-discovered {
|
||||
border-style: solid;
|
||||
border-color: #638568;
|
||||
background: #e5efdc;
|
||||
color: #29452e;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.ash-rpg-root.is-lake-awake .ash-rpg-canvas {
|
||||
box-shadow:
|
||||
0 0 0 4px #05070c,
|
||||
0 0 38px rgba(219, 79, 98, 0.22);
|
||||
.archive-world__directory {
|
||||
margin-top: 1.5rem;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 8px;
|
||||
background: var(--surface);
|
||||
}
|
||||
|
||||
.ash-rpg-root.is-ending .rpg-panel {
|
||||
box-shadow: 0 0 34px rgba(224, 164, 81, 0.16);
|
||||
.archive-world__directory summary {
|
||||
padding: 0.9rem 1rem;
|
||||
font-weight: 900;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.archive-world__directory-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 0.8rem;
|
||||
padding: 0 1rem 1rem;
|
||||
}
|
||||
|
||||
.archive-world__directory-grid section {
|
||||
padding: 0.8rem;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.archive-world__directory-grid h2 {
|
||||
margin: 0 0 0.45rem;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.archive-world__noscript {
|
||||
padding: 0.8rem;
|
||||
border-left: 4px solid var(--world-brass);
|
||||
background: var(--surface);
|
||||
}
|
||||
|
||||
@media (max-width: 760px) {
|
||||
.play-hero,
|
||||
.play-console,
|
||||
.recipe-tool,
|
||||
.sigil-tool,
|
||||
.rpg-shell {
|
||||
.sigil-tool {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
@@ -821,12 +813,48 @@
|
||||
min-height: 160px;
|
||||
}
|
||||
|
||||
.ash-choicebar,
|
||||
.ash-name-form {
|
||||
.archive-world__toolbar > div {
|
||||
min-width: 82px;
|
||||
}
|
||||
|
||||
.archive-world__toolbar button {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.archive-world__game {
|
||||
min-height: 360px;
|
||||
max-height: 62vh;
|
||||
}
|
||||
|
||||
.archive-world__dialog fieldset,
|
||||
.archive-world__preview-links,
|
||||
.archive-world__directory-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.ash-rpg-canvas {
|
||||
min-height: auto;
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.archive-world__game {
|
||||
min-height: 300px;
|
||||
}
|
||||
|
||||
.archive-world__controls {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.archive-world__dpad {
|
||||
grid-template-columns: repeat(3, 42px);
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.archive-world *,
|
||||
.archive-world *::before,
|
||||
.archive-world *::after {
|
||||
scroll-behavior: auto !important;
|
||||
transition-duration: 0.01ms !important;
|
||||
animation-duration: 0.01ms !important;
|
||||
animation-iteration-count: 1 !important;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user