Advertisement
Guest User

header wrapper

a guest
Jan 17th, 2020
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.18 KB | None | 0 0
  1. attendant-reports-header-wrapper {
  2.   .container{
  3.     .group{
  4.       background-color: $eba-dark-color-type1;
  5.       border-radius: 4px;
  6.       padding: 12px 8px;
  7.       .group-header{
  8.         display: flex;
  9.         flex-direction: row;
  10.         justify-content: space-between;
  11.         align-items: center;
  12.         div{
  13.           font-size: 1.3rem;
  14.           font-weight: 500;
  15.           color: $eba-light-color-type1;
  16.         }
  17.         ion-icon{
  18.           font-size: 1.6rem;
  19.           color: $eba-primary-color-type2;
  20.         }
  21.       }
  22.       .printing-body{
  23.         .print-seller{
  24.           div{
  25.             color: $eba-info-color;
  26.             font-size: 1.4rem;
  27.             font-style: italic;
  28.           }
  29.         }
  30.       }
  31.       .buttons{
  32.         display: flex;
  33.         flex-direction: row;
  34.         justify-content: space-between;
  35.         span{
  36.             white-space: nowrap;
  37.             overflow: hidden;
  38.             max-width: 100%;
  39.             text-overflow: ellipsis;
  40.            
  41.         }
  42.         .button-md,.button-ios{
  43.           font-size: 1.2rem;
  44.           padding: 0 8px;
  45.           color: $eba-primary-color-type2;
  46.           width: 33%;
  47.         }
  48.         .button-outline-md,.button-outline-ios {
  49.           border-color: $eba-primary-color-type2;
  50.         }
  51.        
  52.       }
  53.       .expanded{
  54.         background-color: $eba-dark-color-type3 ;
  55.       }
  56.    
  57.        
  58.     }
  59.     .shift-cash-actions-body{
  60.       .groupIcon{
  61.         .input-icon{
  62.            display: flex;
  63.         flex-direction: column;
  64.       }
  65.      
  66.         span{
  67.         font-size: 1.2rem;
  68.         color: $eba-light-color-type4;
  69.         font-style: italic;
  70.         margin-bottom: 6px;
  71.         margin-left: 9px;
  72.         }
  73.         input{
  74.             border: 1px solid $eba-light-color-type5;
  75.             background-color: $eba-dark-color-type1;
  76.             border-radius: 4px;
  77.             color: $eba-light-color-type1;
  78.             padding: 14px;
  79.             font-size: 1.6rem;
  80.         }
  81.         icon{
  82.             position: absolute;
  83.             padding: 11.5px 23px;
  84.             display: flex;
  85.             align-self: flex-end;
  86.         }
  87.  
  88.        }
  89.       }
  90.     }
  91.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement