1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- body {
- overflow: hidden;
- }
- #maps {
- position: absolute;
- top: 2px;
- right: 0px;
- font: 12px;
- font-weight: 400;
- font-family: 'Roboto', sans-serif;
- }
- #maps > a {
- display: block;
- float: left;
- background: url(home-arrow.png) 1px left no-repeat;
- width: 17px;
- height: 18px;
- margin: 20px 0 0 16px;
- text-indent: -99999px;
- }
- #maps > a:hover {
- background: url(home-arrow.png) -17px left no-repeat;
- }
- #maps ul {
- list-style-type: none;
- margin: 28px 0 0 80px;
- }
- #maps li {
- float: left;
- margin-right: 20px;
- }
- #maps li a {
- text-decoration: none;
- color: #999;
- }
- #maps li a:hover {
- color: #00C6D7;
- }
- #maps li a.active {
- font-weight: normal;
- color: #333;
- }
- #dataset {
- position: fixed;
- bottom: 20px;
- right: 20px;
- font: 10px Arial, sans-serif;
- background: white;
- }
- #dataset a {
- color: #666;
- text-decoration: none;
- }
- #dataset a:hover {
- color: black;
- text-decoration: underline;
- }
|