Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.62 KB | None | 0 0
  1. <style>
  2. .retailrocket-widget .retailrocket-item-description
  3. {
  4.   display: none;
  5. }
  6.  
  7.   .retailrocket-widget.retailrocket-theme-odstore .retailrocket-item{
  8.     background-color:  #f4f4f9;
  9.     box-shadow: none;
  10.   }
  11.  
  12.   .retailrocket-widget.retailrocket-theme-odstore{
  13.   background: #f4f4f9;
  14.   }
  15.  
  16.   .retailrocket-widget.retailrocket-theme-odstore .retailrocket-item-title{
  17.     white-space: normal;
  18.     width: 100%;
  19.     height: auto;
  20.     text-align: left;
  21.   }
  22.  
  23. .retailrocket-widget.retailrocket-theme-odstore .retailrocket-item-image{
  24.   height: auto;
  25. }
  26.  
  27. .retailrocket-widget.retailrocket-theme-odstore .retailrocket-item{
  28.     width: 24%;
  29.   background-image: none;
  30. }
  31.  
  32.   .retailrocket-widget ul.retailrocket-items{
  33.     display: flex;
  34.     justify-content: space-between;
  35.   }
  36.  
  37. .retailrocket-widgettitle {
  38.     position: relative;
  39.     max-width: 220px;
  40.     margin-bottom: 20px;
  41.     padding-left: 30px;
  42.     font-family: "Raleway", sans-serif;
  43.     font-size: 24px;
  44. }  
  45.  
  46.   .retailrocket-widget.retailrocket-theme-odstore .retailrocket-item:after{
  47.   display: none;
  48.   }
  49.  
  50.   .retailrocket-item-price:after{
  51.     content: '';
  52.     position: absolute;
  53.     right: 0;
  54.     top: 0;
  55.     bottom: 0;
  56.     display: block;
  57.     width: 0;
  58.     height: 15px;
  59.     margin: auto;
  60.     border-left: 1px solid #d1d2db;
  61.   }
  62.  
  63. .retailrocket-item-image{
  64.   width: 100%;
  65.   height: auto;
  66.   vertical-align: top;
  67. }
  68.  
  69. .retailrocket-item-title {
  70.     display: block;
  71.     font-size: 16px;
  72.     font-weight: bold;
  73.     text-decoration: none;
  74.     color: #2c2d44;
  75. }
  76. .retailrocket-item-price{
  77.     display: block;
  78.     font-size: 24px;
  79.     color: #ed1c24;
  80.     line-height: 1;
  81.     margin-right: 15px;
  82.     padding-right: 15px;
  83. }
  84.  
  85.   .retailrocket-widgettitle{
  86.     position: relative;
  87.     max-width: 220px;
  88.     margin-bottom: 20px;
  89.     padding-left: 30px;
  90.     font-family: "Raleway", sans-serif;
  91.     font-size: 24px;
  92.   }
  93.  
  94. .retailrocket-widgettitle:before{
  95.     content: '';
  96.     position: absolute;
  97.     left: 0;
  98.     top: 0;
  99.     bottom: 0;
  100.     display: block;
  101.     height: -webkit-calc(100% - 0.6em);
  102.     height: calc(100% - 0.6em);
  103.     margin: auto;
  104.     width: 6px;
  105.     background-color: #ed1c24;
  106. }
  107.  
  108.   .retailrocket-item-old-price-value{
  109.     display: block;
  110.     text-align: left;
  111.     position: absolute;
  112.     left: 0;
  113.     bottom: 100%;
  114.     display: inline-block;
  115.     color: #2c2d44;
  116.     font-size: 13px;
  117.     font-weight: 400;
  118.     text-decoration: line-through;
  119.   }
  120.  
  121.   .retailrocket-widget.retailrocket-theme-odstore .retailrocket-item-price .retailrocket-item-price-value{
  122.   font-weight: normal;
  123.   }
  124.  
  125. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement