libs
7 months ago
clearfy-base.css
7 months ago
clearfy-base.css.map
4 years ago
clearfy-base.less
7 months ago
components.css
7 months ago
components.css.map
1 year ago
components.less
7 months ago
license-manager.css
7 months ago
page-setup.css
7 months ago
page-setup.css.map
4 years ago
page-setup.less
3 years ago
clearfy-base.less
266 lines
| 1 | /** |
| 2 | * Базовые стили для все� |
| 3 | копомпонентов |
| 4 | |
| 5 | * @sicne 2.0.5 |
| 6 | */ |
| 7 | |
| 8 | .button(@backgroundColor: #e8e8e8,@color:#353535, @boxShadow:rgba(0, 0, 0, 0.2)) { |
| 9 | cursor: pointer; |
| 10 | line-height: 16px; |
| 11 | font-size: 13px; |
| 12 | font-weight: 600; |
| 13 | padding: 12px 20px; |
| 14 | text-align: center; |
| 15 | text-decoration: none; |
| 16 | text-transform: uppercase; |
| 17 | border-radius: 2px; |
| 18 | -moz-border-radius: 2px; |
| 19 | -webkit-border-radius: 2px; |
| 20 | color: @color; |
| 21 | background: @backgroundColor; |
| 22 | box-shadow: 0 1px 0 @boxShadow; |
| 23 | -moz-box-shadow: 0 1px 0 @boxShadow; |
| 24 | -webkit-box-shadow: 0 1px 0 @boxShadow; |
| 25 | &:active { |
| 26 | box-shadow: inset 0 1px 0 @boxShadow; |
| 27 | -moz-box-shadow: inset 0 1px 0 @boxShadow; |
| 28 | -webkit-box-shadow: inset 0 1px 0 @boxShadow; |
| 29 | } |
| 30 | &:focus { |
| 31 | outline: none; |
| 32 | border: 0; |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | #WBCR { |
| 37 | .premium-label(@position: relative, @positionTop:-8px, @positionLeft:-10px, @positionRight:auto) { |
| 38 | display: inline-block; |
| 39 | position: @position; |
| 40 | content: 'PRO'; |
| 41 | background: #ff5722; |
| 42 | border-radius: 4px; |
| 43 | color: #fff; |
| 44 | font-size: 10px; |
| 45 | line-height: 1; |
| 46 | font-style: normal; |
| 47 | padding: 4px 6px; |
| 48 | margin-left: 4px; |
| 49 | vertical-align: top; |
| 50 | top: @positionTop; |
| 51 | left: @positionLeft; |
| 52 | right: @positionRight; |
| 53 | z-index: 11; |
| 54 | } |
| 55 | |
| 56 | .wbcr-factory-templates-000-impressive-page-template { |
| 57 | .factory-checkbox.wbcr-factory-clearfy-icon-pro:after { |
| 58 | .premium-label(); |
| 59 | } |
| 60 | |
| 61 | .wbcr-factory-templates-000-multisite-suggetion { |
| 62 | padding: 30px 80px; |
| 63 | |
| 64 | h3 { |
| 65 | margin: 0 0 20px; |
| 66 | } |
| 67 | |
| 68 | .wbcr-factory-inner-contanier { |
| 69 | border: 2px dashed #8bc34a; |
| 70 | background: #fff; |
| 71 | padding: 20px; |
| 72 | } |
| 73 | |
| 74 | .wbcr-factory-activate-premium { |
| 75 | display: inline-block; |
| 76 | .button(); |
| 77 | } |
| 78 | |
| 79 | .wbcr-factory-purchase-premium { |
| 80 | display: inline-block; |
| 81 | .button(#fdd868, #755c0e, rgba(60, 45, 2, 0.31)); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | .wbcr-factory-right-sidebar-section { |
| 86 | .wbcr-factory-templates-000-pro-suggettion { |
| 87 | background: #fff; |
| 88 | color: #353535; |
| 89 | font-weight: 600; |
| 90 | border: 2px dashed #8bc34a; |
| 91 | |
| 92 | h3 { |
| 93 | margin: 0 0 20px; |
| 94 | padding: 10px 0; |
| 95 | text-align: center; |
| 96 | border-bottom: 2px solid #e6e6e6; |
| 97 | color: #636363; |
| 98 | font-size: 17px; |
| 99 | font-weight: 600; |
| 100 | vertical-align: middle; |
| 101 | text-transform: uppercase; |
| 102 | } |
| 103 | |
| 104 | ul { |
| 105 | //list-style: circle; |
| 106 | position: relative; |
| 107 | margin-bottom: 20px; |
| 108 | |
| 109 | li { |
| 110 | font-size: 15px; |
| 111 | padding: 7px; |
| 112 | padding-left: 20px; |
| 113 | |
| 114 | &:before { |
| 115 | } |
| 116 | |
| 117 | &:before { |
| 118 | content: " "; |
| 119 | display: inline-block; |
| 120 | width: 0.4em; |
| 121 | height: 0.7em; |
| 122 | border: solid #8bc34a; |
| 123 | border-width: 0 0.2em 0.2em 0; |
| 124 | left: 0; |
| 125 | margin-right: 10px; |
| 126 | -webkit-transform: rotate(45deg); |
| 127 | -moz-transform: rotate(45deg); |
| 128 | -o-transform: rotate(45deg); |
| 129 | transform: rotate(45deg); |
| 130 | } |
| 131 | |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | .wbcr-factory-purchase-premium { |
| 136 | display: block; |
| 137 | .button(); |
| 138 | } |
| 139 | } |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | /* subscribe widget */ |
| 144 | |
| 145 | .wbcr-factory-subscribe-widget { |
| 146 | margin-top: 0 !important; |
| 147 | border: 1px solid rgba(0, 0, 0, 0.1); |
| 148 | border-radius: 5px; |
| 149 | |
| 150 | |
| 151 | &__field { |
| 152 | margin: 10px auto; |
| 153 | display: block; |
| 154 | width: 100%; |
| 155 | text-align: center; |
| 156 | box-shadow: 0 0 0 transparent; |
| 157 | border-radius: 4px; |
| 158 | border: 1px solid #d6d4d4; |
| 159 | background-color: #fff; |
| 160 | color: #32373c; |
| 161 | } |
| 162 | |
| 163 | &__button { |
| 164 | display: block; |
| 165 | width: 100%; |
| 166 | text-align: center; |
| 167 | margin: 14px 0 0; |
| 168 | box-shadow: none; |
| 169 | min-width: 100px; |
| 170 | background-color: #ff5722; |
| 171 | border: 0; |
| 172 | color: #fff; |
| 173 | |
| 174 | &:active, &:focus { |
| 175 | box-shadow: inset -1px 1px 1px #222; |
| 176 | outline: none; |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | &__msgbox { |
| 181 | font-weight: bold; |
| 182 | } |
| 183 | |
| 184 | &__text { |
| 185 | display: none; |
| 186 | padding: 10px 14px; |
| 187 | margin: 0 0 10px; |
| 188 | |
| 189 | } |
| 190 | |
| 191 | &__text--success { |
| 192 | background: #d6efbe; |
| 193 | color: #61824b; |
| 194 | } |
| 195 | |
| 196 | &__text--success2 { |
| 197 | background: #ffe0b3; |
| 198 | } |
| 199 | |
| 200 | &__text--error { |
| 201 | background: #f1b1b6; |
| 202 | } |
| 203 | |
| 204 | &__checkbox { |
| 205 | margin: 0 10px 0 0; |
| 206 | } |
| 207 | |
| 208 | &__checkbox-label { |
| 209 | font-weight: normal; |
| 210 | color: #8c8888; |
| 211 | font-size: 12px; |
| 212 | } |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | @media screen and (max-width: 1550px) { |
| 217 | #WBCR { |
| 218 | .wbcr-factory-templates-000-impressive-page-template { |
| 219 | .wbcr-factory-templates-000-multisite-pro-suggetion { |
| 220 | padding: 10px 80px; |
| 221 | } |
| 222 | |
| 223 | .wbcr-factory-right-sidebar-section { |
| 224 | .wbcr-factory-templates-000-pro-suggettion { |
| 225 | padding: 10px; |
| 226 | |
| 227 | h3 { |
| 228 | margin: 0 0 20px; |
| 229 | padding: 10px 0; |
| 230 | font-size: 13px; |
| 231 | font-weight: 600; |
| 232 | } |
| 233 | |
| 234 | ul { |
| 235 | margin-bottom: 20px; |
| 236 | |
| 237 | li { |
| 238 | font-size: 13px; |
| 239 | padding: 2px; |
| 240 | padding-left: 10px; |
| 241 | |
| 242 | &:before { |
| 243 | width: 0.4em; |
| 244 | height: 0.7em; |
| 245 | border-width: 0 0.2em 0.2em 0; |
| 246 | left: 0; |
| 247 | margin-right: 10px; |
| 248 | } |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | .wbcr-factory-purchase-premium { |
| 253 | font-weight: 700; |
| 254 | line-height: 16px; |
| 255 | font-size: 12px; |
| 256 | padding: 8px 12px; |
| 257 | border-radius: 2px; |
| 258 | -moz-border-radius: 2px; |
| 259 | -webkit-border-radius: 2px; |
| 260 | } |
| 261 | } |
| 262 | } |
| 263 | } |
| 264 | } |
| 265 | } |
| 266 |