components
5 years ago
jquery-confirm
8 years ago
jquery-ui
8 years ago
mixins
5 years ago
perfect-scrollbar
7 years ago
utility
5 years ago
variables
5 years ago
_animation.scss
6 years ago
_backbone.scss
6 years ago
_clearings.scss
6 years ago
_colors.scss
5 years ago
_confirm.scss
4 years ago
_containers.scss
5 years ago
_fonts.scss
5 years ago
_grid.scss
5 years ago
activation-rtl.css
3 years ago
activation.css
3 years ago
activation.css.map
5 years ago
activation.scss
3 years ago
admin-rtl.css
2 years ago
admin.css
2 years ago
admin.css.map
4 years ago
admin.scss
2 years ago
deactivation-feedback-rtl.css
3 years ago
deactivation-feedback.css
3 years ago
deactivation-feedback.scss
3 years ago
everest-forms-rtl.css
3 years ago
everest-forms.css
3 years ago
everest-forms.css.map
4 years ago
everest-forms.scss
3 years ago
flatpickr-rtl.css
4 years ago
flatpickr.css
4 years ago
flatpickr.css.map
5 years ago
flatpickr.scss
6 years ago
menu-rtl.css
2 years ago
menu.css
2 years ago
menu.css.map
5 years ago
menu.scss
2 years ago
select2-rtl.css
4 years ago
select2.css
4 years ago
select2.css.map
5 years ago
select2.scss
5 years ago
activation.scss
222 lines
| 1 | /** |
| 2 | * activation.scss |
| 3 | * Styles applied to elements displayed on activation |
| 4 | */ |
| 5 | |
| 6 | /** |
| 7 | * Imports |
| 8 | */ |
| 9 | @import "variables/variables"; |
| 10 | |
| 11 | /** |
| 12 | * Styling begins |
| 13 | */ |
| 14 | div.everest-forms-message { |
| 15 | overflow: hidden; |
| 16 | position: relative; |
| 17 | border-left-color: $everestforms !important; |
| 18 | |
| 19 | &.evf-review-notice { |
| 20 | padding: 16px; |
| 21 | display: flex; |
| 22 | align-items: center; |
| 23 | |
| 24 | .everest-forms-logo { |
| 25 | height: 120px; |
| 26 | width: 120px; |
| 27 | border-radius: 4px; |
| 28 | margin-right: 20px; |
| 29 | flex: 0 0 120px; |
| 30 | display: flex; |
| 31 | align-items: center; |
| 32 | justify-content: center; |
| 33 | background: $everestforms; |
| 34 | |
| 35 | svg { |
| 36 | height: 80px; |
| 37 | width: 80px; |
| 38 | fill: $color-white; |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | .everest-forms-message--content { |
| 43 | h3 { |
| 44 | margin: 0; |
| 45 | font-size: 20px; |
| 46 | line-height: 1.5; |
| 47 | } |
| 48 | |
| 49 | p { |
| 50 | margin-top: 4px; |
| 51 | padding: 0; |
| 52 | |
| 53 | &.submit { |
| 54 | margin-top: 9px; |
| 55 | margin-bottom: 0; |
| 56 | |
| 57 | .button { |
| 58 | margin-right: 5px; |
| 59 | } |
| 60 | |
| 61 | .evf-button-link { |
| 62 | padding: 0 2px 0; |
| 63 | box-shadow: none; |
| 64 | } |
| 65 | } |
| 66 | } |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | &.evf-survey-notice { |
| 71 | padding: 16px; |
| 72 | display: flex; |
| 73 | align-items: center; |
| 74 | |
| 75 | .everest-forms-logo { |
| 76 | height: 120px; |
| 77 | width: 120px; |
| 78 | border-radius: 4px; |
| 79 | margin-right: 20px; |
| 80 | flex: 0 0 120px; |
| 81 | display: flex; |
| 82 | align-items: center; |
| 83 | justify-content: center; |
| 84 | background: $everestforms; |
| 85 | |
| 86 | svg { |
| 87 | height: 80px; |
| 88 | width: 80px; |
| 89 | fill: $color-white; |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | .everest-forms-message--content { |
| 94 | h3 { |
| 95 | margin: 0; |
| 96 | font-size: 20px; |
| 97 | line-height: 1.5; |
| 98 | } |
| 99 | |
| 100 | p { |
| 101 | margin-top: 4px; |
| 102 | padding: 0; |
| 103 | |
| 104 | &.submit { |
| 105 | margin-top: 9px; |
| 106 | margin-bottom: 0; |
| 107 | |
| 108 | .button { |
| 109 | margin-right: 5px; |
| 110 | } |
| 111 | |
| 112 | .evf-button-link { |
| 113 | padding: 0 2px 0; |
| 114 | box-shadow: none; |
| 115 | } |
| 116 | } |
| 117 | } |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | &.evf-allow-usage-notice { |
| 122 | padding: 16px; |
| 123 | display: flex; |
| 124 | align-items: center; |
| 125 | |
| 126 | .everest-forms-logo { |
| 127 | height: 120px; |
| 128 | width: 120px; |
| 129 | border-radius: 4px; |
| 130 | margin-right: 20px; |
| 131 | flex: 0 0 120px; |
| 132 | display: flex; |
| 133 | align-items: center; |
| 134 | justify-content: center; |
| 135 | background: $everestforms; |
| 136 | |
| 137 | svg { |
| 138 | height: 80px; |
| 139 | width: 80px; |
| 140 | fill: $color-white; |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | .everest-forms-message--content { |
| 145 | h3 { |
| 146 | margin: 0; |
| 147 | font-size: 20px; |
| 148 | line-height: 1.5; |
| 149 | } |
| 150 | |
| 151 | p { |
| 152 | margin-top: 4px; |
| 153 | padding: 0; |
| 154 | |
| 155 | &.submit { |
| 156 | margin-top: 9px; |
| 157 | margin-bottom: 0; |
| 158 | |
| 159 | .button { |
| 160 | margin-right: 5px; |
| 161 | } |
| 162 | |
| 163 | .evf-button-link { |
| 164 | padding: 0 2px 0; |
| 165 | box-shadow: none; |
| 166 | } |
| 167 | } |
| 168 | } |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | a.everest-forms-message-close { |
| 173 | position: static; |
| 174 | float: right; |
| 175 | top: 0; |
| 176 | right: 0; |
| 177 | padding: 0px 15px 10px 28px; |
| 178 | margin-top: -10px; |
| 179 | font-size: 13px; |
| 180 | line-height: 1.23076923; |
| 181 | text-decoration: none; |
| 182 | |
| 183 | &:before { |
| 184 | position: relative; |
| 185 | top: 18px; |
| 186 | left: -20px; |
| 187 | transition: all 0.1s ease-in-out; |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | .button-primary, |
| 192 | .button-secondary { |
| 193 | text-decoration: none !important; |
| 194 | } |
| 195 | .everest-forms-message__action.submit .button-primary { |
| 196 | background: #7e3bd0; |
| 197 | border-color: #7e3bd0; |
| 198 | } |
| 199 | a.button.button-secondary.evf-dismiss-review-notice, |
| 200 | a.button.button-secondary.evf-have-query { |
| 201 | color: #7e3bd0; |
| 202 | border-color: #7e3bd0; |
| 203 | } |
| 204 | .everest-forms-message__action.submit .button-primary.focus, |
| 205 | .everest-forms-message__action.submit .button-primary.hover, |
| 206 | .everest-forms-message__action.submit .button-primary:focus, |
| 207 | .everest-forms-message__action.submit .button-primary:hover { |
| 208 | background: #532986; |
| 209 | border-color: #532986; |
| 210 | color: #fff; |
| 211 | } |
| 212 | .everest-forms-message--content span.dashicons { |
| 213 | margin: 3px 4px 0 0px; |
| 214 | } |
| 215 | .smile-icon { |
| 216 | background: #e7e94b; |
| 217 | padding: 2px; |
| 218 | font-size: 18px; |
| 219 | border-radius: 50%; |
| 220 | } |
| 221 | } |
| 222 |