-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.css
61 lines (51 loc) · 933 Bytes
/
table.css
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
54
55
56
57
58
59
60
61
header {
width: 70%;
height: 100px;
}
.flightinfo {
display:block;
float:left;
margin-left: 20px;
}
.logoag {
width:220px;
height:89px;
background-image: url("img2.png");
display: block;
float: left;
}
body {
width:80%;
margin-left:auto;
margin-right:auto;
}
h2 {
font-family: verdana, arial, sans-serif;
font-size: 15px;
color: #3A3A3A;
}
table.dataframe {
font-family: verdana, arial, sans-serif;
font-size: 11px;
color: #333333;
border-width: 1px;
border-color: #3A3A3A;
border-collapse: collapse;
}
table.dataframe th {
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #517994;
background-color: #B2CFD8;
}
table.dataframe tr:hover td {
background-color: #DFEBF1;
}
table.dataframe td {
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #517994;
background-color: #ffffff;
}