暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_shop.scss 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*------------------*
  2. # Shop Pages
  3. *------------------*/
  4. .tab-content .tab-pane.active .grid-view .product-card {
  5. animation: zoomIn 0.5s ease;
  6. animation-duration: 1s;
  7. }
  8. .tab-content .tab-pane .grid-view-list .product-card {
  9. padding: 15px;
  10. }
  11. .tab-content .tab-pane.active .grid-view-list .product-card {
  12. animation: fadeInRight 0.5s ease;
  13. animation-duration: 1s;
  14. }
  15. .grid-nav-wraper {
  16. padding: 10px 30px;
  17. @include max-screen(991) {
  18. padding: 10px 15px;
  19. }
  20. }
  21. .shop-grid-nav .nav .nav-item {
  22. margin-right: 15px;
  23. line-height: 1;
  24. }
  25. .total-products {
  26. font-weight: fontweight(regular);
  27. margin-left: 50px;
  28. line-height: 20px;
  29. font-size: 14px;
  30. padding: 5px;
  31. @include max-screen(991) {
  32. margin-left: 20px;
  33. }
  34. }
  35. .shop-grid-nav .nav .nav-link {
  36. color: $color-dark;
  37. padding: 0;
  38. background: transparent;
  39. font-size: 18px;
  40. line-height: 30px;
  41. }
  42. .shop-grid-nav .nav .nav-link.active,
  43. .shop-grid-nav .nav .nav-link:hover {
  44. color: $theme-color;
  45. }
  46. .shop-grid-button button {
  47. width: 100%;
  48. background: $color-white;
  49. padding: 2px 15px;
  50. line-height: 24px;
  51. font-size: 14px;
  52. color: $color-dark;
  53. text-align: left;
  54. box-shadow: none;
  55. }
  56. .shop-grid-button button span {
  57. font-size: 20px;
  58. }
  59. .shop-grid-menu {
  60. background: $color-white;
  61. width: calc(100% - 145px);
  62. border: 1px solid $border-color;
  63. }
  64. .shop-grid-menu .dropdown-item {
  65. font-weight: fontweight(regular);
  66. line-height: 24px;
  67. font-size: 14px;
  68. padding: 3px 15px;
  69. color: $color-dark;
  70. }
  71. .shop-grid-menu .dropdown-item:hover {
  72. background: $theme-color;
  73. color: $color-white;
  74. }
  75. .sort-by {
  76. min-width: 70px;
  77. font-weight: fontweight(regular);
  78. line-height: 20px;
  79. font-size: 14px;
  80. padding: 5px;
  81. color: $color-dark;
  82. margin-left: 50px;
  83. @include max-screen(991) {
  84. margin-left: 0px;
  85. }
  86. }
  87. .product-list-des {
  88. padding: 15px 0;
  89. }
  90. .availability-list p span {
  91. color: $theme-color;
  92. }
  93. .grid-view-list {
  94. .product-desc .title {
  95. font-size: 20px;
  96. }
  97. }
  98. .custom-select{
  99. padding: 0px 15px;
  100. height: 30px !important;
  101. border: 0px;
  102. font-size: 14px;
  103. }
  104. /*------------------*
  105. # Shop Pages End
  106. *------------------*/