Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 3.78 KB | None | 0 0
  1. .products
  2.     padding: 0.5rem
  3.  
  4. .product
  5.     background-color: #fff
  6.     display: flex
  7.     flex-wrap: wrap
  8.     border: 1px solid lightgray
  9.     box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2)
  10.     width: 100%
  11.     padding: 0
  12.     margin: 0.5rem
  13.     &-container
  14.         padding-left: 0
  15.     &__container
  16.         display: flex
  17.         &:nth-last-child(1)
  18.             margin-bottom: 3rem
  19.     img
  20.         object-fit: cover
  21.         max-width: 100%
  22.         max-height: 100%
  23.     &-category-details
  24.         flex: 1
  25.         padding: 0 1.875rem
  26.         +respond-to(medium)
  27.             padding: 1.875rem
  28.         width: 100%
  29.         //category
  30.     &-category-2, &-category-3
  31.         flex-direction: column
  32.     &-category-1, &-category-2, &-category-3
  33.         h1
  34.             font-size: 2.375rem
  35.             margin-bottom: 1rem
  36.             font-weight: 100
  37.         p
  38.             font-size: 0.875rem
  39.         &--details
  40.             &__long-desc
  41.                 margin-top: 1.5rem
  42.                 line-height: 1.5rem
  43.             &--text
  44.                 display: flex
  45.                 flex-direction: column
  46.                 > *
  47.                     text-align: center
  48.                     margin: auto
  49.                 header
  50.                     p
  51.                         color: #8c8c8c
  52.                         line-height: 1.13rem
  53.             .row
  54.                 align-items: center
  55.                 background-color: #fff
  56.  
  57.         .choose
  58.             &-product
  59.                 justify-content: space-evenly
  60.                 .product__price
  61.                     b
  62.                         font-size: 1.5rem
  63.                         font-weight: 900
  64.             &-products
  65.                 border: 1px solid #d8dde6
  66.                 max-height: 200px
  67.                 display: flex
  68.                 flex-direction: column
  69.                 justify-content: space-around
  70.                 padding: 1.875rem
  71.                 margin: auto 1.875rem
  72.                 > *
  73.                     flex-grow: 1
  74.                 p:first-child
  75.                     font-size: 1.125rem
  76.                 .products
  77.                     &__quantities
  78.                         display: flex
  79.                         justify-content: center
  80.                         p
  81.                             margin-top: 1.875rem
  82.                         ul
  83.                             display: flex
  84.                             li
  85.                                 margin: 1.875rem 0.5rem
  86.                                 button
  87.                                     width: 3.75rem
  88.                                     height: 3.75rem
  89.                                     font-size: 1.25rem
  90.                     &__price
  91.                         font-size: 1.5rem
  92.                         font-weight: 900
  93.     &__img
  94.         max-width: 100%
  95.     /* Size and display */
  96.     .product-category-details > *
  97.         padding: 1rem
  98.         +respond-to(large)
  99.             padding: 0
  100.         &.choose-products
  101.             margin: 0
  102.     &-category-1
  103.         flex-direction: row
  104.         +respond-to(medium)
  105.             height: 60vh
  106.             flex-direction: column
  107.         img
  108.             width: 100%
  109.             height: 60vh
  110.             +respond-to(medium)
  111.                 width: 50%
  112.         &--details--text
  113.             width: 50%
  114.             height: 100%
  115.             +respond-to(medium)
  116.                 height: 60vh
  117.         .choose-products
  118.             +respond-to(large)
  119.                 padding: 1rem
  120.     &-category-2
  121.         +respond-to(large)
  122.             height: 90vh
  123.         img
  124.             height: 30vh
  125.     &-category-3
  126.         width: 100%
  127.         +respond-to(large)
  128.             height: 90vh
  129.         img
  130.             height: 30vh
  131.         .choose
  132.             &-products
  133.                 +respond-to(large)
  134.                     padding: 1rem
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement