| /* |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| */ |
| |
| // Input field |
| |
| #inputContainer { |
| |
| display: flex; |
| display: -webkit-box; |
| display: -ms-flexbox; |
| |
| margin: 0 auto; |
| margin-top: 36px; |
| |
| width:100%; |
| height: 50px; |
| |
| -webkit-box-orient: horizontal; |
| -ms-flex-direction: row; |
| flex-direction: row; |
| |
| -webkit-box-align: center; |
| -ms-flex-align: center; |
| align-items: center; |
| |
| text-align: center; |
| |
| position: relative; |
| |
| @include display-box-flex(); |
| |
| #pinpad-input { |
| @include pin-screen(); |
| padding: 0; |
| margin: 0; |
| width: 100%; |
| text-align: center; |
| background-clip: padding-box; |
| } |
| |
| .blue-bg { |
| background: #006b9e !important; |
| } |
| |
| #codes { |
| |
| text-align: center; |
| color: rgba(54,66,74,0.6); |
| font-size: 26px; |
| width: 100%; |
| height: 100%; |
| |
| background-color: white; |
| z-index: 9999; |
| |
| position: absolute; |
| top: 0; |
| height: inherit; |
| padding: 0; |
| padding-top: 14px; |
| |
| &.error { |
| color: #e64a19; |
| } |
| } |
| } |
| |
| #circlesHolder { |
| display: block; |
| |
| @include circles-holder(); |
| |
| -webkit-box-align: stretch; |
| -ms-flex-align: stretch; |
| -moz-box-align: stretch; |
| align-items: stretch; |
| |
| -webkit-box-orient: horizontal !important; |
| -ms-flex-direction: row !important; |
| -moz-box-orient: horizontal !important; |
| flex-direction: row !important; |
| } |
| |
| #accNumHolder { |
| |
| @include access-number(); |
| } |
| |
| #pinsHolder { |
| |
| width: auto; |
| height: auto; |
| position: relative; |
| top: 0; |
| right: 0; |
| bottom: 0; |
| left: 0; |
| |
| -webkit-box-align: stretch; |
| -ms-flex-align: stretch; |
| align-items: stretch; |
| -webkit-box-orient: vertical !important; |
| -ms-flex-direction: column !important; |
| flex-direction: column !important; |
| |
| display: -webkit-box; |
| display: -moz-box; |
| display: -ms-flexbox; |
| |
| -webkit-box-flex: 1; |
| -ms-flex: 1 0 auto; |
| flex: 1 0 auto; |
| min-height: 0; |
| min-width: 0; |
| |
| @include pinpad(); |
| |
| &.access-number { |
| @include pinpad-accessnumber(); |
| |
| button { |
| color: white !important; |
| } |
| |
| } |
| |
| // Pinbat buttons |
| |
| .pre-row { |
| position: relative; |
| |
| @include box-flex-value(1.0); |
| @include display-box-flex(); |
| |
| height: 25%; |
| |
| .row { |
| |
| width: 100%; |
| height: 100%; |
| |
| position: absolute; |
| top: 0; |
| right: 0; |
| bottom: 0; |
| left: 0; |
| |
| -webkit-box-pack: start; |
| -ms-flex-pack: start; |
| -moz-box-pack: start; |
| |
| justify-content: flex-start; |
| |
| -webkit-box-align: stretch; |
| -ms-flex-align: stretch; |
| -moz-box-align: stretch; |
| align-items: stretch; |
| |
| -webkit-box-orient: horizontal !important; |
| -ms-flex-direction: row !important; |
| -moz-box-orient: horizontal !important; |
| flex-direction: row !important; |
| |
| @include display-box-flex(); |
| |
| #mpinClear, #mpinLogin { |
| font-size: 16px !important; |
| padding-left: 0% !important; |
| } |
| |
| |
| .btn, .btnClear, .btnLogin{ |
| |
| // width: 0 !important; |
| // min-width: 0 !important; |
| |
| width: 100%; |
| height: 100%; |
| |
| -webkit-box-flex: 1; |
| |
| // Include button styles |
| |
| @include pin-btn-style(); |
| |
| // Set general styling |
| |
| cursor: pointer; |
| |
| @include display-box-flex(); |
| |
| flex: 1 100%; |
| |
| @include box-flex-value(1.0); |
| |
| right: 0; |
| bottom: 0; |
| left: 0; |
| top:0; |
| |
| position: relative; |
| |
| line-height: 100%; |
| height: 100% !important; |
| line-height: 100%; |
| min-height: 1.8em; |
| |
| text-transform: uppercase; |
| text-align: center; |
| |
| -webkit-box-align: center; |
| -ms-flex-align: center; |
| -moz-box-align: center; |
| align-items: center; |
| |
| white-space: nowrap; |
| text-overflow: ellipsis; |
| text-align: center; |
| display: block; |
| overflow: hidden; |
| width: 100%; |
| height: 100%; |
| |
| -webkit-tap-highlight-color: whitesmoke; |
| |
| &.disabled { |
| opacity: 0.3; |
| } |
| |
| } |
| |
| } |
| |
| } |
| |
| } |