realops.css
866 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
51
52
53
html, body {
height: 100%;
}
body {
background-color: #eeeeee;
}
h1 {
margin-bottom: 20px;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -50px; /* Third value = negative footer height */
}
footer {
height: 50px; /* Must match with .wrapper */
background-color: black;
color: #aaaaaa;
width: 100%;
padding: 4px;
text-align: center;
font-size: 12px;
}
#realops-flight-schedule td, #realops-flight-schedule th {
text-align: center;
vertical-align: middle;
}
#realops-flight-schedule a {
color: inherit;
text-decoration: none;
}
#realops-flight-schedule th.realops-sort-asc::after {
content: "\25BC";
}
#realops-flight-schedule th.realops-sort-desc::after {
content: "\25B2";
}
#realops-body {
margin-left: 15px;
margin-right: 15px;
min-height: 400px;
padding: 30px 50px;
}