atlas.css 1001 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. body {
  2. overflow: hidden;
  3. }
  4. #maps {
  5. position: absolute;
  6. top: 2px;
  7. right: 0px;
  8. font: 12px;
  9. font-weight: 400;
  10. font-family: 'Roboto', sans-serif;
  11. }
  12. #maps > a {
  13. display: block;
  14. float: left;
  15. background: url(home-arrow.png) 1px left no-repeat;
  16. width: 17px;
  17. height: 18px;
  18. margin: 20px 0 0 16px;
  19. text-indent: -99999px;
  20. }
  21. #maps > a:hover {
  22. background: url(home-arrow.png) -17px left no-repeat;
  23. }
  24. #maps ul {
  25. list-style-type: none;
  26. margin: 28px 0 0 80px;
  27. }
  28. #maps li {
  29. float: left;
  30. margin-right: 20px;
  31. }
  32. #maps li a {
  33. text-decoration: none;
  34. color: #999;
  35. }
  36. #maps li a:hover {
  37. color: #00C6D7;
  38. }
  39. #maps li a.active {
  40. font-weight: normal;
  41. color: #333;
  42. }
  43. #dataset {
  44. position: fixed;
  45. bottom: 20px;
  46. right: 20px;
  47. font: 10px Arial, sans-serif;
  48. background: white;
  49. }
  50. #dataset a {
  51. color: #666;
  52. text-decoration: none;
  53. }
  54. #dataset a:hover {
  55. color: black;
  56. text-decoration: underline;
  57. }