bitcoin-atm

bitcoin atm for pyc inc.

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

input.less

(880B)


      1 .input-screen {
      2   position: fixed;
      3   left: 0;
      4   top: 0;
      5   width: @screen-width !important;
      6   height: @screen-height;
      7   background: #FFF;
      8   opacity:0;
      9   
     10   .input-container {
     11     position: relative;
     12     width: @screen-width - (@screen-width / 4) !important;
     13     height: 100px;
     14     background-color: #FFF;
     15     border-radius: 35px;
     16     overflow: visible !important;
     17   
     18     .input {
     19       background-color: transparent;
     20       border: none;
     21       height: 100px !important;
     22       width: 90%;
     23     
     24       &:focus {
     25         outline: none;
     26       }
     27     }
     28   }
     29   
     30   .btn-close {
     31     bottom: @keyboard-height !important;
     32     background-color: @gray-lightest !important;
     33     
     34     h5 {
     35       margin: 10px auto;
     36     }
     37   }
     38 }
     39 
     40 .input--noblinkcursor {
     41     border: none;
     42     color: transparent;
     43     text-shadow: 0 0 0 @gray-darker;
     44     text-align: center;
     45 
     46     &:focus {
     47         outline: none;
     48     }
     49 }