beci-anzeige/style.css

87 lines
1.1 KiB
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;
2024-12-06 19:21:24 +00:00
background-color: black;
2024-12-06 18:42:52 +00:00
}
#headerBar {
2024-12-06 19:21:24 +00:00
font-size: 60px;
2024-12-06 18:42:52 +00:00
font-weight: bold;
color: white;
2024-12-06 19:21:24 +00:00
background-color: black;
2024-12-06 18:42:52 +00:00
padding: 8px;
2024-12-06 19:21:24 +00:00
padding-top: 48px;
padding-bottom: 48px;
}
#fini {
width: 120px;
float: left;
margin: 48px;
margin-top: 0px;
2024-12-06 18:42:52 +00:00
}
#stationName, #timeBox {
}
#timeBox {
float: right;
}
#contentSection {
width: 100%;
}
#contentSection table {
width: 100%;
}
#contentSection .routeImage {
width: 100%;
}
2024-12-06 19:21:24 +00:00
#contentSection tr:nth-child(odd) {
background-color: white;
}
2024-12-06 18:42:52 +00:00
#contentSection tr:nth-child(even) {
background-color: #EEE;
}
#contentSection th {
2024-12-06 19:21:24 +00:00
font-size: 50px;
2024-12-06 18:42:52 +00:00
text-align: left;
padding: 8px;
}
#contentSection td {
2024-12-06 19:21:24 +00:00
font-size: 50px;
2024-12-06 18:42:52 +00:00
padding-left: 12px;
padding-right: 4px;
padding-top: 8px;
}
2024-12-06 19:21:24 +00:00
2024-12-06 18:42:52 +00:00
.cellRoute {
2024-12-06 19:21:24 +00:00
width: 60px;
height: 60px;
2024-12-06 18:42:52 +00:00
}
.cellDest {
font-size: 36px;
}
.cellTime {
font-size: 50px;
font-weight: bold;
text-align: right;
margin-right: 20px;
}