Guest User

Untitled

a guest
Jul 17th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. <div class="product-details-row">
  2. <div class="product-details-column"><!-- Image here -->
  3. <img class="product-details-image" src="https://pmcvariety.files.wordpress.com/2018/01/carey-mulligan1.jpg?w=700" />
  4. </div>
  5.  
  6. <div class="product-details-column product-details-right"><!-- Product details here -->
  7. <h3 class="product-name">{{ product.title }}</h3>
  8.  
  9. <div class="product-gallery-heading">
  10. {{ ImagsGallaryheading[imagesgallaryheading] }}
  11. </div>
  12.  
  13. <section class="price-and-reviews-row">
  14. <div style="width: 50%; height: auto;float: left;">
  15. <span>
  16. <p class="product-content-box-price">
  17. <span>{{ current_variant.price | money }}</span>
  18. </p>
  19. </span>
  20. </div>
  21.  
  22. <section>
  23. <p class="product-hero-image-content-box">{{ product.description }}</p><!-- Product details grows/shrinks here -->
  24. </section>
  25. </section>
  26.  
  27. <hr style="display: block; height: 1px; border: 0; border-top: 1px solid rgba(215,215,215,0.5); margin: 1em 0; padding: 0;">
  28.  
  29. <p class="color-box available-from">Available colours:</p>
  30. <div class="color-square-container green-color-square"></div>
  31. <div class="color-square-container blue-color-square"></div>
  32.  
  33. <div class="btn_banner">
  34. <div class="button-buy">
  35. <!-- N/A content removed -->
  36. </div>
  37. </div>
  38. </div>
  39.  
  40. .product-details-row {
  41. display:-ms-flexbox;
  42. display:-webkit-flex;
  43. display:flex;
  44. margin-bottom:2.5em;
  45. }
  46. .product-details-column {
  47. -webkit-flex:1;
  48. -ms-flex:1;
  49. flex:1;
  50. }
  51. img.product-details-image {
  52. display:block;
  53. max-width:100%;
  54. height:auto;
  55. width:auto;
  56. }
  57. .product-details-right {
  58. background-color:#C15031;
  59. padding:2em;
  60. -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.35);
  61. -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.35);
  62. box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.35);
  63. color:#ffffff;
  64. }
  65. .product-gallery-heading {
  66. font-family:Comfortaa;
  67. color:#d7d7d7;
  68. }
  69. .price-and-reviews-row {
  70. margin-top: 4em;
  71. margin-bottom: 2em;
  72. }
  73. p.product-content-box-price {
  74. color: #ffffff;
  75. font-size: 2em;
  76. font-weight: 400;
  77. }
  78. p.product-hero-image-content-box {
  79. color:#333333;
  80. font-family:Arial;
  81. font-weight:300;
  82. }
  83. .available-from {
  84. color:#ffffff;
  85. font-family:Comfortaa;
  86. font-weight:400;
  87. font-size:0.8em;
  88. }
  89. .color-square-container {
  90. float: left;
  91. width: 20px;
  92. height: 20px;
  93. margin: 5px;
  94. border: 1px solid #ffffff;
  95. }
  96. .green-color-square {
  97. background: #009966;
  98. }
  99. .blue-color-square {
  100. background: #ab3fdd;
  101. }
Add Comment
Please, Sign In to add comment