Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 39511dd428 | |||
| cfcf651e41 | |||
| cfa1d44dbc | |||
| ca5e78e2b1 |
@@ -6,4 +6,4 @@ bun.lock
|
|||||||
bun.lockb
|
bun.lockb
|
||||||
|
|
||||||
# Miscellaneous
|
# Miscellaneous
|
||||||
/static/
|
#/static/
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 10 KiB |
@@ -5,12 +5,6 @@
|
|||||||
|
|
||||||
let searchTerm = '';
|
let searchTerm = '';
|
||||||
|
|
||||||
const formatDate = (dateVal: string | null) => {
|
|
||||||
if (!dateVal) return '---';
|
|
||||||
const d = new Date(dateVal);
|
|
||||||
return d.toLocaleDateString('en-GB', { day: '2-digit', month: 'short', year: '2-digit' });
|
|
||||||
};
|
|
||||||
|
|
||||||
$: filteredMaps = data.maps.filter(
|
$: filteredMaps = data.maps.filter(
|
||||||
(m) =>
|
(m) =>
|
||||||
m.routeId.toString().includes(searchTerm) ||
|
m.routeId.toString().includes(searchTerm) ||
|
||||||
@@ -18,6 +12,12 @@
|
|||||||
m.routeEnd.toLowerCase().includes(searchTerm.toLowerCase())
|
m.routeEnd.toLowerCase().includes(searchTerm.toLowerCase())
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const vibrate = (patern: number | number[] = 10) => {
|
||||||
|
if (typeof window !== 'undefined' && window.navigator.vibrate) {
|
||||||
|
window.navigator.vibrate(pattern);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const isVerifiedRecently = (dateVal: string | null) => {
|
const isVerifiedRecently = (dateVal: string | null) => {
|
||||||
if (!dateVal) return 'draft';
|
if (!dateVal) return 'draft';
|
||||||
|
|
||||||
@@ -26,6 +26,21 @@
|
|||||||
|
|
||||||
return checkedDate > oneYearAgo ? 'verified' : 'stale';
|
return checkedDate > oneYearAgo ? 'verified' : 'stale';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const formatDate = (dateVal: string | null) => {
|
||||||
|
if (!dateVal) return 'N/A';
|
||||||
|
|
||||||
|
const date = new Date(dateVal);
|
||||||
|
|
||||||
|
// Check for invalid dates to avoid "NaN/NaN/NaN"
|
||||||
|
if (isNaN(date.getTime())) return 'Invalid Date';
|
||||||
|
|
||||||
|
const d = date.getDate().toString().padStart(2, '0');
|
||||||
|
const m = (date.getMonth() + 1).toString().padStart(2, '0');
|
||||||
|
const y = date.getFullYear().toString().slice(-2);
|
||||||
|
|
||||||
|
return `${d}/${m}/${y}`;
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="page-wrapper">
|
<div class="page-wrapper">
|
||||||
@@ -51,26 +66,9 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
<div class="list-container">
|
<div class="list-container">
|
||||||
<a
|
<a href="https://owlboard.info" class="button-link">Go to OwlBoard Live Departures & PIS</a>
|
||||||
href="https://owlboard.info"
|
|
||||||
class="card external-card"
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
>
|
|
||||||
<div class="card-top">
|
|
||||||
<span class="route-id system-tag">OWL</span>
|
|
||||||
<span class="status-badge external">External Tool</span>
|
|
||||||
</div>
|
|
||||||
<div class="card-body">
|
|
||||||
<div class="location">OwlBoard</div>
|
|
||||||
<p class="description">Live Departure Boards and PIS Codes</p>
|
|
||||||
</div>
|
|
||||||
<div class="card-footer">
|
|
||||||
<span>Visit owlboard.info ↗</span>
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
{#each filteredMaps as map (map.routeId)}
|
{#each filteredMaps as map (map.routeId)}
|
||||||
<a href="{base}/map/{map.routeId.toString().padStart(4, '0')}" class="card">
|
<a href="{base}/map/{map.routeId.toString().padStart(4, '0')}" class="card" on:click={() => vibrate(10)}>
|
||||||
<div class="card-top">
|
<div class="card-top">
|
||||||
<span class="route-id">{map.routeId.toString().padStart(4, '0')}</span>
|
<span class="route-id">{map.routeId.toString().padStart(4, '0')}</span>
|
||||||
<span class="status-badge {isVerifiedRecently(map.checked)}">
|
<span class="status-badge {isVerifiedRecently(map.checked)}">
|
||||||
@@ -91,9 +89,9 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card-footer">
|
<div class="card-footer">
|
||||||
<span>Created: {formatDate(map.created)}</span>
|
<span>Created on {formatDate(map.created)}</span>
|
||||||
{#if map.checked}
|
{#if map.checked}
|
||||||
<span>• Checked: {formatDate(map.checked)}</span>
|
<span>• Checked & Updated on {formatDate(map.checked)}</span>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
@@ -107,7 +105,8 @@
|
|||||||
/* Mobile-First Base Styles */
|
/* Mobile-First Base Styles */
|
||||||
:global(body) {
|
:global(body) {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
background-color: #f8fafc;
|
background-color: #404c55;
|
||||||
|
background-image: radial-gradient(#2b343c, #404c55);
|
||||||
color: #0f172a;
|
color: #0f172a;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||||
}
|
}
|
||||||
@@ -120,18 +119,27 @@
|
|||||||
|
|
||||||
.main-header {
|
.main-header {
|
||||||
margin-bottom: 1.5rem;
|
margin-bottom: 1.5rem;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
width: 100%;
|
||||||
|
background: #3c6f79;
|
||||||
|
color: #ebebeb;
|
||||||
|
z-index: 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
.brand-container {
|
.brand-container {
|
||||||
|
padding: 15px;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
box-sizing: border-box;
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
margin-bottom: 1.5rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-logo {
|
.main-logo {
|
||||||
/* Adjust height to fit your logo's aspect ratio */
|
height: 52px;
|
||||||
height: 48px;
|
|
||||||
width: auto;
|
width: auto;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
@@ -145,69 +153,92 @@
|
|||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sub-brand {
|
.search-container {
|
||||||
font-size: 0.65rem;
|
margin-left: auto;
|
||||||
font-weight: 800;
|
|
||||||
color: #94a3b8;
|
|
||||||
text-transform: uppercase;
|
|
||||||
letter-spacing: 0.1em;
|
|
||||||
margin: 0.2rem 0 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Desktop layout adjustment */
|
|
||||||
@media (min-width: 640px) {
|
|
||||||
.main-header {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
margin-bottom: 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.brand-container {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main-logo {
|
|
||||||
height: 56px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-input {
|
.search-input {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
margin-left: auto;
|
||||||
|
height: 50px;
|
||||||
padding: 0.8rem 1rem;
|
padding: 0.8rem 1rem;
|
||||||
border: 2px solid #e2e8f0;
|
text-align: center;
|
||||||
border-radius: 12px;
|
text-transform: uppercase;
|
||||||
|
border-radius: 30px;
|
||||||
|
border: none;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
transition: all 0.3s ease;
|
||||||
box-sizing: border-box; /* Ensures padding doesn't break width */
|
box-sizing: border-box; /* Ensures padding doesn't break width */
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-input:focus {
|
.search-input:hover {
|
||||||
border-color: #3b82f6;
|
box-shadow: rgba(0, 0, 0, 0.46);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Card Layout (Mobile) */
|
|
||||||
.list-container {
|
.list-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
|
padding: 90px 1rem 1rem 1rem;
|
||||||
|
isolation: isolate;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 600px) {
|
||||||
|
.list-container {
|
||||||
|
padding-top: 90px;
|
||||||
|
gap: 0.75rem;
|
||||||
|
padding-left: 0.5rem;
|
||||||
|
padding-right: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card {
|
||||||
|
padding: 10px 12px;
|
||||||
|
margin: 0;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.location {
|
||||||
|
font-size: 1rem;
|
||||||
|
margin-bottom: 0.1rem;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.path-arrow {
|
||||||
|
color: #fff;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
margin: 0.1rem 0;
|
||||||
|
line-height: 0.75;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-footer {
|
||||||
|
font-size: 0.6rem;
|
||||||
|
line-height: 0.5;
|
||||||
|
padding-bottom: 2px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
display: block;
|
display: block;
|
||||||
background: white;
|
background: #3c6f79;
|
||||||
padding: 1.25rem;
|
padding: 1.25rem;
|
||||||
border-radius: 16px;
|
border-radius: 35px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: inherit;
|
color: #4fd1d1;
|
||||||
border: 1px solid #e2e8f0;
|
text-shadow: 2px 1px 10px rgba(0, 0, 0, 0.29);
|
||||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.482);
|
||||||
transition: transform 0.1s ease;
|
transition: transform 0.1s ease;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.card:hover {
|
||||||
|
transform: scale(1.01);
|
||||||
|
z-index: 5;
|
||||||
|
}
|
||||||
|
|
||||||
.card:active {
|
.card:active {
|
||||||
transform: scale(0.98); /* Tactile feedback for mobile */
|
transform: scale(0.99); /* Tactile feedback for mobile */
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-top {
|
.card-top {
|
||||||
@@ -220,8 +251,9 @@
|
|||||||
.route-id {
|
.route-id {
|
||||||
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
color: #3b82f6;
|
color: #fff;
|
||||||
background: #eff6ff;
|
background: #2d2d2d;
|
||||||
|
text-shadow: none;
|
||||||
padding: 0.2rem 0.5rem;
|
padding: 0.2rem 0.5rem;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
}
|
}
|
||||||
@@ -237,24 +269,24 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.path-arrow {
|
.path-arrow {
|
||||||
color: #acc7e8;
|
color: #fff;
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
margin: 0.2rem 0;
|
margin: 0.2rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-footer {
|
.card-footer {
|
||||||
font-size: 0.7rem;
|
font-size: 0.7rem;
|
||||||
color: #64748b;
|
color: #e2ebeb;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
border-top: 1px solid #f1f5f9;
|
padding-top: 0;
|
||||||
padding-top: 0.75rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-badge {
|
.status-badge {
|
||||||
font-size: 0.65rem;
|
font-size: 0.65rem;
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
|
text-shadow: none;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
padding: 0.3rem 0.6rem;
|
padding: 0.3rem 0.6rem;
|
||||||
border-radius: 999px;
|
border-radius: 999px;
|
||||||
@@ -277,56 +309,22 @@
|
|||||||
color: #475569;
|
color: #475569;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 640px) {
|
.button-link {
|
||||||
.page-wrapper {
|
text-decoration: none;
|
||||||
padding: 3rem 1.5rem;
|
border: none;
|
||||||
|
background: #3c6f79;
|
||||||
|
max-width: 360px;
|
||||||
|
padding: 8px 25px;
|
||||||
|
margin: auto;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 25px;
|
||||||
|
width: auto;
|
||||||
|
color: #e2ebeb;
|
||||||
|
transition: 0.3s all ease;
|
||||||
|
font-weight: 620;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-header {
|
.button-link:hover {
|
||||||
display: flex;
|
background: #2b2b2b;
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.search-input {
|
|
||||||
width: 300px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.path-arrow {
|
|
||||||
display: inline-block;
|
|
||||||
margin: 0 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-body {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.external-card {
|
|
||||||
border-left: 4px solid #6366f1;
|
|
||||||
background: linear-gradient(to right, #ffffff, #f5f3ff);
|
|
||||||
}
|
|
||||||
|
|
||||||
.system-tag {
|
|
||||||
background: #eef2ff !important;
|
|
||||||
color: #4338ca !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.status-badge.external {
|
|
||||||
background: #6366f1;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.description {
|
|
||||||
margin: 0.25rem 0 0 0;
|
|
||||||
font-size: 0.9rem;
|
|
||||||
color: #64748b;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
.external-card:hover {
|
|
||||||
border-color: #4338ca;
|
|
||||||
background: #f5f3ff;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -145,13 +145,19 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.top-nav {
|
.top-nav {
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: 0.5rem 1rem;
|
padding: 0.5rem 1rem;
|
||||||
background: #0f172a;
|
background: #3c6f79;
|
||||||
color: white;
|
color: #e1ebeb;
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
|
z-index: 10000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-cluster {
|
.nav-cluster {
|
||||||
@@ -167,19 +173,18 @@
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
width: 36px;
|
width: 36px;
|
||||||
height: 36px;
|
height: 36px;
|
||||||
background: #1e293b;
|
background: #404c55;
|
||||||
border: 1px solid #334155;
|
border: 1px solid #334155;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
color: #94a3b8;
|
color: #e1ebeb;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
flex-shrink: 0; /* Keeps button from squishing on mobile */
|
flex-shrink: 0;
|
||||||
|
transition: all 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.home-link:hover {
|
.home-link:hover {
|
||||||
background: #334155;
|
background: #2d2d2d;
|
||||||
color: white;
|
|
||||||
border-color: #475569;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.route-stack {
|
.route-stack {
|
||||||
@@ -193,13 +198,14 @@
|
|||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
color: #cce9e9;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
.secondary-station {
|
.secondary-station {
|
||||||
font-size: 0.7rem;
|
font-size: 0.7rem;
|
||||||
color: #94a3b8;
|
color: #cce9e9;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
@@ -209,30 +215,10 @@
|
|||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-btn {
|
|
||||||
background: #1e293b;
|
|
||||||
border: 1px solid #334155;
|
|
||||||
color: white;
|
|
||||||
padding: 0.4rem 0.6rem;
|
|
||||||
border-radius: 6px;
|
|
||||||
font-size: 0.75rem;
|
|
||||||
font-weight: bold;
|
|
||||||
cursor: pointer;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
.map-spine {
|
.map-spine {
|
||||||
padding-top: 72px;
|
padding-top: 72px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.secondary-station {
|
|
||||||
font-size: 0.85rem;
|
|
||||||
font-weight: 500;
|
|
||||||
color: #64748b;
|
|
||||||
letter-spacing: 0.025em;
|
|
||||||
margin-top: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
.primary-station {
|
.primary-station {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
@@ -268,6 +254,7 @@
|
|||||||
inset: 0;
|
inset: 0;
|
||||||
background: rgba(0, 0, 0, 0.4);
|
background: rgba(0, 0, 0, 0.4);
|
||||||
z-index: 150;
|
z-index: 150;
|
||||||
|
transition: all 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.filter-drawer {
|
.filter-drawer {
|
||||||
@@ -275,7 +262,7 @@
|
|||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
background: white;
|
background: #3c6f79;
|
||||||
z-index: 200;
|
z-index: 200;
|
||||||
border-radius: 20px 20px 0 0;
|
border-radius: 20px 20px 0 0;
|
||||||
box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.15);
|
box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.15);
|
||||||
@@ -288,17 +275,17 @@
|
|||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 1.25rem 1.5rem 0.75rem;
|
padding: 1.25rem 1.5rem 0.75rem;
|
||||||
border-bottom: 1px solid #f1f5f9;
|
border-bottom: 1px solid #e1ebeb;
|
||||||
}
|
}
|
||||||
|
|
||||||
.drawer-header h3 {
|
.drawer-header h3 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
color: #1e293b;
|
color: #e1ebeb;
|
||||||
}
|
}
|
||||||
|
|
||||||
.close-icon {
|
.close-icon {
|
||||||
background: #f1f5f9;
|
background: #404c55;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
width: 32px;
|
width: 32px;
|
||||||
@@ -307,7 +294,12 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: #64748b;
|
color: #e1ebeb;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.close-icon:hover {
|
||||||
|
background: #2d2d2d;
|
||||||
}
|
}
|
||||||
|
|
||||||
.drawer-content {
|
.drawer-content {
|
||||||
@@ -324,14 +316,14 @@
|
|||||||
padding: 0.5rem 1rem;
|
padding: 0.5rem 1rem;
|
||||||
border-radius: 999px;
|
border-radius: 999px;
|
||||||
border: 1px solid #e2e8f0;
|
border: 1px solid #e2e8f0;
|
||||||
background: #f8fafc;
|
background: #ff6060;
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.2s;
|
transition: all 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.filter-chip.active {
|
.filter-chip.active {
|
||||||
background: #1e293b;
|
background: #00725b;
|
||||||
color: white;
|
color: white;
|
||||||
border-color: #1e293b;
|
border-color: #1e293b;
|
||||||
}
|
}
|
||||||
@@ -346,23 +338,22 @@
|
|||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 0.4rem;
|
gap: 0.4rem;
|
||||||
|
border: none;
|
||||||
padding: 0.5rem 0.8rem;
|
padding: 0.5rem 0.8rem;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
border: 1px solid #e2e8f0;
|
background: #404c55;
|
||||||
background: #f8fafc;
|
color: #e1ebeb;
|
||||||
color: #475569;
|
|
||||||
font-size: 0.75rem;
|
font-size: 0.75rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
letter-spacing: 0.02em;
|
letter-spacing: 0.02em;
|
||||||
|
transition: all 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-btn:hover {
|
.icon-btn:hover {
|
||||||
background: #f1f5f9;
|
background: #2d2d2d;
|
||||||
border-color: #cbd5e1;
|
|
||||||
color: #1e293b;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-btn:active {
|
.icon-btn:active {
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -11,10 +11,10 @@ elecStart:
|
|||||||
elecEnd:
|
elecEnd:
|
||||||
elec: none
|
elec: none
|
||||||
routeDetail:
|
routeDetail:
|
||||||
- type: continues
|
- type: continues
|
||||||
routeName: Paddington - Reading West Jn
|
routeName: Paddington - Reading West Jn
|
||||||
routeId: "0001"
|
routeId: '0001'
|
||||||
- type: crossovers
|
- type: crossovers
|
||||||
name: Scours Lane Junction
|
name: Scours Lane Junction
|
||||||
description: Line diverges
|
description: Line diverges
|
||||||
miles: 38
|
miles: 38
|
||||||
|
|||||||
Reference in New Issue
Block a user