yemi.css 647 B

1234567891011121314151617181920212223242526272829303132333435
  1. [moe] [url]:not([show]){
  2. display: none;
  3. }
  4. [moe] {
  5. display: inline-block;
  6. position: relative;
  7. }
  8. [moe][relative] {
  9. position: relative;
  10. }
  11. [moe] [url]:not([show]) {
  12. z-index: 99999;
  13. position: absolute;
  14. background-color: white;
  15. padding: 10px;
  16. border: 1px solid gray;
  17. min-width: 180px;
  18. }
  19. [moe][fixed-center] [url]:not([show]) {
  20. position: fixed !important;
  21. top: 50% !important;
  22. left: 50% !important;
  23. width: 600px;
  24. transform: translate(-50%, -50%) !important;
  25. }
  26. [moe] [url][right] {
  27. right: 0;
  28. min-width: 200px;
  29. }
  30. [moe] [url][left] {
  31. left: 0;
  32. }
  33. #moe-form-mask {
  34. cursor: pointer;
  35. }