class-jetpack-subscribe-modal.php
3 years ago
subscribe-modal.css
3 years ago
subscribe-modal.js
3 years ago
subscribe-modal.css
45 lines
| 1 | .jetpack-subscribe-modal { |
| 2 | visibility: hidden; |
| 3 | position: fixed; |
| 4 | z-index: 1; |
| 5 | left: 0; |
| 6 | top: 0; |
| 7 | width: 100%; |
| 8 | height: 100%; |
| 9 | overflow: auto; |
| 10 | background-color: transparent; |
| 11 | transition: all 0.4s; |
| 12 | } |
| 13 | |
| 14 | .jetpack-subscribe-modal.open { |
| 15 | background-color: rgba(0,0,0,0.3); |
| 16 | visibility: visible; |
| 17 | } |
| 18 | |
| 19 | .jetpack-subscribe-modal__modal-content { |
| 20 | position: relative; |
| 21 | visibility: hidden; |
| 22 | top: 100%; |
| 23 | background-color: #fefefe; |
| 24 | margin: 15% auto; |
| 25 | border: 1px solid #ddd; |
| 26 | width: 600px; |
| 27 | border-radius: 10px; |
| 28 | box-sizing: border-box; |
| 29 | transition: all 0.4s; |
| 30 | } |
| 31 | |
| 32 | .jetpack-subscribe-modal__modal-content > .wp-block-group { |
| 33 | max-width: 450px; |
| 34 | margin: 0 auto; |
| 35 | } |
| 36 | |
| 37 | .jetpack-subscribe-modal__modal-content > .wp-block-group a { |
| 38 | text-decoration: none; |
| 39 | } |
| 40 | |
| 41 | .jetpack-subscribe-modal.open .jetpack-subscribe-modal__modal-content { |
| 42 | top: 0; |
| 43 | visibility: visible; |
| 44 | } |
| 45 |