You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
974 B

  1. html, body {
  2. height: 100%;
  3. }
  4. #map {
  5. height: calc(100% - 160px);
  6. }
  7. #calendar {
  8. z-index: 100;
  9. width: 200px;
  10. height: calc(100% - 240px);
  11. position: absolute;
  12. top: 60px;
  13. right: 10px;
  14. border: 3px #888 solid;
  15. background: white;
  16. font-size: 12px;
  17. line-height: 18px;
  18. }
  19. #calendar #controls {
  20. position: absolute;
  21. top: 0;
  22. padding: 3px;
  23. background: white;
  24. }
  25. #calendar .scroll {
  26. overflow: scroll;
  27. height: 100%;
  28. }
  29. table.calendar {
  30. width: 100%;
  31. margin-bottom: 10px;
  32. }
  33. .calendar th, .calendar td {
  34. text-align: center;
  35. width: 14%;
  36. }
  37. .calendar td a {
  38. display: block;
  39. text-decoration: none;
  40. color: black;
  41. }
  42. .calendar td a:hover, .calendar td a.selected:hover {
  43. background: #999;
  44. color: white;
  45. }
  46. .calendar td a.selected {
  47. background: #6699ff;
  48. }
  49. #battery-chart, #events-chart {
  50. width: 100%;
  51. }
  52. /* Move the map zoom controls away from the Compass logo */
  53. .leaflet-top .leaflet-control-zoom {
  54. margin-top: 60px;
  55. margin-left: 26px;
  56. }