87 lines
1.1 KiB
CSS
87 lines
1.1 KiB
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: Helvetica, sans;
|
|
width: 50%;
|
|
padding: 0;
|
|
margin: 0;
|
|
background-color: black;
|
|
}
|
|
|
|
#headerBar {
|
|
font-size: 60px;
|
|
font-weight: bold;
|
|
color: white;
|
|
background-color: black;
|
|
padding: 8px;
|
|
padding-top: 48px;
|
|
padding-bottom: 48px;
|
|
}
|
|
|
|
#fini {
|
|
width: 120px;
|
|
float: left;
|
|
margin: 48px;
|
|
margin-top: 0px;
|
|
}
|
|
|
|
#stationName, #timeBox {
|
|
}
|
|
|
|
#timeBox {
|
|
float: right;
|
|
}
|
|
|
|
#contentSection {
|
|
width: 100%;
|
|
}
|
|
|
|
#contentSection table {
|
|
width: 100%;
|
|
}
|
|
|
|
#contentSection .routeImage {
|
|
width: 100%;
|
|
}
|
|
|
|
#contentSection tr:nth-child(odd) {
|
|
background-color: white;
|
|
}
|
|
|
|
#contentSection tr:nth-child(even) {
|
|
background-color: #EEE;
|
|
}
|
|
|
|
#contentSection th {
|
|
font-size: 50px;
|
|
text-align: left;
|
|
padding: 8px;
|
|
}
|
|
|
|
#contentSection td {
|
|
font-size: 50px;
|
|
padding-left: 12px;
|
|
padding-right: 4px;
|
|
padding-top: 8px;
|
|
}
|
|
|
|
|
|
.cellRoute {
|
|
width: 60px;
|
|
height: 60px;
|
|
}
|
|
|
|
.cellDest {
|
|
font-size: 36px;
|
|
}
|
|
|
|
.cellTime {
|
|
font-size: 50px;
|
|
font-weight: bold;
|
|
text-align: right;
|
|
margin-right: 20px;
|
|
}
|