bitcoin-atm

bitcoin atm for pyc inc.

git clone https://9o.is/git/bitcoin-atm.git

area.less

(692B)


      1 // "areas" of the small screen is split by the top 
      2 // and lower area above buttons in the bottom 
      3 
      4 .top-area {
      5   min-height: @top-area-height;
      6   height: @top-area-height;
      7   
      8   &.no-help-btn {
      9     height: @top-area-lg-height !important;
     10   }
     11 }
     12 
     13 .low-area {
     14   min-height: @low-area-height;
     15   height: @low-area-height;
     16   
     17   &.with-close {
     18     height: @low-area-height - @close-btn-height;
     19   }
     20 }
     21 
     22 .tap-area {
     23   position: absolute;
     24   top:0;
     25   left:0;
     26   height: @screen-height;
     27   z-index: @tap-area-z-index;
     28   
     29   &.with-help {
     30     height: @screen-height - @help-btn-height !important;
     31   }
     32 }
     33 
     34 .bar {
     35   position:absolute;
     36   left:0;
     37   height: @bar-height;
     38   &.top { top:0; }
     39   &.bottom { bottom:0; }
     40 }