admin.css
3 years ago
bootstrap.min.css
3 years ago
graphics-admin.css
3 years ago
graphics-front.css
3 years ago
monolith.min.css
3 years ago
quill.css
3 years ago
wpf-common.css
3 years ago
wpf-icons.css
3 years ago
wpf-login.css
3 years ago
graphics-admin.css
313 lines
| 1 | /*================Graphics Screen================*/ |
| 2 | |
| 3 | #all_graphics_list_container ::after, #all_graphics_list_container ::before { |
| 4 | box-sizing: unset !important; |
| 5 | } |
| 6 | |
| 7 | .wpf_upload_image_button .wpf_field_input { |
| 8 | border-width: 2px; |
| 9 | border-style: dashed; |
| 10 | border-color: #ccc; |
| 11 | margin-bottom: 10px; |
| 12 | position: relative; |
| 13 | } |
| 14 | .wpf_upload_image_button .wpf_field_input input[type=file] { |
| 15 | background: transparent; |
| 16 | border: 0; |
| 17 | padding: 15px 15px 15px 70px; |
| 18 | height: 58px; |
| 19 | opacity: 0; |
| 20 | border-radius: 0; |
| 21 | width: 100%; |
| 22 | } |
| 23 | #wpf_graphics_popup_form .wpf_upload_image_button .wpf_field_label { |
| 24 | display: block; |
| 25 | position: absolute; |
| 26 | left: 0; |
| 27 | top: 20%; |
| 28 | transform: translateY(-50%); |
| 29 | margin-bottom: 0; |
| 30 | color: #363d4d; |
| 31 | font-size: 16px; |
| 32 | font-family: 'Roboto', sans-serif; |
| 33 | font-weight: 700; |
| 34 | } |
| 35 | #wpf_graphics_popup_form .wpf_upload_image_button .wpf_show { |
| 36 | display: block; |
| 37 | } |
| 38 | #wpf_graphics_popup_form input#upload_image_button { |
| 39 | border: none; |
| 40 | color: #69dc9e; |
| 41 | background-color: transparent; |
| 42 | height: auto; |
| 43 | padding-left: 70px; |
| 44 | font-size: 16px; |
| 45 | font-family: 'Roboto', sans-serif; |
| 46 | font-weight: 400; |
| 47 | width: 100%; |
| 48 | padding: 12px 15px 12px 70px; |
| 49 | } |
| 50 | span.wpf_preview_graphics_img { |
| 51 | color: #3ed696; |
| 52 | font-weight: 700; |
| 53 | } |
| 54 | span.wpf_preview_graphics_img:before { |
| 55 | content: ""; |
| 56 | background-color: #3ed696; |
| 57 | color: #fff; |
| 58 | width: 32px; |
| 59 | height: 32px; |
| 60 | display: block; |
| 61 | position: absolute; |
| 62 | top: 24px; |
| 63 | right: 10px; |
| 64 | border-radius: 50%; |
| 65 | } |
| 66 | span.wpf_preview_graphics_img:after { |
| 67 | content: ""; |
| 68 | display: block; |
| 69 | box-sizing: border-box; |
| 70 | position: absolute; |
| 71 | right: 26px; |
| 72 | top: 22px; |
| 73 | width: 11px; |
| 74 | height: 20px; |
| 75 | border-width: 0 4px 4px 0; |
| 76 | border-style: solid; |
| 77 | transform-origin: bottom left; |
| 78 | transform: rotate(45deg); |
| 79 | color: #fff; |
| 80 | } |
| 81 | #wpf_graphics .media-modal.wp-core-ui { |
| 82 | width: 50%; |
| 83 | margin: 0px auto; |
| 84 | } |
| 85 | .wpf_inner_container { |
| 86 | text-align: center; |
| 87 | margin-top: 10px; |
| 88 | } |
| 89 | #wpf_graphics_popup_form{display: none;} |
| 90 | .wpf_create_graphics_buttons { |
| 91 | float: right; |
| 92 | margin-top: -3px; |
| 93 | } |
| 94 | |
| 95 | div#wpf_graphics_popup_form { |
| 96 | position: fixed; |
| 97 | z-index: 9999; |
| 98 | top: 0; |
| 99 | left: 0; |
| 100 | width: 100%; |
| 101 | height: 100%; |
| 102 | overflow: auto; |
| 103 | background-color: rgba(255, 255, 255, 0.85); |
| 104 | } |
| 105 | .graphics-modal-content { |
| 106 | width: 550px; |
| 107 | max-width: 88%; |
| 108 | margin: auto; |
| 109 | margin-top: 10%; |
| 110 | box-shadow: 0em 0em 3em 0em rgba(0,0,0,0.13); |
| 111 | padding: 25px; |
| 112 | border-radius: 5px; |
| 113 | border: 1px solid #efefef; |
| 114 | background-color: #fff !important; |
| 115 | font-family: arial, sans-serif; |
| 116 | font-size: 14px; |
| 117 | } |
| 118 | #wpf_graphics_popup_form .wpf_field_label { |
| 119 | display: none; |
| 120 | } |
| 121 | .wpf-graphics-modal_title { |
| 122 | color: #363d4d; |
| 123 | border-radius: 0.25em; |
| 124 | font-family: 'Roboto', sans-serif; |
| 125 | font-weight: 700; |
| 126 | font-size: 165%; |
| 127 | display: inline-block; |
| 128 | } |
| 129 | button.graphics-modal-close { |
| 130 | font-size: 30px; |
| 131 | margin-top: -7px; |
| 132 | color: #cd2653; |
| 133 | float: right; |
| 134 | font-weight: 700; |
| 135 | line-height: 1; |
| 136 | border: none; |
| 137 | background-color: transparent; |
| 138 | cursor: pointer; |
| 139 | } |
| 140 | .wpf_upload_image_button.graphics_fields { |
| 141 | position: relative; |
| 142 | } |
| 143 | .wpf_upload_image_button.graphics_fields i { |
| 144 | font-size: 50px; |
| 145 | position: absolute; |
| 146 | left: 10px; |
| 147 | top: 15px; |
| 148 | color: var(--main-wpf-color); |
| 149 | } |
| 150 | .wpf_upload_image_button.graphics_fields i.gg-image { |
| 151 | margin-left: 13px; |
| 152 | margin-top: 6px; |
| 153 | } |
| 154 | .graphic.wpfeedback_image-preview-wrapper { |
| 155 | display: none; |
| 156 | } |
| 157 | span.wpf_error,span.wpf_success{ |
| 158 | display: none; |
| 159 | } |
| 160 | span.wpf_error{ |
| 161 | font-size: 12px; |
| 162 | font-weight: bold; |
| 163 | color: #cc1816; |
| 164 | } |
| 165 | .wpf_field_input input, .wpf_field_input textarea { |
| 166 | width: 100%; |
| 167 | margin: 0px auto !important; |
| 168 | display: flex !important; |
| 169 | } |
| 170 | .wpf_inner_container .graphics_fields { |
| 171 | padding: 10px 0px; |
| 172 | } |
| 173 | .wpf_inner_container .wpf_field_label { |
| 174 | margin-bottom: 10px; |
| 175 | } |
| 176 | span.wpf_success { |
| 177 | display: none; |
| 178 | font-size: 12px; |
| 179 | font-weight: bold; |
| 180 | color: #008000; |
| 181 | } |
| 182 | input.wpf_graphics.wpf_button { |
| 183 | width: 100%; |
| 184 | } |
| 185 | textarea#wpfeedback_graphics_excerpt { |
| 186 | min-height: 75px; |
| 187 | border-radius: 5px; |
| 188 | } |
| 189 | #all_graphics_list_container{ |
| 190 | width: calc(100% - 50px); |
| 191 | min-height: 75vh; |
| 192 | margin-right: auto; |
| 193 | margin-left: auto; |
| 194 | padding: 25px; |
| 195 | box-sizing: unset; |
| 196 | } |
| 197 | |
| 198 | .wpf_row{ |
| 199 | display: -ms-flexbox; |
| 200 | display: flex; |
| 201 | } |
| 202 | .wpf-col-3 { |
| 203 | -ms-flex: 0 0 30.333333%; |
| 204 | flex: 0 0 30.333333%; |
| 205 | max-width: 33.333333%; |
| 206 | position: relative; |
| 207 | width: 100%; |
| 208 | padding-right: 15px; |
| 209 | padding-left: 15px; |
| 210 | box-sizing: unset; |
| 211 | } |
| 212 | .wpf_graphics_thumb { |
| 213 | padding-top: 60%; |
| 214 | background-repeat: no-repeat; |
| 215 | background-size: cover; |
| 216 | background-position: center top; |
| 217 | border: 1px solid #efefef; |
| 218 | margin-bottom: 30px; |
| 219 | box-shadow: 0em 0.5em 1em 0em rgba(0, 0, 0, 0.1); |
| 220 | border-radius: 5px; |
| 221 | position: relative; |
| 222 | -webkit-transition: all 0.2s ease-in; |
| 223 | -moz-transition: all 0.2s ease-in; |
| 224 | -ms-transition: all 0.2s ease-in; |
| 225 | -o-transition: all 0.2s ease-in; |
| 226 | transition: all 0.2s ease-in; |
| 227 | } |
| 228 | .wpf_graphics_title { |
| 229 | position: absolute; |
| 230 | bottom: 0; |
| 231 | width: calc(100% - 20px); |
| 232 | padding: 10px; |
| 233 | background-color: var(--main-wpf-color); |
| 234 | color: #fff; |
| 235 | font-weight: 700; |
| 236 | text-decoration: none; |
| 237 | font-family: 'Roboto', sans-serif; |
| 238 | border-radius: 0 0 5px 5px; |
| 239 | box-sizing: unset; |
| 240 | } |
| 241 | .wpf_graphics_title.wpf_completed { |
| 242 | background: #3ed696; |
| 243 | } |
| 244 | .wpf_graphics_title.wpf_completed .gg-check:after { |
| 245 | width: 5px !important; |
| 246 | } |
| 247 | #all_graphics_list_container span.wpf_right { |
| 248 | float: right; |
| 249 | } |
| 250 | .wpf_graphics_new { |
| 251 | padding-top: 60%; |
| 252 | border: 1px solid #efefef; |
| 253 | margin-bottom: 30px; |
| 254 | box-shadow: 0em 0.5em 1em 0em rgba(0, 0, 0, 0.1); |
| 255 | border-radius: 5px; |
| 256 | position: relative; |
| 257 | -webkit-transition: all 0.2s ease-in; |
| 258 | -moz-transition: all 0.2s ease-in; |
| 259 | -ms-transition: all 0.2s ease-in; |
| 260 | -o-transition: all 0.2s ease-in; |
| 261 | transition: all 0.2s ease-in; |
| 262 | } |
| 263 | .wpf_graphics_new_title { |
| 264 | position: absolute; |
| 265 | top: 20%; |
| 266 | width: 100%; |
| 267 | text-align: center; |
| 268 | } |
| 269 | .wpf_graphics_new_title i { |
| 270 | color: #363d4d; |
| 271 | margin-bottom: 25px; |
| 272 | box-sizing: unset; |
| 273 | margin: auto; |
| 274 | } |
| 275 | .wpf_graphics_new_title_main { |
| 276 | color: #363d4d; |
| 277 | font-weight: 700; |
| 278 | text-decoration: none; |
| 279 | font-family: 'Roboto', sans-serif; |
| 280 | font-size: 175%; |
| 281 | margin-top: 40px; |
| 282 | } |
| 283 | .wpf_graphics_new_title_desc { |
| 284 | padding: 10px; |
| 285 | color: #333; |
| 286 | } |
| 287 | .wpf_graphics_new:hover, .wpf_graphics_thumb:hover { |
| 288 | opacity: 0.7; |
| 289 | } |
| 290 | span#wpf_success_msg { |
| 291 | color: #ffffff; |
| 292 | } |
| 293 | @media (max-width: 1500px) { |
| 294 | .wpf_graphics_new_title { |
| 295 | top: 15%; |
| 296 | } |
| 297 | } |
| 298 | @media (max-width: 1200px) { |
| 299 | .wpf-col-3 { |
| 300 | flex: 0 0 45%; |
| 301 | max-width: 45%; |
| 302 | } |
| 303 | } |
| 304 | @media (max-width: 730px) { |
| 305 | .wpf-col-3 { |
| 306 | flex: 0 0 92%; |
| 307 | max-width: 92%; |
| 308 | } |
| 309 | } |
| 310 | |
| 311 | #all_graphics_list_container span.wpf_right:lang(he) { |
| 312 | float: left; |
| 313 | } |