PluginProbe
Customify / 1.2.7.1
Customify v1.2.7.1
2.10.9 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.7.1 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.6.0 1.6.0.1 1.6.5 1.7.0 1.7.1 All 77 releases
customify / css / customizer.css

customizer.css in Customify 1.2.7.1, at css/customizer.css

938 lines 25.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .wp-full-overlay-sidebar * {
2 box-sizing: border-box;
3 }
4
5 .accordion-section-content {
6 overflow: visible;
7 }
8
9 .control-section:not(.control-section-themes) .customize-control {
10 padding: 0px;
11 width: 100%;
12 min-height: auto;
13 }
14
15 #customize-header-actions {
16 border-bottom: 0;
17 }
18
19 .customize-controls-close {
20 width: 48px;
21 }
22
23 #customize-controls .customize-info {
24 margin-bottom: 0;
25 }
26
27 .customize-panel-back, .customize-section-back {
28 height: 74px;
29 }
30
31 #customize-theme-controls .theme * {
32 box-sizing: content-box;
33 }
34
35 #customize-controls .description {
36 font-size: 13px;
37 color: #88B6CE;
38 text-indent: 0;
39 }
40
41 .customize-control-description {
42 margin-top: 6px;
43 }
44
45 .customize-control {
46 margin-bottom: 24px;
47 }
48
49 /**
50 * GENERAL Buttons
51 */
52 .wp-core-ui .button, .wp-core-ui .button-primary, .wp-core-ui .button-secondary {
53 width: auto;
54 padding: 6px 20px;
55 font-size: 13px;
56 font-weight: 400;
57 color: #F5FCFF;
58 line-height: 1.4;
59 text-shadow: none;
60 border: none;
61 background: #AED2E5;
62 box-shadow: 0px 2px 0px 0px #8DBED7;
63 border-radius: 4px;
64 transition: all 0.1s;
65 }
66 .wp-core-ui .button:hover, .wp-core-ui .button-primary:hover, .wp-core-ui .button-secondary:hover {
67 color: white;
68 text-shadow: none;
69 background: #98C6DD;
70 box-shadow: 0px 2px 0px 0px #74A7C2;
71 }
72 .wp-core-ui .button-primary {
73 background: #73C5EE;
74 box-shadow: 0px 2px 0px 0px #57ABD5;
75 }
76 .wp-core-ui .button-primary:hover {
77 background: #58B0DD;
78 box-shadow: 0px 2px 0px 0px #3F8AAF;
79 }
80 .wp-core-ui .reset_section,
81 .wp-core-ui .reset_panel {
82 width: 100%;
83 height: 4em;
84 display: block;
85 margin: 0px 0 25px;
86 }
87 .wp-core-ui .reset_panel {
88 margin-top: 10px;
89 }
90
91 /**
92 * Separators Titles
93 */
94 .separator.label {
95 display: block;
96 font-size: 14px;
97 line-height: 24px;
98 font-weight: 600;
99 }
100
101 .customize-control-title, .separator.label {
102 color: #416B7E;
103 }
104
105 .separator.label {
106 margin-bottom: -3px;
107 margin-bottom: -15px;
108 }
109 .separator.large {
110 margin-top: 12px;
111 font-size: 16px;
112 color: #39474D;
113 }
114
115 .customize-control-color .wp-picker-container .wp-picker-open + .wp-picker-input-wrap:after {
116 content: "";
117 position: absolute;
118 bottom: 100%;
119 right: 12px;
120 border-collapse: separate;
121 width: 0;
122 height: 0;
123 border-width: 0 9px 9px 9px;
124 border-style: solid;
125 border-color: transparent transparent #fff transparent;
126 }
127
128 .customize-control input[type=text],
129 .customize-control input[type=checkbox],
130 .customize-control input[type=password],
131 .customize-control input[type=color],
132 .customize-control input[type=date],
133 .customize-control input[type=datetime],
134 .customize-control input[type=datetime-local],
135 .customize-control input[type=email],
136 .customize-control input[type=month],
137 .customize-control input[type=number],
138 .customize-control input[type=radio],
139 .customize-control input[type=tel],
140 .customize-control input[type=time],
141 .customize-control input[type=url],
142 .customize-control input[type=week],
143 .customize-control input[type=search],
144 .customize-control select,
145 .customize-control textarea,
146 .customize-control input[type="number"].range-value {
147 width: 100%;
148 height: 44px;
149 padding: 10px 14px;
150 background: #FFFFFF;
151 border: 2px solid #B8DAEB;
152 border-radius: 4px;
153 font-size: 14px;
154 line-height: 1.5;
155 color: #416B7E;
156 outline: 0;
157 }
158 .customize-control input[type=text]:focus,
159 .customize-control input[type=checkbox]:focus,
160 .customize-control input[type=password]:focus,
161 .customize-control input[type=color]:focus,
162 .customize-control input[type=date]:focus,
163 .customize-control input[type=datetime]:focus,
164 .customize-control input[type=datetime-local]:focus,
165 .customize-control input[type=email]:focus,
166 .customize-control input[type=month]:focus,
167 .customize-control input[type=number]:focus,
168 .customize-control input[type=radio]:focus,
169 .customize-control input[type=tel]:focus,
170 .customize-control input[type=time]:focus,
171 .customize-control input[type=url]:focus,
172 .customize-control input[type=week]:focus,
173 .customize-control input[type=search]:focus,
174 .customize-control select:focus,
175 .customize-control textarea:focus,
176 .customize-control input[type="number"].range-value:focus {
177 border-color: #73C5EE;
178 box-shadow: none;
179 }
180 .customize-control input[type=text],
181 .customize-control textarea {
182 font-size: 13px;
183 }
184 .customize-control textarea {
185 height: auto;
186 }
187 .customize-control input[type=checkbox],
188 .customize-control input[type=radio] {
189 width: 22px;
190 height: 22px;
191 }
192 .customize-control input[type=checkbox]:checked,
193 .customize-control input[type=radio]:checked {
194 background: #73C5EE;
195 border-color: #5AB9E8;
196 }
197 .customize-control input[type=checkbox]:checked:before,
198 .customize-control input[type=radio]:checked:before {
199 color: white;
200 margin: -1px 0 0 -2px;
201 }
202 .customize-control.customize-control-checkbox label, .customize-control.customize-control-radio label {
203 margin-left: 30px;
204 padding-top: 0;
205 padding-bottom: 0;
206 text-indent: -6px;
207 color: #416B7E;
208 }
209 .customize-control input[type=radio] {
210 border-radius: 50%;
211 }
212 .customize-control input[type=radio]:checked:before {
213 content: none;
214 }
215 .customize-control.customize-control-radio label {
216 margin-top: 12px;
217 }
218 .customize-control select {
219 width: 100%;
220 -webkit-appearance: button;
221 -moz-appearance: none;
222 font-weight: 600;
223 background: white url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjE1cHgiIGhlaWdodD0iOXB4IiB2aWV3Qm94PSIwIDAgMTUgOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJDdXN0b21pZnktQ29weS0yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjU2LjAwMDAwMCwgLTM4Ni4wMDAwMDApIiBmaWxsPSIjOThDNkRFIj4KICAgICAgICAgICAgPGcgaWQ9IkhlYWRlciIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxLjAwMDAwMCwgNDcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyBpZD0iQ29udGVudCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCA3NS4wMDAwMDApIj4KICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iVGl0bGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjAwMDAwMCwgMjE5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iRmllbGQtLS1TZWxlY3QtQ29weSI+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iU2VsZWN0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjAwMDAwMCwgMjcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTI1NC40ODEyLDE4IEwyNTYsMTkuNTE0IEwyNDguNSwyNyBMMjQxLDE5LjUxNCBMMjQyLjUxODgsMTggTDI0OC41LDIzLjk2NzIgTDI1NC40ODEyLDE4IFoiIGlkPSJQYWdlLTEiPjwvcGF0aD4KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) no-repeat;
224 background-position: right 16px top 16px;
225 }
226 .customize-control select[multiple] {
227 background: white;
228 }
229 .customize-control input[type="range"] {
230 width: 65%;
231 }
232 .customize-control input[type="range"] {
233 position: relative;
234 -webkit-appearance: none;
235 width: 210px;
236 height: 22px;
237 overflow: hidden;
238 outline: none;
239 background: none;
240 }
241 .customize-control input[type="range"]:before {
242 content: " ";
243 position: absolute;
244 top: 8px;
245 left: 0;
246 height: 6px;
247 width: 100%;
248 background: #DFE8EF;
249 box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
250 border-radius: 10px;
251 }
252 .customize-control input[type="range"]::-webkit-slider-thumb {
253 -webkit-appearance: none;
254 width: 22px;
255 height: 22px;
256 background: #27ae60;
257 position: relative;
258 z-index: 3;
259 background: #FFFFFF;
260 border: 2px solid #B8DAEB;
261 border-radius: 4px;
262 }
263 .customize-control input[type="range"]::-webkit-slider-thumb:before {
264 content: "..";
265 position: absolute;
266 left: 5px;
267 top: -5px;
268 color: #B8DAEB;
269 font-size: 1em;
270 letter-spacing: 1px;
271 }
272 .customize-control input[type="range"]::-webkit-slider-thumb:after {
273 content: " ";
274 width: 210px;
275 height: 6px;
276 position: absolute;
277 z-index: 1;
278 right: 20px;
279 top: 6px;
280 background: #73C5EE;
281 }
282 .customize-control input[type="number"].range-value {
283 min-width: 40px;
284 max-width: 80px;
285 width: auto;
286 height: 30px;
287 top: -5px;
288 float: right;
289 padding: 4px 0px 5px 0px;
290 margin-left: 10px;
291 font-size: 13px;
292 line-height: 1;
293 text-align: center;
294 }
295 .customize-control input[type=number]::-webkit-inner-spin-button,
296 .customize-control input[type=number]::-webkit-outer-spin-button {
297 -webkit-appearance: none;
298 margin: 0;
299 }
300
301 .customize-control-color {
302 display: block;
303 }
304 .customize-control-color .customize-control-title, .customize-control-color .separator.label {
305 float: left;
306 }
307 .customize-control-color .wp-picker-container {
308 position: relative;
309 float: right;
310 top: -3px;
311 }
312 .customize-control-color .wp-picker-container .wp-picker-holder {
313 position: relative;
314 }
315 .customize-control-color .wp-picker-container .iris-picker {
316 position: absolute;
317 top: 40px;
318 right: 0;
319 z-index: 1000;
320 width: 275px !important;
321 border-top: none;
322 border-color: #DFDFDE;
323 border-radius: 0 0 3px 3px;
324 border: none;
325 background: white;
326 }
327 .customize-control-color .wp-picker-container .iris-picker .iris-square {
328 width: 215px !important;
329 height: 173px !important;
330 margin-right: 0;
331 }
332 .customize-control-color .wp-picker-container .iris-picker .iris-strip {
333 float: right;
334 box-shadow: rgba(0, 0, 0, 0.4) 0 1px 1px inset;
335 }
336 .customize-control-color .wp-picker-container .iris-picker .iris-strip .ui-slider-handle {
337 border-color: #aaa !important;
338 opacity: 1;
339 box-shadow: none;
340 }
341 .customize-control-color .wp-picker-container .iris-picker .iris-palette {
342 width: 24px !important;
343 height: 24px !important;
344 border-radius: 50px;
345 box-shadow: rgba(0, 0, 0, 0.4) 0 1px 1px inset;
346 }
347 .customize-control-color .wp-picker-container .wp-picker-open + .wp-picker-input-wrap {
348 position: absolute;
349 z-index: 1000;
350 top: 35px;
351 right: 0;
352 width: 275px;
353 padding: 9px 12px;
354 background: white;
355 border: none;
356 border-radius: 3px 3px 0 0;
357 }
358 .customize-control-color .wp-picker-container .wp-picker-open + .wp-picker-input-wrap input.wp-color-picker {
359 float: left;
360 width: 100px;
361 font-size: 13px;
362 text-align: left;
363 margin: 0;
364 padding: 6px 12px;
365 height: auto;
366 }
367 .customize-control-color .wp-picker-container .wp-picker-open + .wp-picker-input-wrap input.button {
368 float: right;
369 padding: 4px 12px;
370 height: 30px;
371 }
372 .customize-control-color .wp-color-result {
373 top: 0;
374 height: 30px;
375 width: 40px;
376 margin: 0;
377 padding: 0;
378 border-radius: 4px;
379 background: #2ECC71;
380 border: 2px solid #B8DAEB;
381 box-shadow: none;
382 }
383 .customize-control-color .wp-color-result:after {
384 display: none;
385 }
386
387 #accordion-section-live_css_edit_section .customize-section-title {
388 margin-top: -13px;
389 border-bottom: 1px solid #ddd;
390 }
391 #accordion-section-live_css_edit_section #css_editor {
392 top: 70px;
393 border-top: 10px solid white;
394 overflow: visible;
395 }
396 #accordion-section-live_css_edit_section #css_editor:before {
397 content: "";
398 width: 48px;
399 height: 10px;
400 display: block;
401 background: #e8e8e8;
402 top: -10px;
403 position: absolute;
404 z-index: 10000000;
405 left: 0;
406 }
407 #accordion-section-live_css_edit_section .ace_scroller {
408 padding-left: 10px;
409 }
410
411 .wp-full-overlay.editor_opened {
412 margin-left: 500px;
413 }
414 .wp-full-overlay.editor_opened #customize-controls {
415 width: 500px;
416 }
417 .wp-full-overlay.editor_opened.collapsed #customize-controls {
418 width: 300px;
419 }
420
421 .customize-control-media .current,
422 .customize-control-site_icon .current,
423 li#customize-control-site_logo .current {
424 margin-bottom: 10px;
425 min-height: 44px;
426 background: #F5FCFF;
427 border: 2px solid #B8DAEB;
428 border-radius: 4px;
429 }
430 .customize-control-media .current .container, .customize-control-media .current span,
431 .customize-control-site_icon .current .container,
432 .customize-control-site_icon .current span,
433 li#customize-control-site_logo .current .container,
434 li#customize-control-site_logo .current span {
435 border: none;
436 }
437 .customize-control-media .inner, .customize-control-media .current span,
438 .customize-control-site_icon .inner,
439 .customize-control-site_icon .current span,
440 li#customize-control-site_logo .inner,
441 li#customize-control-site_logo .current span {
442 font-size: 13px;
443 color: #98C6DD;
444 }
445 .customize-control-media .inner,
446 .customize-control-site_icon .inner,
447 li#customize-control-site_logo .inner {
448 line-height: 1.4;
449 }
450 .customize-control-media .thumbnail-image,
451 .customize-control-site_icon .thumbnail-image,
452 li#customize-control-site_logo .thumbnail-image {
453 padding: 14px;
454 text-align: center;
455 }
456 .customize-control-media .thumbnail-image img,
457 .customize-control-site_icon .thumbnail-image img,
458 li#customize-control-site_logo .thumbnail-image img {
459 width: auto;
460 }
461 .customize-control-media .actions,
462 .customize-control-site_icon .actions,
463 li#customize-control-site_logo .actions {
464 margin-bottom: 0;
465 }
466
467 /**
468 * Typography
469 */
470 .customize-control-typography select {
471 margin-bottom: 10px;
472 }
473 .customize-control-typography .description {
474 margin-top: -3px;
475 }
476 .customize-control-typography ul li {
477 width: 100%;
478 margin: 0;
479 }
480
481 /**
482 ** Awesome presets
483 */
484 .default-preset-button {
485 background-color: #F5F6F6;
486 float: right;
487 padding: 1px 8px;
488 border-radius: 3px;
489 border: 1px solid #CBCBCB;
490 margin-right: 4px;
491 font-family: "Open Sans",sans-serif;
492 font-size: 13px;
493 }
494
495 .customize-control-preset .description {
496 margin-right: 5px;
497 font-style: normal;
498 }
499
500 .customify_preset.radio_buttons .customify_radio_button {
501 border: none;
502 display: inline-block;
503 padding: 2px;
504 margin: 3px;
505 position: relative;
506 overflow: hidden;
507 height: auto;
508 }
509 .customify_preset.radio_buttons .customify_radio_button input[type="radio"] {
510 opacity: 0;
511 width: 100%;
512 height: 100%;
513 position: absolute;
514 z-index: 9999;
515 }
516 .customify_preset.radio_buttons .customify_radio_button input[type="radio"]:checked + label {
517 background-color: #ebebeb;
518 }
519 .customify_preset.radio_buttons .customify_radio_button input[type="radio"]:checked + label:before {
520 content: '>';
521 color: inherit;
522 }
523 .customify_preset.radio_buttons .customify_radio_button input[type="radio"]:checked + label:after {
524 content: '<';
525 color: inherit;
526 }
527 .customify_preset.radio_buttons .customify_radio_button input[type="radio"]:checked:before {
528 opacity: 0;
529 }
530 .customify_preset.radio_buttons .customify_radio_button label {
531 position: relative;
532 z-index: 999;
533 border-left: 4px solid;
534 }
535 .customify_preset .awesome_preset {
536 width: 45%;
537 position: relative;
538 display: inline-block;
539 text-align: center;
540 color: white;
541 margin-top: 5px;
542 margin-bottom: 25px;
543 transition: all 0.2s;
544 }
545 .customify_preset .awesome_preset:hover {
546 opacity: 0.9;
547 }
548 .customify_preset .awesome_preset:before {
549 content: '';
550 position: absolute;
551 top: 1px;
552 left: 1px;
553 right: 1px;
554 bottom: 1px;
555 border: 1px solid #FFF;
556 background: transparent;
557 opacity: .5;
558 border-radius: 4px;
559 z-index: 5;
560 }
561 .customify_preset .awesome_preset .preset-wrap .preset-color {
562 height: 128px;
563 border-radius: 4px 4px 0 0;
564 padding: 17px 0 27px;
565 }
566 .customify_preset .awesome_preset .preset-wrap .preset-color .first-font {
567 display: inline-block;
568 width: 100%;
569 font-size: 55px;
570 line-height: 1;
571 }
572 .customify_preset .awesome_preset .preset-wrap .preset-color .secondary-font {
573 display: inline-block;
574 width: 100%;
575 font-size: 20px;
576 line-height: 1;
577 margin-top: 8px;
578 }
579 .customify_preset .awesome_preset .preset-wrap .preset-name {
580 position: relative;
581 font-size: 11px;
582 text-transform: UPPERCASE;
583 border-radius: 0 0 4px 4px;
584 padding: 1px;
585 }
586 .customify_preset .awesome_preset .preset-wrap .preset-name:before {
587 content: '';
588 position: absolute;
589 border-color: inherit;
590 border: 10px solid;
591 border-left-color: transparent;
592 border-right-color: transparent;
593 border-top: transparent;
594 top: -10px;
595 border-bottom-color: inherit;
596 left: 40%;
597 }
598 .customify_preset .awesome_preset:nth-child(odd) {
599 margin-right: 7%;
600 }
601 .customify_preset .awesome_preset input[type=radio] {
602 height: 100%;
603 width: 100%;
604 position: absolute;
605 border: 0;
606 box-shadow: none;
607 color: #006505;
608 background-color: transparent;
609 border-radius: 0;
610 margin: 0;
611 display: inline-block;
612 top: 0;
613 left: 0;
614 z-index: 10;
615 }
616 .customify_preset .awesome_preset input[type=radio]:checked:before {
617 position: absolute;
618 height: 25px;
619 width: 25px;
620 top: -13px;
621 right: -14px;
622 background: #FFF;
623 z-index: 1;
624 }
625 .customify_preset .awesome_preset input[type=radio]:checked:after {
626 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
627 filter: alpha(opacity=0);
628 content: '';
629 position: absolute;
630 width: 26px;
631 height: 26px;
632 border-radius: 50%;
633 top: -5px;
634 right: -5px;
635 z-index: 10;
636 background: #73C5EE url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjEzcHgiIGhlaWdodD0iOXB4IiB2aWV3Qm94PSIwIDAgMTMgOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJDdXN0b21pZnktQ29weSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxLjAwMDAwMCwgLTQwOC4wMDAwMDApIiBmaWxsPSIjRkZGRkZGIj4KICAgICAgICAgICAgPGcgaWQ9IkhlYWRlciIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxLjAwMDAwMCwgNDcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyBpZD0iQ29udGVudCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCA3NS4wMDAwMDApIj4KICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iRmllbGQtLS1DaGVja2JveC1Db3B5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyNy4wMDAwMDAsIDI0OS4wMDAwMDApIj4KICAgICAgICAgICAgICAgICAgICAgICAgPGcgaWQ9IkNoZWNrYm94IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjAwMDAwMCwgMzAuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTAuMDM4NDk1LDE2IEwxNy4xMTYxMzc1LDguOTIxNDg3NiBMMTUuMTk0NjQ5OCw3IEwxMC4wMzg0OTUsMTIuMTU1MDY3NCBMNi45MjE0ODc2LDkuMDM4OTI5OTcgTDUsMTAuOTYwNDE3NiBMMTAuMDM4NDk1LDE2IFoiIGlkPSJQYWdlLTEiPjwvcGF0aD4KICAgICAgICAgICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) no-repeat;
637 background-position: center center;
638 }
639
640 .customify_radio_image {
641 display: inline-block;
642 }
643 .customify_radio_image label {
644 display: block;
645 float: left;
646 margin-right: 10px;
647 position: relative;
648 }
649 .customify_radio_image label input[type=radio] {
650 position: absolute;
651 top: 0;
652 bottom: 0;
653 left: 0;
654 right: 0;
655 width: 100%;
656 height: 100%;
657 visibility: hidden;
658 }
659 .customify_radio_image label input[type=radio] img {
660 cursor: pointer;
661 border: 2px solid transparent;
662 }
663 .customify_radio_image label input[type=radio]:checked + img {
664 border: 3px solid #73C5EE;
665 }
666
667 .customify_ace_editor {
668 display: block;
669 min-height: 200px;
670 border: 1px solid #ddd;
671 }
672
673 .customize-control-custom_background .hide {
674 display: none;
675 }
676 .customize-control-custom_background .upload_button_div {
677 margin: 10px 0;
678 }
679 .customize-control-custom_background .upload_button_div > * {
680 margin-right: 10px;
681 }
682 .customize-control-custom_background .preview_screenshot {
683 text-align: center;
684 margin: 10px 0;
685 }
686 .customize-control-custom_background .preview_screenshot img {
687 border: 2px solid #ccc;
688 }
689
690 #customify_import_demo_data_button {
691 width: 70%;
692 text-align: center;
693 padding: 10px;
694 display: inline-block;
695 height: auto;
696 margin: 0 15% 10% 15%;
697 }
698
699 .import_step_note {
700 margin: 5px;
701 width: 100%;
702 display: inline-block;
703 }
704 .import_step_note:before {
705 content: "\1F449";
706 }
707 .import_step_note.success:before {
708 content: "\1F44D";
709 }
710 .import_step_note.failed:before {
711 content: "\274C";
712 }
713
714 #customize-header-actions {
715 background: #ffffff;
716 border-color: #dfe8ef;
717 }
718
719 .customize-controls-close {
720 color: #7da9c3;
721 background: #ffffff;
722 border-color: #dfe8ef;
723 }
724 .customize-controls-close:focus, .customize-controls-close:hover {
725 background: #f5fcff;
726 }
727
728 .wp-full-overlay-sidebar,
729 .customize-themes-panel {
730 background: #eaf9fe;
731 border-right: 1px solid #dfe8ef;
732 }
733
734 #customize-theme-controls #accordion-section-menu_locations {
735 border-bottom: 1px solid #dfe8ef;
736 }
737
738 #customize-controls #accordion-section-themes > .accordion-section-title {
739 font-weight: 600;
740 border-bottom: 1px solid #dfe8ef;
741 }
742 #customize-controls #accordion-section-themes > .accordion-section-title:hover {
743 background: #fff;
744 }
745 #customize-controls .panel-meta.customize-info {
746 border-bottom: none;
747 }
748
749 #customize-theme-controls .control-section .accordion-section-title {
750 font-weight: 400;
751 border-top: 1px solid #dfe8ef;
752 border-bottom: none;
753 }
754 #customize-theme-controls .control-section:last-of-type > .accordion-section-title {
755 border-bottom: 1px solid #dfe8ef;
756 }
757 #customize-theme-controls .customize-section-title {
758 border-top: 1px solid #dfe8ef;
759 border-bottom: 1px solid #dfe8ef;
760 }
761
762 #customize-controls .control-section .accordion-section-title:focus, #customize-controls .control-section .accordion-section-title:hover, #customize-controls .control-section.open .accordion-section-title, #customize-controls .control-section:hover > .accordion-section-title {
763 color: #056184;
764 background: #f5fcff;
765 }
766
767 [data-balloon] {
768 position: relative;
769 }
770
771 [data-balloon]::before {
772 opacity: 0;
773 pointer-events: none;
774 transition: all .18s ease-out;
775 background: rgba(17, 17, 17, 0.9);
776 border-radius: 4px;
777 color: #fff;
778 content: attr(data-balloon);
779 font-size: 12px;
780 padding: .5em 1em;
781 position: absolute;
782 white-space: nowrap;
783 z-index: 10;
784 }
785
786 [data-balloon]::after {
787 background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
788 background-size: 100% auto;
789 width: 18px;
790 height: 6px;
791 opacity: 0;
792 pointer-events: none;
793 transition: all .18s ease-out;
794 content: '';
795 position: absolute;
796 z-index: 10;
797 }
798
799 [data-balloon]:hover::before, [data-balloon]:hover::after {
800 opacity: 1;
801 pointer-events: auto;
802 }
803
804 [data-balloon][data-balloon-pos="up"]::before {
805 bottom: 100%;
806 left: 50%;
807 margin-bottom: 11px;
808 transform: translate3d(-50%, 10px, 0);
809 transform-origin: top;
810 }
811
812 [data-balloon][data-balloon-pos="up"]::after {
813 bottom: 100%;
814 left: 50%;
815 margin-bottom: 5px;
816 transform: translate3d(-50%, 10px, 0);
817 transform-origin: top;
818 }
819
820 [data-balloon][data-balloon-pos="up"]:hover::before {
821 transform: translate3d(-50%, 0, 0);
822 }
823
824 [data-balloon][data-balloon-pos="up"]:hover::after {
825 transform: translate3d(-50%, 0, 0);
826 }
827
828 [data-balloon][data-balloon-pos='down']::before {
829 left: 50%;
830 margin-top: 11px;
831 top: 100%;
832 transform: translate3d(-50%, -10px, 0);
833 }
834
835 [data-balloon][data-balloon-pos='down']::after {
836 background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(180 18 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
837 background-size: 100% auto;
838 width: 18px;
839 height: 6px;
840 left: 50%;
841 margin-top: 5px;
842 top: 100%;
843 transform: translate3d(-50%, -10px, 0);
844 }
845
846 [data-balloon][data-balloon-pos='down']:hover::before {
847 transform: translate3d(-50%, 0, 0);
848 }
849
850 [data-balloon][data-balloon-pos='down']:hover::after {
851 transform: translate3d(-50%, 0, 0);
852 }
853
854 [data-balloon][data-balloon-pos='left']::before {
855 margin-right: 11px;
856 right: 100%;
857 top: 50%;
858 transform: translate3d(10px, -50%, 0);
859 }
860
861 [data-balloon][data-balloon-pos='left']::after {
862 background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(-90 18 18)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
863 background-size: 100% auto;
864 width: 6px;
865 height: 18px;
866 margin-right: 5px;
867 right: 100%;
868 top: 50%;
869 transform: translate3d(10px, -50%, 0);
870 }
871
872 [data-balloon][data-balloon-pos='left']:hover::before {
873 transform: translate3d(0, -50%, 0);
874 }
875
876 [data-balloon][data-balloon-pos='left']:hover::after {
877 transform: translate3d(0, -50%, 0);
878 }
879
880 [data-balloon][data-balloon-pos='right']::before {
881 left: 100%;
882 margin-left: 11px;
883 top: 50%;
884 transform: translate3d(-10px, -50%, 0);
885 }
886
887 [data-balloon][data-balloon-pos='right']::after {
888 background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(90 6 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
889 background-size: 100% auto;
890 width: 6px;
891 height: 18px;
892 left: 100%;
893 margin-left: 5px;
894 top: 50%;
895 transform: translate3d(-10px, -50%, 0);
896 }
897
898 [data-balloon][data-balloon-pos='right']:hover::before {
899 transform: translate3d(0, -50%, 0);
900 }
901
902 [data-balloon][data-balloon-pos='right']:hover::after {
903 transform: translate3d(0, -50%, 0);
904 }
905
906 [data-balloon][data-balloon-length='small']::before {
907 white-space: normal;
908 width: 80px;
909 }
910
911 [data-balloon][data-balloon-length='medium']::before {
912 white-space: normal;
913 width: 150px;
914 }
915
916 [data-balloon][data-balloon-length='large']::before {
917 white-space: normal;
918 width: 260px;
919 }
920
921 [data-balloon][data-balloon-length='xlarge']::before {
922 white-space: normal;
923 width: 380px;
924 }
925
926 @media screen and (max-width: 768px) {
927 [data-balloon][data-balloon-length='xlarge']::before {
928 white-space: normal;
929 width: 90vw;
930 }
931 }
932 [data-balloon][data-balloon-length='fit']::before {
933 white-space: normal;
934 width: 100%;
935 }
936
937 /*# sourceMappingURL=customizer.css.map */
938