base-statistic.css
7 months ago
base-statistic.css.map
1 year ago
base-statistic.less
7 months ago
index.php
3 years ago
media.css
7 months ago
settings-premium.css
7 months ago
statistic.css
3 years ago
sweetalert-custom.css
7 months ago
sweetalert-custom.css.map
6 years ago
sweetalert-custom.less
3 years ago
sweetalert2.css
3 years ago
wrio-subscribe-widget.css
7 months ago
wrio-subscribe-widget.css
127 lines
| 1 | /** |
| 2 | * Subscribe Widget Styles |
| 3 | * Matches the onp-container / license-manager styling |
| 4 | * |
| 5 | * @package Robin_Image_Optimizer |
| 6 | */ |
| 7 | |
| 8 | .wrio-subscribe-widget { |
| 9 | border: 0; |
| 10 | padding: 0; |
| 11 | border-radius: 5px; |
| 12 | background: rgb(255, 255, 255); |
| 13 | background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 63%, rgba(246, 246, 246, 1) 100%); |
| 14 | box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); |
| 15 | box-sizing: border-box; |
| 16 | margin-top: 30px; |
| 17 | } |
| 18 | |
| 19 | .wrio-subscribe-widget__header { |
| 20 | padding: 20px; |
| 21 | padding-bottom: 0; |
| 22 | border-top-left-radius: 5px; |
| 23 | border-top-right-radius: 5px; |
| 24 | } |
| 25 | |
| 26 | .wrio-subscribe-widget__header h3 { |
| 27 | margin: 0; |
| 28 | padding: 0; |
| 29 | font-size: 16px; |
| 30 | } |
| 31 | |
| 32 | .wrio-subscribe-widget__body { |
| 33 | padding: 20px; |
| 34 | padding-top: 15px; |
| 35 | border-bottom-right-radius: 5px; |
| 36 | border-bottom-left-radius: 5px; |
| 37 | } |
| 38 | |
| 39 | .wrio-subscribe-widget__messages { |
| 40 | margin-bottom: 15px; |
| 41 | } |
| 42 | |
| 43 | .wrio-subscribe-widget__success { |
| 44 | background: #f0fdf4; |
| 45 | border: 1px solid #bbf7d0; |
| 46 | color: #16a34a; |
| 47 | padding: 12px 15px; |
| 48 | border-radius: 4px; |
| 49 | font-size: 14px; |
| 50 | line-height: 170%; |
| 51 | } |
| 52 | |
| 53 | .wrio-subscribe-widget__error { |
| 54 | background: #fef2f2; |
| 55 | border: 1px solid #fecaca; |
| 56 | color: #dc2626; |
| 57 | padding: 12px 15px; |
| 58 | border-radius: 4px; |
| 59 | font-size: 14px; |
| 60 | line-height: 170%; |
| 61 | } |
| 62 | |
| 63 | .wrio-subscribe-widget__form { |
| 64 | /* Form container */ |
| 65 | } |
| 66 | |
| 67 | .wrio-subscribe-widget__form p { |
| 68 | margin: 0 0 10px 0; |
| 69 | padding: 0; |
| 70 | line-height: 170%; |
| 71 | font-size: 14px; |
| 72 | } |
| 73 | |
| 74 | .wrio-subscribe-widget__field-wrap { |
| 75 | display: flex; |
| 76 | flex-direction: row; |
| 77 | gap: 10px; |
| 78 | margin-bottom: 12px; |
| 79 | } |
| 80 | |
| 81 | .wrio-subscribe-widget__email { |
| 82 | flex: 1; |
| 83 | font-size: 18px; |
| 84 | line-height: 20px; |
| 85 | height: 36px; |
| 86 | padding: 6px 12px; |
| 87 | border: 1px solid #7e8993; |
| 88 | border-radius: 4px; |
| 89 | color: #000; |
| 90 | } |
| 91 | |
| 92 | .wrio-subscribe-widget__email:focus { |
| 93 | border-color: #007cba; |
| 94 | box-shadow: 0 0 0 1px #007cba; |
| 95 | outline: none; |
| 96 | } |
| 97 | |
| 98 | .wrio-subscribe-widget__button { |
| 99 | white-space: nowrap; |
| 100 | padding: 7px 14px 6px 14px; |
| 101 | text-decoration: none; |
| 102 | } |
| 103 | |
| 104 | .wrio-subscribe-widget .wrio-subscribe-widget__checkbox-label { |
| 105 | display: inline-block; |
| 106 | gap: 8px; |
| 107 | font-size: 13px; |
| 108 | color: #333; |
| 109 | line-height: 170%; |
| 110 | margin-top: 5px; |
| 111 | font-weight: normal; |
| 112 | } |
| 113 | |
| 114 | .wrio-subscribe-widget__checkbox-label input[type="checkbox"] { |
| 115 | flex-shrink: 0; |
| 116 | margin-top: 0; |
| 117 | } |
| 118 | |
| 119 | .wrio-subscribe-widget__checkbox-label a { |
| 120 | color: #0073aa; |
| 121 | text-decoration: none; |
| 122 | } |
| 123 | |
| 124 | .wrio-subscribe-widget__checkbox-label a:hover { |
| 125 | text-decoration: underline; |
| 126 | } |
| 127 |