about.css
7 years ago
admin-compat.css
7 years ago
admin-form.css
7 years ago
fields.css
7 years ago
form-preview.css
7 years ago
number-spinner.css
7 years ago
order.css
7 years ago
polylang.css
7 years ago
post-editor.css
7 years ago
views.css
7 years ago
wpml.css
7 years ago
form-preview.css
136 lines
| 1 | /** |
| 2 | * Strong Testimonials Default Form template |
| 3 | */ |
| 4 | .strong-form { |
| 5 | margin: 0 auto; |
| 6 | padding: 20px; |
| 7 | } |
| 8 | |
| 9 | .strong-form .form-field { |
| 10 | margin-bottom: 1.5em; |
| 11 | } |
| 12 | |
| 13 | .strong-form .form-field.submit { |
| 14 | margin-bottom: 1em; |
| 15 | padding: 0; |
| 16 | } |
| 17 | |
| 18 | .strong-form .required.symbol:after { |
| 19 | content: '*'; |
| 20 | color: #FF0000; |
| 21 | margin: 0 4px; |
| 22 | } |
| 23 | |
| 24 | .strong-form label { |
| 25 | display: inline-block; |
| 26 | float: none; |
| 27 | } |
| 28 | |
| 29 | .strong-form input[type="text"], |
| 30 | .strong-form input[type="email"], |
| 31 | .strong-form input[type="url"], |
| 32 | .strong-form input[type="file"], |
| 33 | .strong-form select, |
| 34 | .strong-form textarea { |
| 35 | box-sizing: border-box; |
| 36 | display: block; |
| 37 | float: none; |
| 38 | width: 100%; |
| 39 | margin: 3px 0; |
| 40 | padding: 1px 5px; |
| 41 | } |
| 42 | |
| 43 | .strong-form input[type="checkbox"] { |
| 44 | margin-right: 0.5em; |
| 45 | } |
| 46 | |
| 47 | .strong-form input[type="checkbox"] + label { |
| 48 | font-weight: 400; |
| 49 | } |
| 50 | |
| 51 | .strong-form textarea { |
| 52 | height: 12em; |
| 53 | } |
| 54 | |
| 55 | .strong-form span.error, |
| 56 | .strong-form label.error { |
| 57 | display: block; |
| 58 | } |
| 59 | |
| 60 | .strong-form .before { |
| 61 | display: block; |
| 62 | } |
| 63 | |
| 64 | .strong-form .after { |
| 65 | display: block; |
| 66 | } |
| 67 | |
| 68 | input.captcha { |
| 69 | display: block; |
| 70 | width: auto; |
| 71 | } |
| 72 | |
| 73 | img.captcha { |
| 74 | border: 0; |
| 75 | } |
| 76 | |
| 77 | .wpmtst-captcha { |
| 78 | margin-bottom: 1em; |
| 79 | } |
| 80 | |
| 81 | .strong-form label { |
| 82 | font-weight: 700; |
| 83 | } |
| 84 | |
| 85 | .strong-form .form-field .after { |
| 86 | font-style: italic; |
| 87 | } |
| 88 | |
| 89 | .strong-form input.error, |
| 90 | .strong-form textarea.error, |
| 91 | .strong-form select.error { |
| 92 | background: #F9E5E6; |
| 93 | border: 1px solid #E8AAAD; |
| 94 | color: #B50007; |
| 95 | } |
| 96 | |
| 97 | .strong-form span.error, |
| 98 | .strong-form label.error { |
| 99 | color: #B50007; |
| 100 | } |
| 101 | |
| 102 | /* category checklist */ |
| 103 | |
| 104 | .strong-category-list-panel { |
| 105 | margin: 3px 0; |
| 106 | } |
| 107 | |
| 108 | .strong-category-list, |
| 109 | .strong-category-list ul { |
| 110 | list-style-type: none; |
| 111 | } |
| 112 | |
| 113 | .strong-category-list { |
| 114 | margin: 0; |
| 115 | } |
| 116 | |
| 117 | .strong-category-list ul { |
| 118 | margin-left: 20px; |
| 119 | } |
| 120 | |
| 121 | .strong-category-list li { |
| 122 | line-height: normal; |
| 123 | margin-bottom: 0; |
| 124 | } |
| 125 | |
| 126 | .strong-category-list input[type="checkbox"] { |
| 127 | margin: 0; |
| 128 | } |
| 129 | |
| 130 | .strong-category-list label { |
| 131 | font-weight: 400; |
| 132 | white-space: nowrap; |
| 133 | word-wrap: break-word; |
| 134 | } |
| 135 | |
| 136 |