123456789101112131415161718192021222324252627282930 |
- [moe] [url]:not([show]){
- display: none;
- }
- [moe] {
- display: inline-block;
- }
- [moe][relative] {
- position: relative;
- }
- [moe] [url]:not([show]) {
- z-index: 999999;
- position: absolute;
- background-color: white;
- padding: 10px;
- border: 1px solid gray;
- }
- [moe][fixed-center] [url]:not([show]) {
- position: fixed !important;
- top: 50% !important;
- left: 50% !important;
- width: 600px;
- transform: translate(-50%, -50%) !important;
- }
- [moe] [url][right] {
- right: 0;
- min-width: 200px;
- }
- #moe-form-mask {
- cursor: pointer;
- }
|