Dave's public board
This commit is contained in:
57
arrivals.php
57
arrivals.php
@@ -25,56 +25,53 @@ include("functions.php");
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Swansea Daily PPR</title>
|
||||
<style>
|
||||
|
||||
/* Styling for the table */
|
||||
table {
|
||||
width: 80%;
|
||||
width: 90%;
|
||||
border-collapse: collapse;
|
||||
margin: 20px 0;
|
||||
margin-left: auto; /* Automatically adjusts left margin */
|
||||
margin-right: auto; /* Automatically adjusts right margin */
|
||||
|
||||
margin: 20px auto;
|
||||
background-color: #000; /* Black background for digital display effect */
|
||||
color: #0f0; /* Bright green text for digital display effect */
|
||||
font-family: 'Courier New', Courier, monospace; /* Monospace font for digital look */
|
||||
font-size: 18px;
|
||||
text-align: center;
|
||||
}
|
||||
table, th, td {
|
||||
border: 1px solid #ddd;
|
||||
border: 1px solid #444; /* Subtle border for table cells */
|
||||
}
|
||||
th {
|
||||
padding: 8px;
|
||||
text-align: center;
|
||||
padding: 10px;
|
||||
background-color: #222; /* Darker background for headers */
|
||||
color: #fff; /* White text for headers */
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
td {
|
||||
padding: 8px;
|
||||
text-align: center;
|
||||
font-family: Arial, sans-serif;
|
||||
font-size: 16pt;
|
||||
}
|
||||
th {
|
||||
background-color: #f2f2f2;
|
||||
padding: 10px;
|
||||
}
|
||||
tr:nth-child(even) {
|
||||
background-color: #f9f9f9;
|
||||
background-color: #111; /* Slightly lighter background for even rows */
|
||||
}
|
||||
tr:hover {
|
||||
background-color: #f1f1f1;
|
||||
background-color: #333; /* Highlight row on hover */
|
||||
}
|
||||
|
||||
/* Highlight styles for fuel types */
|
||||
.highlight100LL {
|
||||
background-color: #ADD8E6 !important;
|
||||
#font-weight: bold;
|
||||
background-color: #0044cc !important; /* Blue for 100LL */
|
||||
color: #fff !important; /* White text */
|
||||
}
|
||||
|
||||
.highlightJET {
|
||||
background-color: yellow !important; /* Allow it to override the odd/even shading */
|
||||
#font-weight: bold;
|
||||
}
|
||||
.acreg {
|
||||
padding: 4px;
|
||||
text-align: center;
|
||||
font-family: Arial, sans-serif;
|
||||
font-size: 10pt;
|
||||
font-style: italic;
|
||||
background-color: #ffcc00 !important; /* Yellow for JET A1 */
|
||||
color: #000 !important; /* Black text */
|
||||
}
|
||||
|
||||
/* Styling for aircraft registration */
|
||||
.acreg {
|
||||
font-size: 14px;
|
||||
font-style: italic;
|
||||
color: #ccc; /* Light gray for subtle emphasis */
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
Reference in New Issue
Block a user