Advertisement
Guest User

dfdfdf

a guest
Mar 22nd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.47 KB | None | 0 0
  1. ul.packagedetails,
  2. p.packagedetails {
  3.     display:block;
  4.     background-color:#fafafa;
  5.     box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  6.     padding:15px;
  7.     border-radius:3px;
  8.     list-style: none;
  9. }
  10.  
  11. h4.price
  12. {
  13.     background-color:#EA8A95;
  14.     width:auto;
  15.     height:50px;
  16.     border-radius: 30px;
  17.     color:#fff;
  18.     line-height: 40px;
  19.     display:inline-block;
  20.     margin-top:10px;
  21.     min-width:130px;
  22.     font-size:30px;
  23.     font-style: normal!important;
  24. }
  25.  
  26. ul > li .subdetail {
  27.     -webkit-box-shadow: inset 0px 0px 16px -2px rgba(0,0,0,0.58);
  28.     -moz-box-shadow: inset 0px 0px 16px -2px rgba(0,0,0,0.58);
  29.     box-shadow: inset 0px 0px 16px -2px rgba(0,0,0,0.58);
  30.     border-radius:3px;
  31.     background-color:#fff;
  32.     margin-top:15px;
  33.     padding:15px;
  34.     text-decoration: none!important;
  35. }
  36.  
  37. button.selectpayment {
  38.     font-size:40px;
  39.     width:100%;
  40.     background:none!important;
  41.     background-color:#212121!important;
  42. }
  43.  
  44. button.selectpayment > img {
  45.     height:50px;
  46.     width:auto;
  47. }
  48. span.oldprice
  49. {
  50.     background-color: #ff4444;
  51.     position:absolute;
  52.     margin-top:-25px;
  53.     text-decoration: line-through;
  54.     border-radius:30px;
  55.     padding:5px;
  56.     text-align:center;
  57.     line-height: 40px;
  58.     height:50px;
  59.     width:50px;
  60.     font-size: 12px;
  61.     margin-left:-45px;
  62.     -ms-transform: rotate(-20deg); /* IE 9 /
  63.     -webkit-transform: rotate(-20deg); / Safari */
  64.     transform: rotate(-20deg);
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement