cus-element.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. ::-webkit-scrollbar { width: 6px; height: 10px; }
  2. ::-webkit-scrollbar-track { width: 6px; background: rgba(#101F1C, 0.1);-webkit-border-radius: 2em; -moz-border-radius: 2em; border-radius: 2em; }
  3. ::-webkit-scrollbar-thumb { background-color: rgba(#101F1C, 0.5); background-clip: padding-box; min-height: 28px; -webkit-border-radius: 2em; -moz-border-radius: 2em; border-radius: 2em; }
  4. ::-webkit-scrollbar-thumb:hover { background-color: rgba(#101F1C, 1); }
  5. .easy-map-base-switch {
  6. width: auto !important;
  7. min-width: auto !important;
  8. padding: 0 !important;
  9. border: none !important;
  10. .base-switch-item {
  11. background: #f2f8fd;
  12. border-radius: 6px;
  13. opacity: .9;
  14. display: flex;
  15. .base-item {
  16. flex: 0 0 auto;
  17. width: 115px;
  18. height: 70px;
  19. position: relative;
  20. margin: 10px 0 10px 10px;
  21. &:last-child {
  22. margin-right: 10px;
  23. }
  24. .label {
  25. position: absolute;
  26. right: 0;
  27. bottom: 0;
  28. padding: 0 3px;
  29. font-size: 14px;
  30. background: rgba(0, 0, 0, .3);
  31. color: #fff;
  32. }
  33. >img {
  34. width: 100%;
  35. height: 100%;
  36. }
  37. &:hover,
  38. &.active {
  39. border: 2px solid #255fef;
  40. .label {
  41. background-color: #255fef;
  42. }
  43. }
  44. }
  45. }
  46. }