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
|
<style>
body {
font-family: Arial, sans-serif;
font-size: 11px;
}
table, thead, tbody, tr, td, th {
font-size: inherit;
font-family: inherit;
}
#main { display:table-cell; }
#index { border-bottom: solid 1px #777777; }
#index table td { padding-left: 5px; }
#graph { float: left; }
#list { float: left; }
#list table { margin-left: auto; margin-right: auto; }
#list table td { padding-left: 5px; }
#list table td.name, th.name { text-align: left; }
#list table td.size, th.size { text-align: right; }
#tooltip {
display: none;
position: absolute;
background-color: white;
border: solid 1px black;
padding: 3px;
}
</style>
|