Advertisement
Guest User

Untitled

a guest
Dec 10th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.33 KB | None | 0 0
  1. $blue : #3ba4ff;
  2. $altblue: #66a5ff;
  3. $grey : #6e7882;
  4.  
  5. .receipt {
  6.   display: flex;
  7.   flex-wrap: wrap;
  8.   margin: 60px auto;
  9.   width:830px;
  10. }
  11.  
  12. .receipt-breakdown {
  13.   background: linear-gradient(180deg,#3ba4ff,#66a5ff);
  14.   color:#fff;
  15.   width: 100%;
  16.   display:inline-block;
  17.   position:relative;
  18.   float:left;
  19.   padding: 40px 30px;
  20.   border-radius: 5px 0 0 5px;
  21.  
  22.   .receipt-breakdown--list {
  23.     text-indent: 0;
  24.     list-style: none;
  25.     padding: 0;
  26.     margin: 0;
  27.     &:before {
  28.       display: none;
  29.       content: "";
  30.     }
  31.    
  32.     li {
  33.       padding: 25px 0;
  34.       border-bottom:1px solid rgba(255,255,255,.4);
  35.      
  36.       &:last-of-type {
  37.         border-bottom: none;
  38.       }
  39.     }
  40.    
  41.     .fa {
  42.       display: inline-block;
  43.       width:15%;
  44.       float:left;
  45.     }
  46.    
  47.     .list-content {
  48.       width: 75%;
  49.       display:inline-block;
  50.     }
  51.    
  52.     p {
  53.       font-weight:300;
  54.       font-size: 13px;
  55.       margin: 0;
  56.       .list-bold {
  57.         font-weight:600;
  58.         display:block;
  59.         font-size: 15px;
  60.         padding-top:5px;
  61.       }
  62.     }
  63.   }
  64. }
  65.  
  66. .receipt-breakdown--header {
  67.   border-bottom:1px solid rgba(255,255,255,.4);  
  68.   padding: 10px 0;
  69.  
  70.   h2 {
  71.     margin: 0;
  72.     font-size: 22px;
  73.     padding-bottom: 15px;
  74.   }
  75.  
  76.   p {
  77.     padding: 0 0 7px 0;
  78.     margin: 0;
  79.   }
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement