2024-12-06 18:42:52 +00:00
|
|
|
* {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2024-12-07 10:31:32 +00:00
|
|
|
body {
|
|
|
|
background-color: black;
|
2024-12-10 12:27:34 +00:00
|
|
|
font-size: 110px;
|
|
|
|
font-family: arial, sans;
|
2024-12-07 10:31:32 +00:00
|
|
|
}
|
|
|
|
|
2024-12-10 12:27:34 +00:00
|
|
|
#banner {
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: 200px;
|
|
|
|
color: white;
|
2024-12-07 10:31:32 +00:00
|
|
|
margin: 16px;
|
|
|
|
}
|
|
|
|
|
2024-12-10 12:27:34 +00:00
|
|
|
#banner img {
|
|
|
|
height: 140px;
|
|
|
|
margin: 30px;
|
2024-12-07 10:31:32 +00:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2024-12-10 12:27:34 +00:00
|
|
|
#banner .text {
|
|
|
|
padding-top: 36px;
|
|
|
|
margin-left: 20px;
|
|
|
|
float: left;
|
2024-12-07 10:31:32 +00:00
|
|
|
}
|
|
|
|
|
2024-12-10 12:27:34 +00:00
|
|
|
#banner .time {
|
|
|
|
padding-top: 36px;
|
|
|
|
margin-right: 20px;
|
|
|
|
float: right;
|
2024-12-07 10:31:32 +00:00
|
|
|
}
|
|
|
|
|
2024-12-10 12:27:34 +00:00
|
|
|
.route {
|
|
|
|
margin: 16px;
|
2024-12-06 18:42:52 +00:00
|
|
|
|
2024-12-06 19:21:24 +00:00
|
|
|
}
|
|
|
|
|
2024-12-10 12:27:34 +00:00
|
|
|
.route img {
|
|
|
|
height: 200px;
|
2024-12-06 19:21:24 +00:00
|
|
|
float: left;
|
2024-12-06 18:42:52 +00:00
|
|
|
}
|
|
|
|
|
2024-12-10 12:27:34 +00:00
|
|
|
.destination {
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: 200px;
|
|
|
|
background-color: white;
|
|
|
|
padding-top: 28px;
|
|
|
|
padding-left: 220px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: clip;
|
2024-12-06 18:42:52 +00:00
|
|
|
}
|
|
|
|
|
2024-12-10 12:27:34 +00:00
|
|
|
.destination:first-child {
|
|
|
|
border-radius: 100px 100px 0 0;
|
2024-12-06 18:42:52 +00:00
|
|
|
}
|
|
|
|
|
2024-12-10 12:27:34 +00:00
|
|
|
.destination:last-child {
|
|
|
|
border-radius: 0 0 100px 100px;
|
2024-12-06 18:42:52 +00:00
|
|
|
}
|
|
|
|
|
2024-12-10 12:27:34 +00:00
|
|
|
.destination:only-child {
|
|
|
|
border-radius: 100px 100px 100px 100px;
|
2024-12-06 18:42:52 +00:00
|
|
|
}
|
|
|
|
|
2024-12-10 12:27:34 +00:00
|
|
|
.destination .text {
|
|
|
|
color: black;
|
|
|
|
margin-right: 32px;
|
2024-12-06 19:21:24 +00:00
|
|
|
}
|
|
|
|
|
2024-12-10 12:27:34 +00:00
|
|
|
.destination .seperator {
|
|
|
|
color: grey;
|
|
|
|
display: none;
|
2024-12-06 18:42:52 +00:00
|
|
|
}
|
|
|
|
|
2024-12-10 12:27:34 +00:00
|
|
|
.destination .combined {
|
|
|
|
display: inline-block;
|
|
|
|
color: white;
|
|
|
|
min-width: 160px;
|
2024-12-06 18:42:52 +00:00
|
|
|
padding: 8px;
|
2024-12-10 12:27:34 +00:00
|
|
|
margin-left: 16px;
|
|
|
|
margin-right: 16px;
|
|
|
|
background-color: #777;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 8px;
|
|
|
|
text-align: center;
|
2024-12-06 18:42:52 +00:00
|
|
|
}
|
|
|
|
|
2024-12-10 12:27:34 +00:00
|
|
|
.destination .combined:first-child {
|
|
|
|
background-color: #333;
|
2024-12-06 18:42:52 +00:00
|
|
|
}
|
|
|
|
|