| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- * {
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- }
- body {
- -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
- -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
- -webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
- background-color: #ffffff;
- font-family: system-ui, -apple-system, -apple-system-font, "Segoe UI",
- "Roboto", sans-serif;
- font-size: 12px;
- height: 100vh;
- margin: 0px;
- padding: 0px;
- /* Padding to avoid the "unsafe" areas behind notches in the screen */
- padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px)
- env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
- text-transform: uppercase;
- width: 100%;
- }
- .splash {
- background: #fff7ee;
- display: flex;
- align-items: center;
- justify-content: center;
- height: 100vh;
- }
- .splash .banner-logo {
- width: 100%;
- height: auto;
- }
- #app {
- display: flex;
- flex-direction: column;
- }
- .banner-logo {
- width: 100%;
- height: 160px;
- }
- .cell {
- height: 60px;
- display: flex;
- align-items: center;
- border-bottom: 1px solid #f2f4f5;
- margin: 0 20px 0 20px;
- }
- .cell .icon {
- width: 24px;
- min-width: 24px;
- height: 24px;
- }
- .content {
- flex-grow: 1;
- font-size: 16px;
- color: black;
- font-weight: bold;
- line-height: 60px;
- margin-left: 30px;
- border: none;
- outline: none;
- background: none;
- }
- .content::-webkit-input-placeholder {
- color: #aaacad;
- font-size: 13px;
- line-height: 60px;
- font-weight: 400;
- }
- .content::-moz-placeholder {
- color: #aaacad;
- font-size: 13px;
- line-height: 60px;
- font-weight: 400;
- }
- .content:-ms-input-placeholder {
- color: #aaacad;
- font-size: 13px;
- line-height: 60px;
- font-weight: 400;
- }
- .btn-code {
- width: 86px;
- height: 34px;
- background: #f7931d;
- border-radius: 17px;
- font-size: 12px;
- color: #ffffff;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .btn-code.disabled {
- background: #8f9294;
- }
- .btn-confirm {
- width: 230px;
- height: 50px;
- background: #f7931d;
- border-radius: 25px;
- font-size: 16px;
- color: #ffffff;
- font-weight: bold;
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 35px auto 20px auto;
- }
- .btn-confirm.disabled {
- background: #8f9294;
- }
- /*!
- * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
- * Copyright 2015 Daniel Cardoso <@DanielCardoso>
- * Licensed under MIT
- */
- .la-line-scale,
- .la-line-scale > div {
- position: relative;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- .la-line-scale {
- display: block;
- font-size: 0;
- color: #fff;
- }
- .la-line-scale.la-dark {
- color: #333;
- }
- .la-line-scale > div {
- display: inline-block;
- float: none;
- background-color: currentColor;
- border: 0 solid currentColor;
- }
- .la-line-scale {
- width: 40px;
- height: 32px;
- }
- .la-line-scale > div {
- width: 4px;
- height: 32px;
- margin: 2px;
- margin-top: 0;
- margin-bottom: 0;
- border-radius: 0;
- -webkit-animation: line-scale 1.2s infinite ease;
- -moz-animation: line-scale 1.2s infinite ease;
- -o-animation: line-scale 1.2s infinite ease;
- animation: line-scale 1.2s infinite ease;
- }
- .la-line-scale > div:nth-child(1) {
- -webkit-animation-delay: -1.2s;
- -moz-animation-delay: -1.2s;
- -o-animation-delay: -1.2s;
- animation-delay: -1.2s;
- }
- .la-line-scale > div:nth-child(2) {
- -webkit-animation-delay: -1.1s;
- -moz-animation-delay: -1.1s;
- -o-animation-delay: -1.1s;
- animation-delay: -1.1s;
- }
- .la-line-scale > div:nth-child(3) {
- -webkit-animation-delay: -1s;
- -moz-animation-delay: -1s;
- -o-animation-delay: -1s;
- animation-delay: -1s;
- }
- .la-line-scale > div:nth-child(4) {
- -webkit-animation-delay: -0.9s;
- -moz-animation-delay: -0.9s;
- -o-animation-delay: -0.9s;
- animation-delay: -0.9s;
- }
- .la-line-scale > div:nth-child(5) {
- -webkit-animation-delay: -0.8s;
- -moz-animation-delay: -0.8s;
- -o-animation-delay: -0.8s;
- animation-delay: -0.8s;
- }
- .la-line-scale.la-sm {
- width: 20px;
- height: 16px;
- }
- .la-line-scale.la-sm > div {
- width: 2px;
- height: 16px;
- margin: 1px;
- margin-top: 0;
- margin-bottom: 0;
- }
- .la-line-scale.la-2x {
- width: 80px;
- height: 64px;
- }
- .la-line-scale.la-2x > div {
- width: 8px;
- height: 64px;
- margin: 4px;
- margin-top: 0;
- margin-bottom: 0;
- }
- .la-line-scale.la-3x {
- width: 120px;
- height: 96px;
- }
- .la-line-scale.la-3x > div {
- width: 12px;
- height: 96px;
- margin: 6px;
- margin-top: 0;
- margin-bottom: 0;
- }
- /*
- * Animation
- */
- @-webkit-keyframes line-scale {
- 0%,
- 40%,
- 100% {
- -webkit-transform: scaleY(0.4);
- transform: scaleY(0.4);
- }
- 20% {
- -webkit-transform: scaleY(1);
- transform: scaleY(1);
- }
- }
- @-moz-keyframes line-scale {
- 0%,
- 40%,
- 100% {
- -webkit-transform: scaleY(0.4);
- -moz-transform: scaleY(0.4);
- transform: scaleY(0.4);
- }
- 20% {
- -webkit-transform: scaleY(1);
- -moz-transform: scaleY(1);
- transform: scaleY(1);
- }
- }
- @-o-keyframes line-scale {
- 0%,
- 40%,
- 100% {
- -webkit-transform: scaleY(0.4);
- -o-transform: scaleY(0.4);
- transform: scaleY(0.4);
- }
- 20% {
- -webkit-transform: scaleY(1);
- -o-transform: scaleY(1);
- transform: scaleY(1);
- }
- }
- @keyframes line-scale {
- 0%,
- 40%,
- 100% {
- -webkit-transform: scaleY(0.4);
- -moz-transform: scaleY(0.4);
- -o-transform: scaleY(0.4);
- transform: scaleY(0.4);
- }
- 20% {
- -webkit-transform: scaleY(1);
- -moz-transform: scaleY(1);
- -o-transform: scaleY(1);
- transform: scaleY(1);
- }
- }
|