forked from viser9/skyline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlightTracking.css
More file actions
50 lines (40 loc) · 886 Bytes
/
FlightTracking.css
File metadata and controls
50 lines (40 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* Add styles for FlightTracking component */
.flight-tracking-container {
padding: 20px;
}
.search-section {
margin-top: 20px;
}
label {
color: blue; /* Set label color to blue */
display: block;
margin-bottom: 8px;
padding-top: 10px; /* Add more padding-top */
}
input {
margin-bottom: 12px;
}
button {
padding: 10px 15px;
background-color: #4caf50;
color: white;
border: none;
cursor: pointer;
}
/* Add styles for FlightTable component */
.flight-table {
margin-left:150px ;
width: 80%;
border-collapse: collapse;
margin-top: 20px;
color: white; /* Set text color to white */
}
.flight-table th, .flight-table td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
.flight-table th {
background-color: #4caf50;
color: white;
}