84 lines
1.3 KiB
CSS
84 lines
1.3 KiB
CSS
#trafficList {
|
|
height: 100%;
|
|
margin-top: 40px;
|
|
background: white;
|
|
}
|
|
|
|
.trafficEntry {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
width: 100vw;
|
|
padding: 6vw 0;
|
|
background: white;
|
|
}
|
|
|
|
.trafficEntry div {
|
|
width: 90%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-evenly;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.trafficEntry div p {
|
|
text-align: left;
|
|
font-size: 3.5vw;
|
|
padding: 3vw 0;
|
|
}
|
|
|
|
.trafficEntry div div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.timeColumn {
|
|
flex-basis: 15%;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
}
|
|
|
|
.timeColumn img {
|
|
width: 20px;
|
|
}
|
|
|
|
.lineColumn {
|
|
flex-basis: 75%;
|
|
}
|
|
|
|
.lineColumn img {
|
|
width: 30px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.trafficEntry div div div {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.lineName {
|
|
background: var(--colorLine);
|
|
color: white;
|
|
font-size: 6vw;
|
|
font-weight: 100;
|
|
margin-right: 10px;
|
|
padding: 1vw 4vw;
|
|
}
|
|
|
|
.destination {
|
|
font-size: 100%;
|
|
text-align: left;
|
|
}
|
|
|
|
.trafficEntry button {
|
|
width: 90%;
|
|
font-size: 4vw;
|
|
font-weight: bold;
|
|
color: var(--colorVT1);
|
|
padding: 4vw 0;
|
|
border-radius: var(--borderRadius);
|
|
box-shadow: var(--boxShadow);
|
|
} |