echartsLayerCss.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .mytitle {
  2. z-index: 1000;
  3. color: #fff;
  4. font-size: 16px;
  5. text-align: center;
  6. position: absolute;
  7. top: 10px;
  8. left: 40%;
  9. width: 20%;
  10. }
  11. .leaflet-popup {
  12. position: absolute;
  13. text-align: center;
  14. }
  15. .leaflet-popup-close-button {
  16. position: absolute;
  17. top: 0;
  18. right: 0;
  19. padding: 4px 4px 0 0;
  20. text-align: center;
  21. width: 18px;
  22. height: 14px;
  23. font: 16px/14px Tahoma, Verdana, sans-serif;
  24. color: #c3c3c3;
  25. text-decoration: none;
  26. font-weight: bold;
  27. background: transparent;
  28. }
  29. .leaflet-popup-content-wrapper {
  30. text-align: center;
  31. /*max-height: 200px;*/
  32. overflow-y: auto;
  33. background: white;
  34. box-shadow: 0 3px 14px rgba(0,0,0,0.4);
  35. padding: 1px;
  36. text-align: left;
  37. border-radius: 12px;
  38. }
  39. .leaflet-popup-content {
  40. margin: 13px 19px;
  41. line-height: 1.4;
  42. }
  43. .leaflet-popup-tip-container {
  44. margin: 0 auto;
  45. width: 40px;
  46. height: 20px;
  47. position: relative;
  48. overflow: hidden;
  49. }
  50. .leaflet-popup-tip {
  51. background: white;
  52. box-shadow: 0 3px 14px rgba(0,0,0,0.4);
  53. width: 17px;
  54. height: 17px;
  55. padding: 1px;
  56. margin: -10px auto 0;
  57. -webkit-transform: rotate(45deg);
  58. -moz-transform: rotate(45deg);
  59. -ms-transform: rotate(45deg);
  60. -o-transform: rotate(45deg);
  61. transform: rotate(45deg);
  62. }