DVB Container

This commit is contained in:
2022-01-03 21:56:20 +01:00
parent 0ac2eb2125
commit f3f01f9717
6 changed files with 151 additions and 1 deletions

View File

@ -0,0 +1,50 @@
.container {
grid-area: dvb;
display: flex;
flex-direction: column;
}
.container table {
height: 100%;
}
.departureHeader {
font-weight: bold;
font-size: 110%;
}
.departure {
font-size: 150%;
font-weight: bold;
margin: auto 0;
}
.departure td {
padding: 2px 10px;
}
.departure td:nth-child(1) {
padding-left: 20px !important;
}
.departure td:nth-child(2) {
width: 100%;
}
.departure td:nth-child(3), .departure td:nth-child(4) {
text-align: right;
}
.delay, .beforeTime {
padding-left: 0 !important;
font-size: 70%;
font-weight: normal;
}
.delay {
color: #ff0000;
}
.beforeTime {
color: #0000ff;
}