Advertisement
maximus87

7.0 version CSS code

Jun 22nd, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. [id^='SECTION ID HERE'] {
  2. .sqs-block-product:first-child {
  3. border-top: 1px solid #F87645;
  4. }
  5. .sqs-block-product {
  6. border-bottom: 1px solid #F87645;
  7. cursor: pointer;
  8. .productDetails {
  9. display: flex;
  10. flex-wrap: wrap;
  11. justify-content: space-between;
  12. .product-title {
  13. width: 70%;
  14. pointer-events: none;
  15. margin: 0;
  16. padding: 0 20px 0 20px;
  17. box-sizing: border-box;
  18. color: #FEB05A;
  19. }
  20. .product-excerpt {
  21. color: #F87645;
  22. font-size: 12px;
  23. padding-left: 37px;
  24. }
  25. .product-price {
  26. padding: 0 0 0 10px;
  27. width: calc(~"30% - 20px");
  28. margin: 0;
  29. box-sizing: border-box;
  30. color: #FEB05A;
  31. text-align: right;
  32. }
  33. .product-quantity-input {
  34. display: none;
  35. }
  36. .pritem {
  37. width: 14px;
  38. height: 14px;
  39. position: relative;
  40. border: 1px solid #F87645;
  41. border-radius: 50%;
  42. margin-top: 3px;
  43. &::before {
  44. content: '';
  45. width: 14px;
  46. height: 14px;
  47. background: #F87645;
  48. position: absolute;
  49. border-radius: 50%;
  50. top: 0;
  51. left: 0;
  52. }
  53. }
  54. }
  55. }
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement