2024-04-09 07:42:15 +00:00
|
|
|
@font-face {
|
|
|
|
src: url("SBB Web Light.ttf");
|
|
|
|
font-family: "SBB Web Light";
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
src: url("SBB Web Roman.ttf");
|
|
|
|
font-family: "SBB Web Roman";
|
|
|
|
}
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--blue: #2D327D;
|
2024-04-10 16:53:16 +00:00
|
|
|
--granite: #686868;
|
|
|
|
--graphite: #B7B7B7;
|
2024-04-09 07:42:15 +00:00
|
|
|
--cloud: #E5E5E5;
|
|
|
|
--white: #FFFFFF;
|
2024-04-10 16:53:16 +00:00
|
|
|
--black: #000000;
|
2024-04-09 07:42:15 +00:00
|
|
|
--red: #EB0000;
|
|
|
|
--red125: #C60018;
|
|
|
|
--red150: #A20013;
|
|
|
|
|
|
|
|
--first-second-angle: to bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: "SBB Web Roman", sans-serif;
|
|
|
|
font-size: 16pt;
|
|
|
|
color: var(--white);
|
|
|
|
}
|
|
|
|
|
|
|
|
.template {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#station {
|
2024-04-10 16:53:16 +00:00
|
|
|
display: flex;
|
|
|
|
gap: 1em;
|
|
|
|
align-items: flex-end;
|
|
|
|
color: var(--black);
|
|
|
|
margin: 1em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#refresh {
|
|
|
|
width: 3.4em;
|
|
|
|
height: 3.4em;
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
background-color: var(--white);
|
|
|
|
border: none;
|
|
|
|
transition: background-color 0.2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
#refresh::after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
inset: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: var(--granite);
|
|
|
|
mask-image: url(icons/arrows-circle-medium.svg);
|
|
|
|
-webkit-mask-image: url(icons/arrows-circle-medium.svg);
|
|
|
|
mask-size: contain;
|
|
|
|
-webkit-mask-size: contain;
|
|
|
|
mask-position: center;
|
|
|
|
-webkit-mask-position: center;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
-webkit-mask-repeat: no-repeat;
|
|
|
|
transition: transform 0.2s;
|
|
|
|
will-change: transform;
|
|
|
|
}
|
|
|
|
|
|
|
|
#refresh:hover {
|
|
|
|
background-color: var(--cloud);
|
|
|
|
}
|
|
|
|
|
|
|
|
#refresh:hover::after {
|
|
|
|
transform: rotate(90deg);
|
2024-04-09 07:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#grid {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
grid-template-rows: auto 1fr auto;
|
|
|
|
grid-template-areas:
|
|
|
|
"type-time stops"
|
|
|
|
"destination stops"
|
|
|
|
"composition composition";
|
|
|
|
gap: 0.5em;
|
|
|
|
background-color: var(--blue);
|
|
|
|
}
|
|
|
|
|
|
|
|
#type-time {
|
|
|
|
grid-area: type-time;
|
|
|
|
display: flex;
|
|
|
|
gap: 0.5em;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#train-type {
|
|
|
|
height: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#departure {
|
|
|
|
font-size: 150%;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
#destination {
|
|
|
|
grid-area: destination;
|
|
|
|
font-size: 150%;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 0 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#stops {
|
|
|
|
grid-area: stops;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#composition {
|
|
|
|
grid-area: composition;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
--n-waggons: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sectors {
|
|
|
|
display: flex;
|
|
|
|
padding: 0 1em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sector {
|
|
|
|
box-shadow: -1px 0 0 var(--white);
|
|
|
|
text-align: center;
|
|
|
|
--weight: 1;
|
|
|
|
width: calc(100% / var(--n-waggons) * var(--weight));
|
|
|
|
}
|
|
|
|
|
|
|
|
.sector:last-child {
|
|
|
|
border-right: solid var(--white) 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#carriages {
|
|
|
|
background-color: var(--cloud);
|
|
|
|
display: grid;
|
|
|
|
width: 100%;
|
|
|
|
min-height: 2em;
|
|
|
|
gap: 0.2em;
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
--offset: 0;
|
|
|
|
grid-template-columns: repeat(var(--n-waggons), 1fr);
|
|
|
|
}
|
|
|
|
|
|
|
|
.waggon {
|
|
|
|
--bg: var(--blue);
|
|
|
|
--fg: var(--white);
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.waggon.class-first {
|
|
|
|
--bg: var(--white);
|
|
|
|
--fg: var(--blue);
|
|
|
|
}
|
|
|
|
.waggon:first-child {
|
|
|
|
grid-column: calc(var(--offset) + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.waggon .number {
|
2024-04-10 16:54:19 +00:00
|
|
|
font-size: 75%;
|
|
|
|
text-align: center;
|
|
|
|
color: var(--black);
|
2024-04-09 07:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.waggon .outline {
|
|
|
|
border: solid var(--blue) 2px;
|
|
|
|
background-color: var(--bg);
|
|
|
|
color: var(--fg);
|
|
|
|
width: 100%;
|
|
|
|
height: 1.8em;
|
|
|
|
display: grid;
|
|
|
|
place-items: center;
|
|
|
|
}
|
|
|
|
.waggon.class-first-second .outline {
|
|
|
|
background: linear-gradient(var(--first-second-angle), var(--white) 50%, var(--blue) 50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.waggon.form-start_links .outline {
|
|
|
|
border-top-left-radius: 0.5em;
|
|
|
|
border-bottom-left-radius: 0.25em;
|
|
|
|
}
|
|
|
|
.waggon.form-mitte .outline {
|
|
|
|
|
|
|
|
}
|
|
|
|
.waggon.form-end_recht .outline {
|
|
|
|
border-top-right-radius: 0.5em;
|
|
|
|
border-bottom-right-radius: 0.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.waggon .class {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.waggon.class-first-second .class {
|
|
|
|
background: linear-gradient(var(--first-second-angle), var(--blue) 50%, var(--white) 50%);
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.waggon .services {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#carriages[data-direction="left"] .waggon:first-child::before {
|
|
|
|
content: "";
|
2024-04-10 16:54:19 +00:00
|
|
|
width: 1.8em;
|
2024-04-09 07:42:15 +00:00
|
|
|
height: 1.8em;
|
|
|
|
display: grid;
|
|
|
|
place-items: center;
|
|
|
|
position: absolute;
|
2024-04-10 16:54:19 +00:00
|
|
|
bottom: 0;
|
2024-04-09 07:42:15 +00:00
|
|
|
right: 100%;
|
|
|
|
margin-right: 0.2em;
|
|
|
|
background-color: var(--blue);
|
|
|
|
mask-image: url("./icons/double-chevron-small-left-small.svg");
|
|
|
|
-webkit-mask-image: url("./icons/double-chevron-small-left-small.svg");
|
|
|
|
mask-size: contain;
|
|
|
|
-webkit-mask-size: contain;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
-webkit-mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
-webkit-mask-position: center;
|
|
|
|
}
|
|
|
|
#carriages[data-direction="right"] .waggon:last-child::after {
|
|
|
|
content: "";
|
2024-04-10 16:54:19 +00:00
|
|
|
width: 1.8em;
|
2024-04-09 07:42:15 +00:00
|
|
|
height: 1.8em;
|
|
|
|
display: grid;
|
|
|
|
place-items: center;
|
|
|
|
position: absolute;
|
2024-04-10 16:54:19 +00:00
|
|
|
bottom: 0;
|
2024-04-09 07:42:15 +00:00
|
|
|
left: 100%;
|
|
|
|
background-color: var(--blue);
|
|
|
|
mask-image: url("./icons/double-chevron-small-right-small.svg");
|
|
|
|
-webkit-mask-image: url("./icons/double-chevron-small-right-small.svg");
|
|
|
|
mask-size: contain;
|
|
|
|
-webkit-mask-size: contain;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
-webkit-mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
-webkit-mask-position: center;
|
2024-04-10 16:53:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#search {
|
|
|
|
display: flex;
|
|
|
|
gap: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search-input {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 80%;
|
|
|
|
padding: 6px 8px 6px 8px;
|
|
|
|
border: solid var(--graphite) 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search-input:focus-visible {
|
|
|
|
outline: none;
|
|
|
|
border-color: var(--granite);
|
|
|
|
}
|
|
|
|
|
|
|
|
#search-btn {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 80%;
|
|
|
|
padding: 11px 40px 11px 40px;
|
|
|
|
background-color: var(--red);
|
|
|
|
color: var(--white);
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search-btn:hover {
|
|
|
|
background-color: var(--red125);
|
|
|
|
}
|
|
|
|
|
|
|
|
#stations {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#stations .station {
|
|
|
|
padding: 0.5em 2em;
|
|
|
|
border-bottom: solid var(--graphite) 1px;
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--black);
|
|
|
|
}
|
|
|
|
|
|
|
|
#stations .station:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#stations .station:hover {
|
|
|
|
background-color: var(--cloud);
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-wrapper {
|
|
|
|
position: relative;
|
|
|
|
width: 10em;
|
|
|
|
}
|
|
|
|
.select-wrapper select {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
background-color: var(--white);
|
|
|
|
border: solid var(--graphite) 1px;
|
|
|
|
border-radius: 0;
|
|
|
|
padding: 11px 40px 11px 40px;
|
|
|
|
color: var(--granite);
|
|
|
|
text-align: left;
|
|
|
|
appearance: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
width: 100%;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-wrapper .select-arrow {
|
|
|
|
width: 2em;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
background-color: var(--granite);
|
|
|
|
mask-image: url(icons/chevron-small-down-medium.svg);
|
|
|
|
-webkit-mask-image: url(icons/chevron-small-down-medium.svg);
|
|
|
|
mask-size: contain;
|
|
|
|
-webkit-mask-size: contain;
|
|
|
|
mask-position: center;
|
|
|
|
-webkit-mask-position: center;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
-webkit-mask-repeat: no-repeat;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-wrapper select:focus-visible {
|
|
|
|
outline: none;
|
|
|
|
border-color: var(--granite);
|
|
|
|
}
|
|
|
|
|
|
|
|
.field {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.field label {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 80%;
|
|
|
|
color: var(--granite);
|
|
|
|
padding-left: 0.5em;
|
2024-04-09 07:42:15 +00:00
|
|
|
}
|