Initial Watermaps import

This commit is contained in:
BuTzZ
2026-07-24 11:29:24 +02:00
commit 57f7b4dedb
129 changed files with 43136 additions and 0 deletions
+167
View File
@@ -0,0 +1,167 @@
.voyage-plan {
display: grid;
gap: 9px;
border-top: 1px solid rgba(18, 46, 55, 0.12);
padding-top: 10px;
color: #10242b;
}
.voyage-plan-header {
display: flex;
align-items: end;
justify-content: space-between;
gap: 10px;
}
.voyage-plan-header h2 {
margin: 2px 0 0;
font-size: 15px;
}
.voyage-plan-summary,
.voyage-plan-requirements,
.voyage-plan-leg-route,
.voyage-plan-waypoints,
.voyage-plan-unconfirmed-stop,
.voyage-plan-harbour-contact {
margin: 0;
}
.voyage-plan-summary {
color: #314b54;
font-size: 11px;
font-weight: 850;
white-space: nowrap;
}
.voyage-plan-requirements {
color: #4c6269;
font-size: 11px;
line-height: 1.4;
}
.voyage-plan-warnings,
.voyage-plan-legs,
.voyage-plan-amenities {
margin: 0;
padding: 0;
list-style: none;
}
.voyage-plan-warnings {
display: grid;
gap: 5px;
}
.voyage-plan-warnings li {
border-radius: 8px;
padding: 7px 9px;
background: #e8f0f1;
color: #314b54;
font-size: 11px;
font-weight: 700;
line-height: 1.4;
}
.voyage-plan-warnings li[data-severity="caution"] {
background: #fff1cc;
color: #805900;
}
.voyage-plan-warnings li[data-severity="critical"] {
background: #ffe1dc;
color: #9d2c22;
}
.voyage-plan-legs {
display: grid;
gap: 7px;
counter-reset: voyage-day;
}
.voyage-plan-leg {
border: 1px solid rgba(18, 46, 55, 0.12);
border-radius: 9px;
padding: 9px;
background: #f8faf9;
}
.voyage-plan-leg article,
.voyage-plan-harbour {
display: grid;
gap: 6px;
}
.voyage-plan-leg article > header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
font-size: 12px;
}
.voyage-plan-leg article > header span,
.voyage-plan-waypoints {
color: #60737a;
font-size: 10px;
font-weight: 750;
}
.voyage-plan-leg-route {
color: #10242b;
font-size: 12px;
font-weight: 850;
}
.voyage-plan-amenities {
display: flex;
flex-wrap: wrap;
gap: 4px;
}
.voyage-plan-amenities li {
min-height: 24px;
border-radius: 999px;
padding: 4px 7px;
background: #eef3f0;
color: #60737a;
font-size: 9px;
font-weight: 800;
}
.voyage-plan-amenities li[data-availability="available"] {
background: #dceee6;
color: #196f5c;
}
.voyage-plan-amenities li[data-availability="unavailable"] {
background: #f0e8e4;
color: #74483d;
}
.voyage-plan-unconfirmed-stop {
border-radius: 7px;
padding: 6px 8px;
background: #fff1cc;
color: #805900;
font-size: 10px;
font-weight: 850;
}
.voyage-plan-harbour-contact {
font-size: 11px;
font-weight: 800;
}
.voyage-plan-harbour-contact a {
color: #075f78;
text-underline-offset: 2px;
}
@media (max-width: 460px) {
.voyage-plan-header {
align-items: start;
flex-direction: column;
gap: 4px;
}
}