PluginProbe
Add Custom Codes – Insert Header, Footer, Custom PHP Snippets, CSS, Javascript / trunk
Add Custom Codes – Insert Header, Footer, Custom PHP Snippets, CSS, Javascript vtrunk
trunk 1.0 2.0 3.0 3.5 4.0 4.1 4.2 4.3 4.4 4.5 4.6 4.7 4.71 4.80 5.0
add-custom-codes / assets / css / style43.css

style43.css in Add Custom Codes – Insert Header, Footer, Custom PHP Snippets, CSS, Javascript trunk, at assets/css/style43.css

577 lines 10.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* all styles */
2 .accodes_cols #submit {
3 border: none;
4 border-radius: 0px;
5 padding: 5px 21px;
6 border-radius: 40px;
7 background: #1799cb;
8 }
9 .accodes_cols #submit:hover {
10 background: #333;
11 }
12 .accodes_cols p,
13 .accodes_ind_field p
14 {
15 color: #797979;
16 }
17 .accodes_cols em,
18 .accodes_ind_field em
19 {
20 color: #3e3636;
21 }
22 .accodes_cols .CodeMirror.CodeMirror-wrap,
23 .accodes_ind_field .CodeMirror.CodeMirror-wrap
24 {
25 border: 1px solid #e6e6e6;
26 min-height: 100px;
27 height: auto;
28 overflow-y:scroll;
29 }
30 .accodes_cols .CodeMirror.CodeMirror-wrap .CodeMirror-scroll
31 {
32 max-height:397px;
33 }
34 .accodes_ind_field .CodeMirror.CodeMirror-wrap .CodeMirror-scroll {
35 max-height: 250px;
36 }
37 /* global form */
38 .accodes_cols {
39 width: 65%;
40 float: left;
41 background: #fff;
42 padding: 20px 30px;
43 box-sizing: border-box;
44 border: 1px solid #d5edf1;
45 }
46
47 .accodes_cols textarea {
48 height:auto;
49 width:100%;
50 max-width:500px;
51 }
52 .accodes_cols2 {
53 width:30%;
54 float:right;
55 padding-top:70px;
56 }
57 .accodes-spacer {
58 background: #dce4e6;
59 width: 100%;
60 height: 1px;
61 margin: 20px 0px;
62 }
63 @media all and (max-width:600px)
64 {
65 .accodes_cols, .accodes_cols2
66 {
67 width:100%;
68 float:none;
69 margin-bottom:20px;
70 }
71 }
72 .accodes_box {
73 padding: 20px;
74 background: #fff;
75 margin-bottom:20px;
76 text-align:center;
77 }
78 .accodes_box h3 {
79 color: #0b7c8e;
80 }
81 .accodes_donate {
82 color: #000 !important;
83 text-align: center;
84 text-decoration: none;
85 background: #ffcf15;
86 padding: 10px 10px;
87 font-size: 16px;
88 font-weight: normal;
89 display: inline-block;
90 width: 200px;
91 border-radius: 20px;
92 margin-bottom: 20px;
93 margin-top: 10px;
94 }
95 .accodes_donate.blue {
96 background: #13acf7;
97 color: #fff !important;
98 margin-top: 20px;
99 }
100 /* Single page meta */
101 #_accodes_metabox.postbox .inside {
102 background: #fff;
103 padding: 20px 30px;
104 box-sizing: border-box;
105 margin-top:0px;
106 }
107 .accodes_ind_field label {
108 font-size:14px;
109 font-weight:bold;
110 margin-top:20px;
111 display:block;
112 }
113 .accodes_ind_field .first-label {
114 margin-top:0px;
115 }
116 .accodes_ind_field textarea {
117 width:100%;
118 min-height:150px;
119 }
120 .accodes-checkbox-label {
121 margin-top: 0px !important;
122 font-weight: 400 !important;
123 color: #278291;
124 }
125 .accodes-label.green-label {
126 font-size: 20px;
127 font-weight: 400;
128 color: #0b7c8e;
129 }
130 .acc-ind-col-1 {
131 width:100%;
132 float:none;
133 }
134 .acc-ind-col-2 p {
135 text-align: center;
136 padding-top: 30px;
137 }
138 .acc-ind-col-2 span{
139 color: #18ae52;
140 }
141 .acc-ind-col-2 a
142 {
143 color: #1dc2dd;
144 text-decoration: none;
145 font-weight: 500;
146 }
147
148 .accodes-taxonomy-edit
149 {
150 background: #fff;
151 padding: 20px;
152 border: 1px solid #ccc;
153 }
154
155
156
157 /*custom snippets */
158 .accodes-switch {
159 position: relative;
160 display: inline-block;
161 width: 46px;
162 height: 24px;
163 }
164
165 .accodes-switch input {
166 opacity: 0;
167 width: 0;
168 height: 0;
169 }
170
171 .accodes-switch .slider {
172 position: absolute;
173 cursor: pointer;
174 top: 0; left: 0; right: 0; bottom: 0;
175 background-color: #ccc;
176 transition: .4s;
177 border-radius: 34px;
178 }
179
180 .accodes-switch .slider:before {
181 position: absolute;
182 content: "";
183 height: 18px;
184 width: 18px;
185 left: 3px;
186 bottom: 3px;
187 background-color: white;
188 transition: .4s;
189 border-radius: 50%;
190 }
191
192 .accodes-switch input:checked + .slider {
193 background-color: #4caf50;
194 }
195
196 .accodes-switch input:checked + .slider:before {
197 transform: translateX(22px);
198 }
199
200
201 /* Button-style radio groups */
202 .accodes-radio-group {
203 display: flex;
204 flex-wrap: wrap;
205 gap: 10px;
206 margin-bottom: 15px;
207 }
208 .accodes-radio-group label {
209 position: relative;
210 cursor: pointer;
211 background:#ccc;
212 }
213 .accodes-radio-group input[type="radio"] {
214 display: none;
215 }
216 .accodes-radio-group span {
217 display: inline-block;
218 padding:
219 7px 8px;
220 border:
221 1px solid #afafaf;
222 border-radius:
223 4px;
224 background:
225 #fff;
226 transition:
227 all 0.2s ease;
228 font-size: 12px;
229 }
230 .accodes-radio-group input[type="radio"]:checked + span {
231 background: #0073aa;
232 color: #fff;
233 border-color: #0073aa;
234 }
235 .accodes-group {
236 margin-bottom: 20px;
237 }
238
239 .accodes-meta-wrapper {
240 padding: 5px 20px 20px 20px;
241 background: #fff;
242 border: 1px solid #ccd0d4;
243 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
244 margin-bottom: 50px;
245 margin-top: 20px;
246 }
247 p.accodes-snippet-label
248 {
249 font-size:15px;
250 color: #0b7c8e;
251 }
252 .accodes-radio-group.accodes-tab-style
253 {
254 margin-bottom: 0px;
255 border-bottom: 1px solid #c9bdbd;
256 padding-left: 29px;
257 }
258 .accodes-radio-group.accodes-tab-style label div {
259 border-bottom: 0px;
260 border-radius: 0px;
261 background: #efefef;
262 padding: 8px 26px;
263 font-size: 15px;
264 }
265 .accodes-radio-group.accodes-tab-style label div:hover {
266 background:#e3e2e2;
267 color: #141414;
268 }
269 .accodes-radio-group.accodes-tab-style label span
270 {
271 display: inline-block;
272 padding: 4px 8px;
273 border-radius: 4px;
274 background: #fff;
275 transition: all 0.2s ease;
276 font-size: 11px;
277 color: #167b8b;
278 border: 1px solid #eeecec;
279 }
280 .accodes-radio-group.accodes-tab-style label span.label-php
281 {
282 color: #cf2edd !important;
283 }
284 .accodes-radio-group.accodes-tab-style label span.label-html
285 {
286 color: #20bb64 !important;
287 }
288 .accodes-radio-group.accodes-tab-style label span.label-js
289 {
290 color: #f0b400 !important;
291 }
292 .accodes-radio-group.accodes-tab-style label span.label-css
293 {
294 color: #2b99d6 !important;
295 }
296 .accodes-radio-group.accodes-tab-style input[type="radio"]:checked + div {
297 background: #fff;
298 color: #000;
299 border: 1px solid #adadad;
300 border-bottom: 0px;
301 margin-bottom: -1px;
302 }
303 .accodes-group.above-accodes-tab
304 {
305 margin-bottom:0px;
306 }
307 .postbox.accodes-meta-wrapper .CodeMirror-scroll
308 {
309 padding-top:10px;
310 }
311 .menu-icon-accodes_snippets .wp-menu-image img
312 {
313 max-width:21px;
314 opacity: 1 !important;
315 }
316
317 .accodes-badge {
318 display: inline-block;
319 padding: 2px 8px;
320 font-size: 11px;
321 font-weight: 600;
322 color: #fff;
323 border-radius: 4px;
324 text-transform: uppercase;
325 line-height: 1.4;
326 }
327
328 .accodes-badge.php {
329 background-color: #cf2edd;
330 }
331
332 .accodes-badge.css {
333 background-color: #2b99d6;
334 }
335
336 .accodes-badge.js {
337 background-color: #f0b400;
338 }
339
340 .accodes-badge.html {
341 background-color: #20bb64;
342 }
343
344
345 .accodes-toggle-wrapper {
346 display: flex;
347 align-items: center;
348 gap: 10px;
349 margin-top: 40px;
350 margin-bottom: 25px;
351 }
352
353 .accodes-switch {
354 position: relative;
355 display: inline-block;
356 width: 48px;
357 height: 24px;
358 }
359
360 .accodes-switch input {
361 opacity: 0;
362 width: 0;
363 height: 0;
364 }
365
366 .accodes-switch .slider {
367 position: absolute;
368 cursor: pointer;
369 top: 0;
370 left: 0;
371 right: 0;
372 bottom: 0;
373 background-color: #ccc;
374 transition: .3s;
375 border-radius: 24px;
376 }
377
378 .accodes-switch .slider:before {
379 position: absolute;
380 content: "";
381 height: 18px;
382 width: 18px;
383 left: 3px;
384 bottom: 3px;
385 background-color: white;
386 transition: .3s;
387 border-radius: 50%;
388 }
389
390 .accodes-switch input:checked + .slider {
391 background-color: #4cd964;
392 }
393
394 .accodes-switch input:checked + .slider:before {
395 transform: translateX(24px);
396 }
397
398 .accodes-toggle-label {
399 cursor: pointer;
400 font-weight: bold;
401 }
402
403 .accodes-group .location-options label
404 {
405 margin-right: 25px;
406 }
407
408 /* snippet shortcode */
409 .accodes-shortcode-pending {
410 color: #666;
411 background: #fefefe;
412 border: 1px dashed #ccc;
413 padding: 12px;
414 border-radius: 5px;
415 margin-top: 10px;
416 }
417
418 /*
419 .accodes-tag {
420 background: #f3f4f6;
421 color: #333;
422 padding: 3px 10px;
423 border-radius: 20px;
424 margin: 3px;
425 display: inline-block;
426 font-size: 13px;
427 position: relative;
428 }
429 .accodes-tag-remove {
430 margin-left: 6px;
431 cursor: pointer;
432 color: #cc0000;
433 }
434 #accodes-tags-wrapper {
435 display: flex;
436 flex-wrap: wrap;
437 gap: 6px;
438 background: #fff;
439 padding: 5px;
440 border: 1px solid #ccc;
441 border-radius: 4px;
442 max-width: 600px;
443 }
444 #accodes_snippet_tags_input {
445 border: none;
446 outline: none;
447 flex: 1;
448 min-width: 120px;
449 }
450 #accodes-tags-suggestions {
451 background: #fff;
452 border: 1px solid #ccc;
453 max-width: 600px;
454 padding: 5px;
455 margin-top: 2px;
456 position: absolute;
457 z-index: 9999;
458 }
459 .accodes-suggestion-item {
460 padding: 5px 10px;
461 cursor: pointer;
462 }
463 .accodes-suggestion-item:hover {
464 background: #efefef;
465 } */
466
467 /* snippet tags - start */
468 .accodes-tag-chip {
469 background: #e2f0ff;
470 padding: 6px 10px;
471 margin: 4px;
472 border-radius: 20px;
473 display: inline-block;
474 font-size: 13px;
475 color: #0073aa;
476 position: relative;
477 }
478
479 .accodes-tag-chip .remove-tag {
480 margin-left: 8px;
481 color: #777;
482 cursor: pointer;
483 }
484 .wp-tag-suggestion {
485 background: #fff;
486 border: 1px solid #ccc;
487 z-index: 9999;
488 }
489
490 /* snippet tags - end */
491
492 /* Style each tag badge in default listings column */
493 .column-taxonomy-accodes_tag a {
494 display: inline-block;
495 background: #f3f4f6;
496 color: #5d666e;
497 padding: 3px 8px;
498 margin: 2px 8px 2px 0;
499 margin-right: 3px;
500 border-radius: 7px;
501 font-size: 11px;
502 text-decoration: none;
503 border: 1px solid #80abd6;
504 transition: all 0.2s ease;
505 }
506 .column-taxonomy-accodes_tag a:hover {
507 color: #fff;
508 background: #80abd6;
509 }
510 .column-taxonomy-accodes_tag a + a::before {
511 content: '';
512 }
513 .column-taxonomy-accodes_tag {
514 white-space: normal;
515 }
516 .accodes_tags_list
517 {
518 padding-top: 5px;
519 }
520 .white-import-export{
521 background:
522 #fff;
523 padding:
524 20px 20px 30px 30px;
525 margin-top: 30px;
526 max-width: 500px;
527 border:
528 1px solid #b6b6b6;
529 border-radius:
530 5px;
531 margin-left: 15px;
532 }
533 .accodes-export-box .button.button-primary
534 {
535 background:
536 #239bbf;
537 border-color:
538 #1e8fb0;
539 }
540 .accodes-theme-toggle
541 {
542 margin-top: 24px;
543 }
544 .accodes-theme-toggle span.accodes-toggle-label {
545 display: inline;
546 margin-left: 12px;
547 margin-right: 10px;
548 }
549 .accodes-radio-group.accodes-tab-style.darkmode input[type="radio"]:checked + div {
550 background: #263339;
551 color: #fff;
552 }
553 .accodes-error-msg {
554 margin: 15px 0;
555 padding: 12px 16px;
556 border-left: 4px solid #dc3232;
557 background-color: #fde2e2;
558 color: #a30000;
559 font-weight: 500;
560 border-radius: 4px;
561 font-size: 14px;
562 line-height: 1.5;
563 }
564 .accodes-health-warning {
565 display: inline-block;
566 width: 16px;
567 height: 16px;
568 background: #dc3232;
569 color: #fff;
570 font-size: 11px;
571 font-weight: bold;
572 text-align: center;
573 line-height: 16px;
574 border-radius: 50%;
575 cursor: default;
576 }
577