yemi.css 601 B

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