menu-icon.css
6 years ago
style-insert.css
6 years ago
style-tools.css
6 years ago
style.css
6 years ago
style-tools.css
59 lines
| 1 | #sci_bg{ |
| 2 | position: fixed; |
| 3 | top: 0; |
| 4 | left: 0; |
| 5 | right: 0; |
| 6 | bottom: 0; |
| 7 | background: rgba(0, 0, 0, 0.5); |
| 8 | z-index: 999999; |
| 9 | } |
| 10 | |
| 11 | #sci_popup { |
| 12 | position: fixed; |
| 13 | z-index: 999999; |
| 14 | background: #fff; |
| 15 | top: 50px; |
| 16 | bottom: 50px; |
| 17 | left: 25%; |
| 18 | right: 25%; |
| 19 | border: 1px solid #dfdfdf; |
| 20 | box-shadow: 0 0 9px -4px; |
| 21 | display: flex; |
| 22 | flex-wrap: nowrap; |
| 23 | flex-direction: column; |
| 24 | } |
| 25 | |
| 26 | #sci_popup iframe { |
| 27 | height: 100%; |
| 28 | background: #fff; |
| 29 | } |
| 30 | |
| 31 | #sci_popup header { |
| 32 | position: relative; |
| 33 | padding: 10px 20px; |
| 34 | border-bottom: 1px solid #eee; |
| 35 | } |
| 36 | #sci_title{ |
| 37 | background: url(../images/shortcoder.svg) no-repeat; |
| 38 | background-size: 16px; |
| 39 | padding-left: 28px; |
| 40 | background-position: left center; |
| 41 | } |
| 42 | #sci_close{ |
| 43 | position: absolute; |
| 44 | right: 0; |
| 45 | top: 0; |
| 46 | bottom: 0; |
| 47 | width: 40px; |
| 48 | border-left: 1px solid #eee; |
| 49 | cursor: pointer; |
| 50 | } |
| 51 | #sci_close:hover{ |
| 52 | background: #fafafa; |
| 53 | } |
| 54 | #sci_close > .dashicons { |
| 55 | position: absolute; |
| 56 | top: 50%; |
| 57 | left: 50%; |
| 58 | margin: -10px 0 0 -10px; |
| 59 | } |