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.

77 lines
1.5 KiB

5 years ago
  1. body {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. html, body, #map {
  6. height: 100%;
  7. width: 100%;
  8. overflow: hidden;
  9. font: 10pt "Helvetica Neue", Arial, Helvetica, sans-serif;
  10. }
  11. .registerButtonBox {
  12. position: absolute;
  13. right: 15px;
  14. top: 15px;
  15. z-index: 2000;
  16. }
  17. .lvl2 {
  18. margin-left: 15px;
  19. }
  20. #rightCard {
  21. position: absolute;
  22. right: -300px;
  23. top: 0;
  24. max-width: 300px;
  25. max-height: 100%;
  26. overflow-y: scroll;
  27. z-index: 2000;
  28. background: #ffffff;
  29. -webkit-transition: all 0.5s; /* Safari */
  30. transition: all 0.5s;
  31. }
  32. .rightCard-show {
  33. right: 0px!important;
  34. }
  35. .hidden {
  36. visibility: hidden;
  37. }
  38. .marker {
  39. background: #ffffff;
  40. width: 30px;
  41. height: 30px;
  42. border-radius: 50%;
  43. /* box-shadow: 0 0 5px 5px rgba(66, 134, 244, 0.2); */
  44. -webkit-transition: all 0.2s; /* Safari */
  45. transition: all 0.2s;
  46. }
  47. /* .marker:hover {
  48. border: 2px solid #000000;
  49. } */
  50. .routeMarker {
  51. background: #ffffff;
  52. width: 30px;
  53. height: 30px;
  54. border-radius: 50%;
  55. border: 2px solid rgb(65, 202, 244);
  56. box-shadow: 0 0 5px 5px rgba(65, 202, 244, 0.2);
  57. -webkit-transition: all 0.2s; /* Safari */
  58. transition: all 0.2s;
  59. }
  60. .lnMarker {
  61. background: #ffffff;
  62. width: 30px;
  63. height: 30px;
  64. border-radius: 50%;
  65. border: 2px solid rgb(43, 216, 129);
  66. box-shadow: 0 0 5px 5px rgba(43, 216, 129, 0.2);
  67. -webkit-transition: all 0.2s; /* Safari */
  68. transition: all 0.2s;
  69. }
  70. .marker-red {
  71. box-shadow: 0 0 5px 5px rgba(244, 78, 66, 0.2)!important;
  72. }
  73. .marker-blue {
  74. box-shadow: 0 0 5px 5px rgba(63, 154, 244, 0.2)!important;
  75. }