class-jetpack-subscribe-modal.php
3 years ago
subscribe-modal.css
3 years ago
subscribe-modal.js
3 years ago
subscribe-modal.css
37 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 | overflow: hidden; |
| 23 | top: 100%; |
| 24 | background-color: #fefefe; |
| 25 | margin: 15% auto; |
| 26 | width: 100%; |
| 27 | max-width: 600px; |
| 28 | border-radius: 10px; |
| 29 | box-sizing: border-box; |
| 30 | transition: all 0.4s; |
| 31 | } |
| 32 | |
| 33 | .jetpack-subscribe-modal.open .jetpack-subscribe-modal__modal-content { |
| 34 | top: 0; |
| 35 | visibility: visible; |
| 36 | } |
| 37 |