|
353 | 353 | }
|
354 | 354 | }
|
355 | 355 |
|
356 |
| -/* Category Products Styles |
357 |
| -==========================================*/ |
358 |
| -/*.category-product { |
359 |
| - padding: 0; |
360 |
| - list-style: none; |
361 |
| - display: -webkit-box; |
362 |
| - display: -ms-flexbox; |
363 |
| - display: flex; |
364 |
| - -ms-flex-wrap: wrap; |
365 |
| - flex-wrap: wrap; |
366 |
| - -webkit-box-pack: start; |
367 |
| - -ms-flex-pack: start; |
368 |
| - justify-content: flex-start; |
369 |
| -} |
370 |
| -
|
371 |
| -.category-product-desc > span { |
372 |
| - display: block; |
373 |
| - color: #343434; |
374 |
| - font-size: 14px; |
375 |
| -} |
376 |
| -
|
377 |
| -.category-product-desc > span:last-child { |
378 |
| - font-weight: 700; |
379 |
| -} |
380 |
| -
|
381 |
| -.category-product-image { |
382 |
| - display: -webkit-box; |
383 |
| - display: -ms-flexbox; |
384 |
| - display: flex; |
385 |
| - -webkit-box-align: end; |
386 |
| - -ms-flex-align: end; |
387 |
| - align-items: flex-end; |
388 |
| - cursor: pointer; |
389 |
| -
|
390 |
| - background-size: cover; |
391 |
| - overflow: hidden; |
392 |
| -} |
393 |
| -
|
394 |
| -.category-product-wrap { |
395 |
| - display: block; |
396 |
| - -webkit-box-sizing: border-box; |
397 |
| - box-sizing: border-box; |
398 |
| - -o-transition: transform 0.3s ease-out, background-color 0.3s ease-out; |
399 |
| - -webkit-transition: background-color 0.3s ease-out, 0 0.3s ease-out; |
400 |
| - -webkit-transition: background-color 0.3s ease-out, 0 0.3s ease-out, |
401 |
| - -webkit-transform 0.3s ease-out; |
402 |
| - transition: background-color 0.3s ease-out, 0 0.3s ease-out, |
403 |
| - -webkit-transform 0.3s ease-out; |
404 |
| - -o-transition: transform 0.3s ease-out, background-color 0.3s ease-out, |
405 |
| - 0 0.3s ease-out; |
406 |
| - transition: transform 0.3s ease-out, background-color 0.3s ease-out, |
407 |
| - 0 0.3s ease-out; |
408 |
| - transition: transform 0.3s ease-out, background-color 0.3s ease-out, |
409 |
| - 0 0.3s ease-out, -webkit-transform 0.3s ease-out; |
410 |
| -} |
411 |
| -
|
412 |
| -.category-product-image:hover .cats-products-icons, |
413 |
| -.category-product-image:active .cats-products-icons, |
414 |
| -.category-product-image:focus .cats-products-icons { |
415 |
| - display: -webkit-box; |
416 |
| - display: -ms-flexbox; |
417 |
| - display: flex; |
418 |
| - align-items: center; |
419 |
| -} |
420 |
| -
|
421 |
| -.cats-products-icons { |
422 |
| - background-color: #7abe95; |
423 |
| - width: 150px; |
424 |
| - height: 42px; |
425 |
| - -ms-flex-pack: distribute; |
426 |
| - justify-content: space-around; |
427 |
| - margin-bottom: 10%; |
428 |
| - margin-right: auto; |
429 |
| - margin-left: auto; |
430 |
| - display: none; |
431 |
| -} |
432 |
| -
|
433 |
| -.cats-products-icons i { |
434 |
| - font-size: 19px; |
435 |
| - color: #ffffff; |
436 |
| -} |
437 |
| -
|
438 |
| -.category-drawer { |
439 |
| - background-color: #ffffff; |
440 |
| -} |
441 |
| -
|
442 |
| -.category-product-desc { |
443 |
| - display: block; |
444 |
| - background-color: #ffffff; |
445 |
| - text-align: center; |
446 |
| - color: #343434; |
447 |
| -} |
448 |
| -
|
449 |
| -@media screen and (min-width: 1600px) and (max-width: 1920px) { |
450 |
| - .category-product > li { |
451 |
| - width: calc((100% / 6) - 24px); |
452 |
| - } |
453 |
| -} |
454 |
| -
|
455 |
| -@media screen and (min-width: 1440px) and (max-width: 1600px) { |
456 |
| - .category-product > li { |
457 |
| - width: calc((100% / 5) - 24px); |
458 |
| - } |
459 |
| -} |
460 |
| -
|
461 |
| -@media screen and (min-width: 1100px) and (max-width: 1440px) { |
462 |
| - .category-product > li { |
463 |
| - width: calc((100% / 4) - 24px); |
464 |
| - } |
465 |
| -
|
466 |
| - .category-layout-wrap { |
467 |
| - margin-left: 50px; |
468 |
| - margin-right: 50px; |
469 |
| - } |
470 |
| -} |
471 |
| -
|
472 |
| -@media screen and (min-width: 900px) and (max-width: 1100px) { |
473 |
| - .category-product > li { |
474 |
| - width: calc((100% / 3) - 24px); |
475 |
| - } |
476 |
| -} |
477 |
| -
|
478 |
| -@media screen and (min-width: 740px) and (max-width: 900px) { |
479 |
| - .category-product > li { |
480 |
| - width: calc((100% / 2) - 24px); |
481 |
| - margin: 12px; |
482 |
| - } |
483 |
| -} |
484 |
| -
|
485 |
| -@media screen and (min-width: 500px) and (max-width: 768px) { |
486 |
| - .category-product-wrap { |
487 |
| - height: 340px; |
488 |
| - } |
489 |
| -
|
490 |
| - .category-product-image { |
491 |
| - height: 280px; |
492 |
| - } |
493 |
| -
|
494 |
| - .category-product-desc { |
495 |
| - height: 60px; |
496 |
| - padding-top: 8px; |
497 |
| - } |
498 |
| -
|
499 |
| - .category-product { |
500 |
| - margin: 0 auto; |
501 |
| - } |
502 |
| -} |
503 |
| -
|
504 |
| -@media screen and (max-width: 740px) { |
505 |
| - .category-product > li { |
506 |
| - width: calc(100% - 24px); |
507 |
| - margin: 12px; |
508 |
| - } |
509 |
| -
|
510 |
| - .category-product-wrap { |
511 |
| - height: 456px; |
512 |
| - } |
513 |
| -
|
514 |
| - .category-product-desc { |
515 |
| - height: 76px; |
516 |
| - padding-top: 8px; |
517 |
| - padding-bottom: 16px; |
518 |
| - } |
519 |
| -
|
520 |
| - .category-product-image { |
521 |
| - height: 380px; |
522 |
| - } |
523 |
| -} |
524 |
| -
|
525 |
| -@media screen and (max-width: 768px) { |
526 |
| - .category-layout { |
527 |
| - display: none !important; |
528 |
| - } |
529 |
| -
|
530 |
| - .category-product > li { |
531 |
| - border: 1px solid #dbdbdb; |
532 |
| - box-sizing: border-box; |
533 |
| - } |
534 |
| -} |
535 |
| -
|
536 |
| -@media screen and (min-width: 768px) { |
537 |
| - .category-product > li { |
538 |
| - border: 1px solid #dbdbdb; |
539 |
| - margin: 0 12px 32px 12px; |
540 |
| - box-sizing: border-box; |
541 |
| - } |
542 |
| -
|
543 |
| - .category-product { |
544 |
| - background-color: #ffffff; |
545 |
| - } |
546 |
| -
|
547 |
| - .category-layout-wrap { |
548 |
| - margin-top: 50px; |
549 |
| - margin-bottom: 50px; |
550 |
| - } |
551 |
| -
|
552 |
| - .category-product-image { |
553 |
| - height: 260px; |
554 |
| - } |
555 |
| -
|
556 |
| - .category-product-desc { |
557 |
| - height: 60px; |
558 |
| - padding-top: 8px; |
559 |
| - } |
560 |
| -
|
561 |
| - .sub-nav-btn-expander { |
562 |
| - display: none; |
563 |
| - } |
564 |
| -} |
565 |
| -
|
566 |
| -@media screen and (min-width: 218px) { |
567 |
| - .filter-form { |
568 |
| - margin-left: 12px; |
569 |
| - margin-right: 12px; |
570 |
| - margin-bottom: 32px; |
571 |
| - } |
572 |
| - .drawer-main { |
573 |
| - text-align: -webkit-center; |
574 |
| - text-align: center; |
575 |
| - } |
576 |
| -}*/ |
577 |
| - |
578 | 356 | /* Wrappers for components
|
579 | 357 | ==========================================*/
|
580 | 358 | .cats-wapper {
|
|
0 commit comments