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.

52 lines
840 B

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