Advertisement
Guest User

Untitled

a guest
Jan 31st, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.92 KB | None | 0 0
  1. /*Change the height of each product on the form*/
  2. span.form-product-item.hover-product-item {
  3.     height : 50px;
  4. }
  5.  
  6. /*add image to Subscription 1*/
  7. div#cid_16 .form-product-item:nth-child(2) .form-product-item-detail:before {
  8.     content : "";
  9.     background-image : url(http://edensmeats.com/wp-content/uploads/2018/01/Chicken-cuts-2.jpg);
  10.     padding : 0px 51px 34px 0px !important;
  11.     background-repeat : no-repeat;
  12.     color : transparent !important;
  13.     background-size : 50px;
  14. }
  15.  
  16. /*add image to Subscription 2*/
  17. div#cid_16 .form-product-item:nth-child(4) .form-product-item-detail:before {
  18.     content : "";
  19.     background-image : url(http://edensmeats.com/wp-content/uploads/2018/01/Chicken-cuts-2.jpg);
  20.     padding : 0px 51px 34px 0px !important;
  21.     background-repeat : no-repeat;
  22.     color : transparent !important;
  23.     background-size : 50px;
  24. }
  25.  
  26. /*add image to Subscription 3*/
  27. div#cid_16 .form-product-item:nth-child(6) .form-product-item-detail:before {
  28.     content : "";
  29.     background-image : url(http://edensmeats.com/wp-content/uploads/2018/01/Chicken-cuts-2.jpg);
  30.     padding : 0px 51px 34px 0px !important;
  31.     background-repeat : no-repeat;
  32.     color : transparent !important;
  33.     background-size : 50px;
  34. }
  35.  
  36. /*add image to Subscription 4*/
  37. div#cid_16 .form-product-item:nth-child(8) .form-product-item-detail:before {
  38.     content : "";
  39.     background-image : url(http://edensmeats.com/wp-content/uploads/2018/01/Chicken-cuts-2.jpg);
  40.     padding : 0px 51px 34px 0px !important;
  41.     background-repeat : no-repeat;
  42.     color : transparent !important;
  43.     background-size : 50px;
  44. }
  45.  
  46. /*add image to Subscription 5*/
  47. div#cid_16 .form-product-item:nth-child(10) .form-product-item-detail:before {
  48.     content : "";
  49.     background-image : url(http://edensmeats.com/wp-content/uploads/2018/01/Chicken-cuts-2.jpg);
  50.     padding : 0px 51px 34px 0px !important;
  51.     background-repeat : no-repeat;
  52.     color : transparent !important;
  53.     background-size : 50px;
  54. }
  55.  
  56. /*add image to Subscription 6*/
  57. div#cid_16 .form-product-item:nth-child(12) .form-product-item-detail:before {
  58.     content : "";
  59.     background-image : url(http://edensmeats.com/wp-content/uploads/2018/01/Chicken-cuts-2.jpg);
  60.     padding : 0px 51px 34px 0px !important;
  61.     background-repeat : no-repeat;
  62.     color : transparent !important;
  63.     background-size : 50px;
  64. }
  65.  
  66. /*add description to Subscription 1*/
  67. div#cid_16 .form-product-item:nth-child(2)::after {
  68.     content : "4 whole frozen chickens distributed monthly";
  69.     position : relative;
  70.     padding-left : 74px;
  71.     color : black;
  72.     font-style : italic;
  73. }
  74.  
  75. /*add description to Subscription 2*/
  76. div#cid_16 .form-product-item:nth-child(4)::after {
  77.     content : "4 parted frozen chickens distributed monthly in 9-piece bags";
  78.     position : relative;
  79.     padding-left : 74px;
  80.     color : black;
  81.     font-style : italic;
  82. }
  83.  
  84. /*add description to Subscription 3*/
  85. div#cid_16 .form-product-item:nth-child(6)::after {
  86.     content : "2 whole frozen chickens distributed monthly";
  87.     position : relative;
  88.     padding-left : 74px;
  89.     color : black;
  90.     font-style : italic;
  91. }
  92.  
  93. /*add description to Subscription 4*/
  94. div#cid_16 .form-product-item:nth-child(8)::after {
  95.     content : "2 parted frozen chickens distributed monthly in 9-piece bags";
  96.     position : relative;
  97.     padding-left : 74px;
  98.     color : black;
  99.     font-style : italic;
  100. }
  101.  
  102. /*add description to Subscription 5*/
  103. div#cid_16 .form-product-item:nth-child(10)::after {
  104.     content : "1 whole frozen chicken distributed monthly in 9-piece bags";
  105.     position : relative;
  106.     padding-left : 74px;
  107.     color : black;
  108.     font-style : italic;
  109. }
  110.  
  111. /*add description to Subscription 6*/
  112. div#cid_16 .form-product-item:nth-child(12)::after {
  113.     content : "1 whole parted chicken distributed monthly in 9-piece bags";
  114.     position : relative;
  115.     padding-left : 74px;
  116.     color : black;
  117.     font-style : italic;
  118. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement