| OLD | NEW |
| (Empty) |
| 1 body | |
| 2 { | |
| 3 font: 11px Verdana, Arial, Helvetica, Sans-Serif; | |
| 4 color: #000000; | |
| 5 background-color: #FFFFFF; | |
| 6 margin-top: 0; | |
| 7 margin-bottom: 0; | |
| 8 } | |
| 9 | |
| 10 a:link, a:visited | |
| 11 { | |
| 12 color: #0011BB; | |
| 13 text-decoration: none; | |
| 14 } | |
| 15 a:hover | |
| 16 { | |
| 17 color: #605040; | |
| 18 text-decoration: underline; | |
| 19 } | |
| 20 | |
| 21 .block | |
| 22 { | |
| 23 border: 2px solid #CCCCDD; | |
| 24 margin-bottom: 10px; | |
| 25 } | |
| 26 .block_title | |
| 27 { | |
| 28 width: 70%; | |
| 29 font-size: 13px; | |
| 30 font-weight: bold; | |
| 31 color: #000000; | |
| 32 background-color: #CCCCDD; | |
| 33 text-align: center; | |
| 34 padding: 1px; | |
| 35 } | |
| 36 | |
| 37 td, th | |
| 38 { | |
| 39 vertical-align: middle; | |
| 40 padding: 4px; | |
| 41 } | |
| 42 td.title | |
| 43 { | |
| 44 font-size: 13px; | |
| 45 font-weight: bold; | |
| 46 } | |
| 47 td.chart | |
| 48 { | |
| 49 line-height: 1px; | |
| 50 } | |
| 51 .special | |
| 52 { | |
| 53 background-color: #EAEAEA; | |
| 54 } | |
| 55 .emph | |
| 56 { | |
| 57 font-weight: bold; | |
| 58 } | |
| 59 | |
| 60 #quickLinks | |
| 61 { | |
| 62 text-align: center; | |
| 63 max-width: 600px; | |
| 64 margin-left: auto; | |
| 65 margin-right: auto; | |
| 66 margin-top: 20px; | |
| 67 margin-bottom: 20px; | |
| 68 } | |
| 69 | |
| 70 #quickLinks > a | |
| 71 { | |
| 72 text-decoration: none; | |
| 73 white-space: nowrap; | |
| 74 } | |
| 75 | |
| 76 #quickLinks > a:after | |
| 77 { | |
| 78 content: "|"; | |
| 79 margin: 0px 5px; | |
| 80 } | |
| 81 | |
| 82 #quickLinks > a:last-child:after | |
| 83 { | |
| 84 content: none; | |
| 85 } | |
| 86 | |
| 87 .showAllLink | |
| 88 { | |
| 89 font-size: 80%; | |
| 90 } | |
| 91 | |
| 92 .countrycode | |
| 93 { | |
| 94 float: right; | |
| 95 margin-left: 10px; | |
| 96 } | |
| 97 | |
| 98 .hitsChart, | |
| 99 .bandwidthChart | |
| 100 { | |
| 101 height: 6px; | |
| 102 display: inline-block; | |
| 103 } | |
| 104 | |
| 105 .hitsChart | |
| 106 { | |
| 107 background-color: #66DDEE; | |
| 108 background: -moz-linear-gradient(top, #16CAD2 0%, #86E8F0 40%, #069E9E 100%); | |
| 109 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#16C
AD2), color-stop(40%,#86E8F0), color-stop(100%,#069E9E)); | |
| 110 border-bottom: 1px solid black; | |
| 111 } | |
| 112 | |
| 113 .bandwidthChart | |
| 114 { | |
| 115 background-color: #2EA495; | |
| 116 background: -moz-linear-gradient(top, #008453 0%, #2FA496 40%, #005738 100%); | |
| 117 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#008
453), color-stop(40%,#2FA496), color-stop(100%,#005738)); | |
| 118 } | |
| OLD | NEW |