43 lines
606 B
CSS
43 lines
606 B
CSS
body {
|
|
font-family: 'Arial', sans-serif;
|
|
background-color: #f0f0f0;
|
|
}
|
|
|
|
.App {
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
table {
|
|
width: 80%;
|
|
margin: 20px auto;
|
|
border-collapse: collapse;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
background-color: #fff;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
border: 1px solid #ddd;
|
|
padding: 10px;
|
|
text-align: left;
|
|
}
|
|
|
|
th {
|
|
background-color: #4CAF50;
|
|
color: #fff;
|
|
}
|
|
|
|
tbody tr:hover {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
tfoot {
|
|
background-color: #4CAF50;
|
|
color: #fff;
|
|
}
|
|
|
|
.delayed-flight {
|
|
background-color: #ffcccc;
|
|
color: #ff0000;
|
|
} |