yemi.css 548 B

1234567891011121314151617181920212223242526272829
  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. transform: translate(-50%, -50%) !important;
  22. }
  23. [moe] [url][right] {
  24. right: 0;
  25. min-width: 200px;
  26. }
  27. #moe-form-mask {
  28. cursor: pointer;
  29. }