beci-anzeige/style.css

72 lines
905 B
CSS
Raw Normal View History

2024-12-06 18:42:52 +00:00
* {
padding: 0;
margin: 0;
}
body {
font-family: Helvetica, sans;
width: 50%;
padding: 0;
margin: 0;
}
#headerBar {
font-size: 46px;
font-weight: bold;
color: white;
background-color: #444;
padding: 8px;
}
#stationName, #timeBox {
}
#timeBox {
float: right;
}
#contentSection {
width: 100%;
}
#contentSection table {
width: 100%;
}
#contentSection .routeImage {
width: 100%;
}
#contentSection tr:nth-child(even) {
background-color: #EEE;
}
#contentSection th {
font-size: 26px;
text-align: left;
padding: 8px;
}
#contentSection td {
font-size: 28px;
padding-left: 12px;
padding-right: 4px;
padding-top: 8px;
}
.cellRoute {
width: 45px;
height: 45px;
}
.cellDest {
font-size: 36px;
}
.cellTime {
font-size: 50px;
font-weight: bold;
text-align: right;
margin-right: 20px;
}