Merge branch 'master' into worktree-slice-0.3-first-combat

This commit is contained in:
Bastian Wagner
2026-08-19 21:53:29 +02:00
17 changed files with 4031 additions and 10 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -70,7 +70,6 @@
border-radius: var(--ar-radius-sm);
color: var(--ar-text);
background: linear-gradient(180deg, #263b4b, #17232d);
cursor: pointer;
font-family: Georgia, 'Times New Roman', serif;
font-size: 1rem;
letter-spacing: 0.02em;

View File

@@ -64,7 +64,6 @@
border-radius: var(--ar-radius-sm);
color: var(--ar-text);
background: linear-gradient(180deg, #263b4b, #17232d);
cursor: pointer;
font-family: Georgia, 'Times New Roman', serif;
font-size: 1rem;
}
@@ -78,7 +77,6 @@
.hunt-page__ready button:disabled,
.hunt-page__actions button:disabled {
cursor: not-allowed;
opacity: 0.52;
}
@@ -117,7 +115,6 @@
border-radius: var(--ar-radius-sm);
color: var(--ar-text);
background: #1a2023;
cursor: pointer;
}
@media (width < 720px) {

View File

@@ -11,14 +11,12 @@
border: 0;
color: var(--ar-text);
background: transparent;
cursor: pointer;
font: inherit;
text-align: center;
text-shadow: 0 0.15rem 0.55rem rgb(0 0 0 / 0.95);
}
.location-node:disabled {
cursor: default;
opacity: 1;
}

View File

@@ -61,7 +61,6 @@
border-radius: var(--ar-radius-sm);
color: var(--ar-text);
background: linear-gradient(180deg, #263b4b, #17232d);
cursor: pointer;
font-family: Georgia, 'Times New Roman', serif;
font-size: 1rem;
}
@@ -75,7 +74,6 @@
border-color: var(--ar-border);
color: var(--ar-text-muted);
background: #1a1c1d;
cursor: not-allowed;
}
.travel-panel__instruction {

View File

@@ -139,7 +139,6 @@
border-radius: var(--ar-radius-sm);
color: var(--ar-text);
background: #1a2023;
cursor: pointer;
}
@keyframes world-atmosphere-drift {

View File

@@ -51,7 +51,6 @@
}
.side-navigation__item:disabled {
cursor: not-allowed;
opacity: 0.52;
}

View File

@@ -33,6 +33,7 @@ html {
min-block-size: 100%;
color-scheme: dark;
background: var(--ar-bg);
cursor: url('/assets/cursors/cursor.png') 2 2, auto;
}
body {
@@ -61,6 +62,23 @@ a:focus-visible {
outline-offset: -2px;
}
button:not(:disabled),
a,
[role='button'] {
cursor: url('/assets/cursors/hover.png') 2 2, pointer;
}
button:not(:disabled):active,
a:active,
[role='button']:active {
cursor: url('/assets/cursors/click.png') 2 2, pointer;
}
button:disabled,
[aria-disabled='true'] {
cursor: url('/assets/cursors/disabled.png') 2 2, not-allowed;
}
img {
max-inline-size: 100%;
}