Compare commits

..

2 Commits

Author SHA1 Message Date
b649af1925 Adjust button styling to improve appearance of text 2026-03-31 20:01:20 +01:00
aa1a989139 Remove fade-out 2026-03-31 00:11:09 +01:00
3 changed files with 5 additions and 3 deletions

View File

@@ -59,10 +59,10 @@
height: 36px; height: 36px;
border-radius: 20px; border-radius: 20px;
border: none; border: none;
box-shadow: var(--shadow-std); box-shadow: var(--shadow-small);
font-family: 'URW Gothic', sans-serif; font-family: 'URW Gothic', sans-serif;
font-size: 0.93rem; font-size: 0.93rem;
font-weight: 600; font-weight: 400;
letter-spacing: 0.05ch; letter-spacing: 0.05ch;
transition: transition:
all 0.1s ease, all 0.1s ease,
@@ -72,6 +72,7 @@
.accent { .accent {
background-color: var(--color-accent); background-color: var(--color-accent);
color: var(--color-title); color: var(--color-title);
font-weight: 600;
} }
.brand { .brand {

View File

@@ -22,7 +22,7 @@
<div <div
class="btn-container" class="btn-container"
animate:flip={{ duration: flipDuration }} animate:flip={{ duration: flipDuration }}
transition:fade|global={{ duration: 300 }} in:fade|global={{ duration: 200 }}
> >
<Button href={`/board?loc=${station.c}`} <Button href={`/board?loc=${station.c}`}
><span class="stn-name">{station.n}</span></Button ><span class="stn-name">{station.n}</span></Button

View File

@@ -55,6 +55,7 @@
/* Shadows */ /* Shadows */
--color-shadow: hsla(210, 20%, 5%, 0.35); --color-shadow: hsla(210, 20%, 5%, 0.35);
--shadow-std: 0 4px 12px var(--color-shadow); --shadow-std: 0 4px 12px var(--color-shadow);
--shadow-small: 0 4px 6px var(--color-shadow);
--shadow-up: 0 -4px 12px var(--color-shadow); --shadow-up: 0 -4px 12px var(--color-shadow);
--shadow-right: 4px 0 12px var(--color-shadow); --shadow-right: 4px 0 12px var(--color-shadow);
} }