123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463 |
- @bodybg:#fff;
- @bodycolor:#000;
- @headercolor:#fff;
- @footercolor:#fff;
- @panelbg:#fff;
- @panelcolor:#000;
- *, *:before, *:after {
- -webkit-user-select:none;
- -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
- -moz-tap-highlight-color:rgba(0, 0, 0, 0);
- -moz-user-select:-moz-none;
- -webkit-touch-callout: none;
- margin:0;
- padding:0;
- -webkit-box-sizing:border-box;
- -moz-box-sizing:border-box;
- box-sizing:border-box;
- -ms-touch-action:pan-y;
- }
- body,header,footer {
- }
- body, html {
- -ms-overflow-style: none !important;
- width:100%;
- height:100%;
- overflow:hidden;
- }
- body {
- overflow-x:hidden;
- -webkit-text-size-adjust:none;
- font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
- color:@bodycolor;
- font-size:14px;
- display:-webkit-box;
- -webkit-box-orient: vertical;
- -webkit-box-align:stretch;
- background:@bodybg;
- }
- input,textarea {
- -webkit-user-select:text;
- -moz-user-select:-moz-text;
- -moz-user-select:text;
- }
- img {
- border:none;
- }
- p {
- display:block;
- margin:6px 0;
- font-size:14px;
- line-height:20px;
- color:inherit;
- }
- .view {
- display:none;
- overflow:hidden;
- position:absolute;
- top:0px;
- left:0px;
- height:100%;
- width:100%;
- header {
- position:relative;
- overflow: hidden;
- display:block;
- z-index:250;
- -webkit-box-sizing:border-box;
- box-sizing:border-box;
- height:44px;
- left:0;
- right:0;
- h1 {
- position: absolute;
- width: 45%;
- z-index: 1;
- height: 44px;
- font-size: 18px;
- font-weight: bold;
- left: 27.5%;
- color: @headercolor;
- padding: 10px 0;
- text-shadow: rgba(0,0,0,0.8) 0 -1px 0;
- text-align: center;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- }
- footer {
- z-index:180;
- height:49px;
- display:block;
- left:0;
- right:0;
- position:relative;
- padding:0 3px;
- display: -webkit-box;
- display: -moz-box;
- display: box;
- display: -ms-flexbox;
- display: -webkit-flex;
- display: -moz-flex;
- display: -ms-flex;
- display: flex;
- a {
- height: 100%;
- font-size:12px;
- font-weight:normal;
- text-decoration: none;
- color: @footercolor ;
- text-align: center;
- -webkit-box-flex: 1;
- -moz-box-flex: 1;
- -ms-box-flex: 1;
- box-flex: 1;
- -webkit-flex: 1;
- -moz-flex: 1;
- -ms-flex: 1;
- flex: 1;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- display: block;
- padding-top:3px;
- }
- a.button {
- color:black;
- }
- .icon:not(.button):before {
- display:block;
- position:relative;
- top:2px;
- left:0;
- font-size: 25px;
- margin:auto;
- width: 100%;
- margin-bottom:5px;
- }
- }
- }
- .view.active {
- display: -webkit-box;
- display: -moz-box;
- display: box;
- display: -ms-flexbox;
- -webkit-box-orient: vertical;
- -moz-box-orient: vertical;
- -ms-box-orient: vertical;
- box-orient: vertical;
- display: -webkit-flex;
- display: -moz-flex;
- display: -ms-flex;
- display: flex;
- -webkit-flex-direction: column;
- -moz-flex-direction: column;
- -ms-flex-direction: column;
- flex-direction: column;
- height:100%;
- width:100%;
- }
- .pages {
- z-index:180;
- position:relative;
- -webkit-box-flex: 1;
- -moz-box-flex: 1;
- -ms-box-flex: 1;
- box-flex: 1;
- -webkit-flex: 1;
- -moz-flex: 1;
- -ms-flex: 1;
- flex: 1;
- background:@panelbg;
- color:@panelcolor;
- overflow:hidden;
- }
- .panel {
- width:100%;
- height:100%;
- position:absolute;
- top:0px;
- left:0px;
- display:none;
- padding:10px;
- padding-top:0px;
- overflow-x:hidden;
- overflow-y:auto;
- touch-action:pan-y;
- -webkit-overflow-scrolling:touch;
- }
- .panel.active {
- display:block;
- }
- .panel.x-scroll {
- overflow-x:auto;
- overflow-y:hidden;
- touch-action:pan-x;
- }
- .panel.no-scroll {
- overflow:hidden;
- touch-action:none;
- }
- nav {
- height:100%;
- width:200px;
- position:absolute;
- top:0px;
- left:0px;
- background:#ccc;
- display:none;
- box-shadow:0 0 8px 0 black;
- z-index:30;
- }
- nav.right {
- height:100%;
- width:200px;
- position:absolute;
- top:0px;
- left:auto;
- right:0px;
- }
- nav.active {
- display:block;
- }
- .splashscreen {
- background:rgba(29,29,28,1) !important;
- padding-left:40px;
- padding-top:30px !important;
- min-height:100%;
- }
- h2 {
- display:block;
- height:34px;
- font-weight: bold;
- font-size:18px;
- color:#000;
- padding:6px 0;
- margin-bottom:8px;
- }
- .afui_mask {
- position:absolute;
- top:45%;
- z-index:999999;
- }
- .afui_panel_mask {
- position:absolute;
- top:0;
- bottom:0;
- left:0;
- right:0;
- z-index:2000;
- background-color:rgba(0,0,0,0.1);
- display:none;
- }
- /* Chevrons */
- @font-face {
- font-family: 'chevron';
- src: url(data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAQAAA0AAAAABZgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABMAAAABoAAAAcZ/T02kdERUYAAAFMAAAAHwAAACAAMgAGT1MvMgAAAWwAAABHAAAAVj7i2r5jbWFwAAABtAAAAEMAAAFS8BX0J2dhc3AAAAH4AAAACAAAAAj//wADZ2x5ZgAAAgAAAABsAAAAbMHrMoZoZWFkAAACbAAAADAAAAA2/JaSB2hoZWEAAAKcAAAAHgAAACQDav/GaG10eAAAArwAAAATAAAAFAN1AB1sb2NhAAAC0AAAAAwAAAAMAA4ANm1heHAAAALcAAAAHQAAACAASAAbbmFtZQAAAvwAAADdAAABhigr581wb3N0AAAD3AAAACIAAAA8nFVDO3icY2BgYGQAgjO2i86D6LO3V7LCaABOtwcoAAB4nGNgZGBg4ANiCQYQYGJgZGBmYAGSLGAeAwAEkAA5AHicY2BkVGCcwMDKwMGozGjJwMBgB6WvM4gxFDMwMDGwMjPAgQCCyRCQ5prC4PCB4UMIY8P/AwwajA0MDg0MDIwgOQBg6QqyAHicY2BgYGaAYBkGRgYQ8AHyGMF8FgYDIM0BhEwgiQ8MH0L+/0dmCTDzb4DqAgNGNgY4lxGkh4kBFTAyDHsAAFhbChsAAAAAAf//AAIAAQAA/8ABwAGAAAIAABEBIQHA/kABgP5AAAAAAAEAHf/tARMBcwAXAAAlFA8BBiIvASY1ND8BJyY1ND8BNjIfARYBEwmkCRoJFAkJenoJCRQIHAikCbANCqMJCRMKDQ0JenkKDQ0JEwoKowl4nGNgZGBgAOLcX7xy8fw2Xxm4GQ8ARRjO3l7JiqD/H2A8wNgA5HIwMIFEAUPwC7d4nGNgZGBgbPh/gEGD8QADwz8HIAkUQQGsAIQZBTAAAHicYzzAAAFTIRSjAoMsABVQAZUAAAAAAAAAAAAADgA2eJxjYGRgYGBlkGAA0QwMTEDMCGY7gPkMAAUvAGQAAAB4nHWOTWoCQRBG3+hoCIbgKmTZkE02M3RPwIUHmAO4cC/SjII40P7gSbLKEbL0GB4gR8gx/JzUJgsbin68rqqvgSc+ybidjAfGxj3xu3GfN07Gufy38YARF+Oh/K86s/xR5rmbunFP/Grcp8Yb5/JfxgNeOBsP5X9YsiJyJNGyheUqHlMrmMk2HNiw0Buz2Bw2C0Hd9e27O6kj4qgoleaYqv7v+3NBrwUTVSUKfGhNu93XbWqiq0rvps5yRcEXk6LyQU33/jaXTexYW0bo8pnHtFtrRyj93dkrAWI51wAAAHicY2BiwA9YgZiRgYmRiZGZvTQv083AwABCm5oAACfXBG0AAA==) format('woff'),
- url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAANAIAAAwBQRkZUTWf09NoAAAV8AAAAHEdERUYAMgAGAAAFXAAAACBPUy8yPuLavgAAAVgAAABWY21hcPAV9CcAAAHEAAABUmdhc3D//wADAAAFVAAAAAhnbHlmwesyhgAAAyQAAABsaGVhZPyWkgcAAADcAAAANmhoZWEDav/GAAABFAAAACRobXR4A3UAHQAAAbAAAAAUbG9jYQAOADYAAAMYAAAADG1heHAASAAbAAABOAAAACBuYW1lKCvnzQAAA5AAAAGGcG9zdJxVQzsAAAUYAAAAPAABAAAAAQAAbfoNHl8PPPUACwHAAAAAAM3bqQUAAAAAzdupBQAA/8ABwAGAAAAACAACAAAAAAAAAAEAAAGA/8AAKAHAAAD+QAHAAAEAAAAAAAAAAAAAAAAAAAAFAAEAAAAFABgAAQAAAAAAAgAAAAEAAQAAAEAAAAAAAAAAAQEgAZAABQAIASMBOQAAAD4BIwE5AAAA1wAWAHMAAAIABQMAAAAAAAAAAAAAEAAAAAAAAAAAAAAAUGZFZABA8ADwVAGA/8AAKAGAAECAAAABAAAAAAAAAcAAAAAAAAAAlQAAAAAAAAEgAB0AAAADAAAAAwAAABwAAQAAAAAATAADAAEAAAAcAAQAMAAAAAgACAACAAAAAPAA8FT//wAAAADwAPBU//8AABADD7AAAQAAAAAAAAAAAAABBgAAAQAAAAAAAAABAgAAAAIAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgA2AAEAAP/AAcABgAACAAARASEBwP5AAYD+QAAAAAABAB3/7QETAXMAFwAAJRQPAQYiLwEmNTQ/AScmNTQ/ATYyHwEWARMJpAkaCRQJCXp6CQkUCBwIpAmwDQqjCQkTCg0NCXp5Cg0NCRMKCqMJAAAADACWAAEAAAAAAAEABwAQAAEAAAAAAAIABwAoAAEAAAAAAAMAIwB4AAEAAAAAAAQABwCsAAEAAAAAAAUACwDMAAEAAAAAAAYABwDoAAMAAQQJAAEADgAAAAMAAQQJAAIADgAYAAMAAQQJAAMARgAwAAMAAQQJAAQADgCcAAMAAQQJAAUAFgC0AAMAAQQJAAYADgDYAGMAaABlAHYAcgBvAG4AAGNoZXZyb24AAFIAZQBnAHUAbABhAHIAAFJlZ3VsYXIAAEYAbwBuAHQARgBvAHIAZwBlACAAMgAuADAAIAA6ACAAYwBoAGUAdgByAG8AbgAgADoAIAAxADAALQA2AC0AMgAwADEAMwAARm9udEZvcmdlIDIuMCA6IGNoZXZyb24gOiAxMC02LTIwMTMAAGMAaABlAHYAcgBvAG4AAGNoZXZyb24AAFYAZQByAHMAaQBvAG4AIAAxAC4AMAAAVmVyc2lvbiAxLjAAAGMAaABlAHYAcgBvAG4AAGNoZXZyb24AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAQACAQIBAwd1bmlGMDAwB3VuaUYwNTQAAAAB//8AAgABAAAADgAAABgAAAAAAAIAAQADAAQAAQAEAAAAAgAAAAAAAQAAAADMPaLPAAAAAM3bqQUAAAAAzdupBQ==) format('truetype');
- font-weight: normal;
- font-style: normal;
- }
- .chevron {
- font-family: 'chevron';
- speak: none;
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- line-height: 1;
- -webkit-font-smoothing: antialiased;
- }
- .chevron:after {
- content: "\f054";
- }
- .chevron.left {
- -webkit-transform:rotate(180deg);
- transform:rotate(180deg);
- }
- .card {
- padding: 1.5rem;
- box-shadow: 0 1px 4px #aaa;
- background: inherit;
- color:inherit;
- margin: 0 1rem 1rem;
- border-radius: 3px;
- -webkit-user-select: none;
- position:relative;
- }
- .card h1 {
- font-size: 2rem;
- font-weight: 200;
- }
- .card h1.info:after {
- position:absolute;
- right:1.5rem;
- top:1.5rem;
- content:'i';
- color:#ccc;
- border:thin solid #ccc;
- font-size:10px;
- border-radius: 14px;
- width: 14px;
- height: 14px;
- text-align: center;
- }
- .card h2 {
- font-size: .9rem;
- line-height: 2.5;
- color: #ccc;
- font-weight: 400;
- }
- .card p {
- margin:0px;
- padding:10px;
- }
- #afui_mask {
- position: absolute;
- top: 45%;
- z-index: 999999;
- border-radius:30px;
- }
- @media print {
- body {
- overflow:visible;
- }
- .panel {
- overflow-x:visible !important;
- overflow-y:visible !important;
- overflow:visible !important;
- }
- }
- .panel.active, .panel.animation-active {
- display:block !important;
- z-index:100;
- -webkit-animation-timing-function: linear !important;
- animation-timing-function: linear !important;
- }
- .animation-active {
- -webkit-animation-timing-function: linear !important;
- animation-timing-function: linear !important;
- }
- .panel.animation-active {
- -webkit-transition-duration: 300ms;
- transition-duration: 300ms;
- }
- .fast {
- -webkit-transition-duration: 100ms !important;
- transition-duration: 100ms !important;
- }
- .none-in,.none-out {
- -webkit-animation: noTransition 1ms forwards;
- animation: noTransition 1ms forwards;
- }
- .blank-in,.blank-out,.blank {
- -webkit-animation: noTransition 300ms forwards;
- animation: noTransition 300ms forwards;
- }
- @-webkit-keyframes noTransition {
- from {
- opacity:1.0;
- }
- to {
- opacity:0.99
- }
- }
- @keyframes noTransition {
- from {
- opacity:1.0;
- }
- to {
- opacity:0.99;
- }
- }
- .slide-in {
- -webkit-animation: slide-inAnimation 300ms forwards;
- animation: slide-inAnimation 300ms forwards;
-
- }
- @-webkit-keyframes slide-inAnimation {
- 0% { -webkit-transform:translate3d(100%,0,0)}
- 100% { -webkit-transform:translate3d(0,0,0)}
- }
- @keyframes slide-inAnimation {
- 0% { transform:translate3d(100%,0,0)}
- 100% { transform:translate3d(0,0,0)}
- }
- .slide-in.animation-reverse {
- -webkit-animation: slide-inAnimationReverse 450ms forwards;
- animation: slide-inAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes slide-inAnimationReverse {
- 100% { -webkit-transform:translate3d(100%,0,0)}
- 0% { -webkit-transform:translate3d(0,0,0)}
- }
- @keyframes slide-inAnimationReverse {
- 100% { transform:translate3d(100%,0,0)}
- 0% { transform:translate3d(0,0,0)}
- }
- .slide-out {
- -webkit-animation: slide-outAnimation 300ms forwards;
- animation: slide-outAnimation 300ms forwards;
-
- }
- @-webkit-keyframes slide-outAnimation {
- 0% { -webkit-transform:translate3d(0%,0,0)}
- 100% { -webkit-transform:translate3d(-200px,0,0)}
- }
- @keyframes slide-outAnimation {
- 0% { transform:translate3d(0%,0,0)}
- 100% { transform:translate3d(-200px,0,0)}
- }
- .slide-out.animation-reverse {
- -webkit-animation: slide-outAnimationReverse 450ms forwards;
- animation: slide-outAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes slide-outAnimationReverse {
- 100% { -webkit-transform:translate3d(0%,0,0)}
- 0% { -webkit-transform:translate3d(-200px,0,0)}
- }
- @keyframes slide-outAnimationReverse {
- 100% { transform:translate3d(0%,0,0)}
- 0% { transform:translate3d(-200px,0,0)}
- }
- .slide-full-in {
- -webkit-animation: slide-full-inAnimation 300ms forwards;
- animation: slide-full-inAnimation 300ms forwards;
-
- }
- @-webkit-keyframes slide-full-inAnimation {
- 0% { -webkit-transform:translate3d(100%,0,0)}
- 100% { -webkit-transform:translate3d(0,0,0)}
- }
- @keyframes slide-full-inAnimation {
- 0% { transform:translate3d(100%,0,0)}
- 100% { transform:translate3d(0,0,0)}
- }
- .slide-full-in.animation-reverse {
- -webkit-animation: slide-full-inAnimationReverse 450ms forwards;
- animation: slide-full-inAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes slide-full-inAnimationReverse {
- 100% { -webkit-transform:translate3d(100%,0,0)}
- 0% { -webkit-transform:translate3d(0,0,0)}
- }
- @keyframes slide-full-inAnimationReverse {
- 100% { transform:translate3d(100%,0,0)}
- 0% { transform:translate3d(0,0,0)}
- }
- .slide-full-out {
- -webkit-animation: slide-full-outAnimation 300ms forwards;
- animation: slide-full-outAnimation 300ms forwards;
-
- }
- @-webkit-keyframes slide-full-outAnimation {
- 0% { -webkit-transform:translate3d(0%,0,0)}
- 100% { -webkit-transform:translate3d(-100%,0,0)}
- }
- @keyframes slide-full-outAnimation {
- 0% { transform:translate3d(0%,0,0)}
- 100% { transform:translate3d(-100%,0,0)}
- }
- .slide-full-out.animation-reverse {
- -webkit-animation: slide-full-outAnimationReverse 450ms forwards;
- animation: slide-full-outAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes slide-full-outAnimationReverse {
- 100% { -webkit-transform:translate3d(0%,0,0)}
- 0% { -webkit-transform:translate3d(-100%,0,0)}
- }
- @keyframes slide-full-outAnimationReverse {
- 100% { transform:translate3d(0%,0,0)}
- 0% { transform:translate3d(-100%,0,0)}
- }
- .pop-in {
- -webkit-animation: pop-inAnimation 300ms forwards;
- animation: pop-inAnimation 300ms forwards;
-
- }
- @-webkit-keyframes pop-inAnimation {
- 0% { opacity: 0; -webkit-transform: scale(0.5)}
- 100% { opacity: 1; -webkit-transform: scale(1)}
- }
- @keyframes pop-inAnimation {
- 0% { opacity: 0; transform: scale(0.5)}
- 100% { opacity: 1; transform: scale(1)}
- }
- .pop-in.animation-reverse {
- -webkit-animation: pop-inAnimationReverse 450ms forwards;
- animation: pop-inAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes pop-inAnimationReverse {
- 100% { opacity: 0; -webkit-transform: scale(0.5)}
- 0% { opacity: 1; -webkit-transform: scale(1)}
- }
- @keyframes pop-inAnimationReverse {
- 100% { opacity: 0; transform: scale(0.5)}
- 0% { opacity: 1; transform: scale(1)}
- }
- .pop-out {
- -webkit-animation: noTransition 300ms forwards;
- animation: noTransition 300ms forwards;
-
- }
- .fade-in {
- -webkit-animation: fade-inAnimation 300ms forwards;
- animation: fade-inAnimation 300ms forwards;
-
- }
- @-webkit-keyframes fade-inAnimation {
- 0% { opacity: 0;}
- 100% { opacity: 1;}
- }
- @keyframes fade-inAnimation {
- 0% { opacity: 0;}
- 100% { opacity: 1;}
- }
- .fade-in.animation-reverse {
- -webkit-animation: fade-inAnimationReverse 450ms forwards;
- animation: fade-inAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes fade-inAnimationReverse {
- 100% { opacity: 0;}
- 0% { opacity: 1;}
- }
- @keyframes fade-inAnimationReverse {
- 100% { opacity: 0;}
- 0% { opacity: 1;}
- }
- .fade-out {
- -webkit-animation: noTransition 300ms forwards;
- animation: noTransition 300ms forwards;
-
- }
- .up-in {
- -webkit-animation: up-inAnimation 300ms forwards;
- animation: up-inAnimation 300ms forwards;
-
- }
- @-webkit-keyframes up-inAnimation {
- 0% { -webkit-transform: translate3d(0%, 100%, 0)}
- 100% { -webkit-transform: translate3d(0%, 0%, 0)}
- }
- @keyframes up-inAnimation {
- 0% { transform: translate3d(0%, 100%, 0)}
- 100% { transform: translate3d(0%, 0%, 0)}
- }
- .up-in.animation-reverse {
- -webkit-animation: up-inAnimationReverse 450ms forwards;
- animation: up-inAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes up-inAnimationReverse {
- 100% { -webkit-transform: translate3d(0%, 100%, 0)}
- 0% { -webkit-transform: translate3d(0%, 0%, 0)}
- }
- @keyframes up-inAnimationReverse {
- 100% { transform: translate3d(0%, 100%, 0)}
- 0% { transform: translate3d(0%, 0%, 0)}
- }
- .up-out {
- -webkit-animation: up-outAnimation 300ms forwards;
- animation: up-outAnimation 300ms forwards;
-
- }
- @-webkit-keyframes up-outAnimation {
- 0% { -webkit-transform: translate3d(0%, 0, 0)}
- 100% { -webkit-transform: translate3d(0%, -200px, 0)}
- }
- @keyframes up-outAnimation {
- 0% { transform: translate3d(0%, 0, 0)}
- 100% { transform: translate3d(0%, -200px, 0)}
- }
- .up-out.animation-reverse {
- -webkit-animation: up-outAnimationReverse 450ms forwards;
- animation: up-outAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes up-outAnimationReverse {
- 100% { -webkit-transform: translate3d(0%, 0, 0)}
- 0% { -webkit-transform: translate3d(0%, -200px, 0)}
- }
- @keyframes up-outAnimationReverse {
- 100% { transform: translate3d(0%, 0, 0)}
- 0% { transform: translate3d(0%, -200px, 0)}
- }
- .down-in {
- -webkit-animation: down-inAnimation 300ms forwards;
- animation: down-inAnimation 300ms forwards;
-
- }
- @-webkit-keyframes down-inAnimation {
- 0% { -webkit-transform: translate3d(0%, -100%, 0)}
- 100% { -webkit-transform: translate3d(0%, 0%, 0)}
- }
- @keyframes down-inAnimation {
- 0% { transform: translate3d(0%, -100%, 0)}
- 100% { transform: translate3d(0%, 0%, 0)}
- }
- .down-in.animation-reverse {
- -webkit-animation: down-inAnimationReverse 450ms forwards;
- animation: down-inAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes down-inAnimationReverse {
- 100% { -webkit-transform: translate3d(0%, -100%, 0)}
- 0% { -webkit-transform: translate3d(0%, 0%, 0)}
- }
- @keyframes down-inAnimationReverse {
- 100% { transform: translate3d(0%, -100%, 0)}
- 0% { transform: translate3d(0%, 0%, 0)}
- }
- .down-out {
- -webkit-animation: down-outAnimation 300ms forwards;
- animation: down-outAnimation 300ms forwards;
-
- }
- @-webkit-keyframes down-outAnimation {
- 0% { -webkit-transform: translate3d(0%, 0%, 0)}
- 100% { -webkit-transform: translate3d(0%, 200px, 0)}
- }
- @keyframes down-outAnimation {
- 0% { transform: translate3d(0%, 0%, 0)}
- 100% { transform: translate3d(0%, 200px, 0)}
- }
- .down-out.animation-reverse {
- -webkit-animation: down-outAnimationReverse 450ms forwards;
- animation: down-outAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes down-outAnimationReverse {
- 100% { -webkit-transform: translate3d(0%, 0%, 0)}
- 0% { -webkit-transform: translate3d(0%, 200px, 0)}
- }
- @keyframes down-outAnimationReverse {
- 100% { transform: translate3d(0%, 0%, 0)}
- 0% { transform: translate3d(0%, 200px, 0)}
- }
- .flip-in {
- -webkit-animation: flip-inAnimation 300ms forwards;
- animation: flip-inAnimation 300ms forwards;
- z-index:5;backface-visibility: hidden;-webkit-backface-visibility: hidden;
- }
- @-webkit-keyframes flip-inAnimation {
- 0% { -webkit-transform:rotateY(180deg); }
- 100% { -webkit-transform:rotateY(0deg);}
- }
- @keyframes flip-inAnimation {
- 0% { transform:rotateY(180deg); }
- 100% { transform:rotateY(0deg);}
- }
- .flip-in.animation-reverse {
- -webkit-animation: flip-inAnimationReverse 450ms forwards;
- animation: flip-inAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes flip-inAnimationReverse {
- 100% { -webkit-transform:rotateY(180deg); }
- 0% { -webkit-transform:rotateY(0deg);}
- }
- @keyframes flip-inAnimationReverse {
- 100% { transform:rotateY(180deg); }
- 0% { transform:rotateY(0deg);}
- }
- .flip-out {
- -webkit-animation: flip-outAnimation 300ms forwards;
- animation: flip-outAnimation 300ms forwards;
- z-index:4;backface-visibility: hidden;-webkit-backface-visibility: hidden;
- }
- @-webkit-keyframes flip-outAnimation {
- 0% { -webkit-transform:rotateY(0deg);}
- 100% { -webkit-transform:rotateY(180deg);}
- }
- @keyframes flip-outAnimation {
- 0% { transform:rotateY(0deg);}
- 100% { transform:rotateY(180deg);}
- }
- .flip-out.animation-reverse {
- -webkit-animation: flip-outAnimationReverse 450ms forwards;
- animation: flip-outAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes flip-outAnimationReverse {
- 100% { -webkit-transform:rotateY(0deg);}
- 0% { -webkit-transform:rotateY(180deg);}
- }
- @keyframes flip-outAnimationReverse {
- 100% { transform:rotateY(0deg);}
- 0% { transform:rotateY(180deg);}
- }
- .slide-left-in {
- -webkit-animation: slide-left-inAnimation 300ms forwards;
- animation: slide-left-inAnimation 300ms forwards;
-
- }
- @-webkit-keyframes slide-left-inAnimation {
- 0% { -webkit-transform:translate3d(-100%,0,0)}
- 100% { -webkit-transform:translate3d(0,0,0)}
- }
- @keyframes slide-left-inAnimation {
- 0% { transform:translate3d(-100%,0,0)}
- 100% { transform:translate3d(0,0,0)}
- }
- .slide-left-in.animation-reverse {
- -webkit-animation: slide-left-inAnimationReverse 450ms forwards;
- animation: slide-left-inAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes slide-left-inAnimationReverse {
- 100% { -webkit-transform:translate3d(-100%,0,0)}
- 0% { -webkit-transform:translate3d(0,0,0)}
- }
- @keyframes slide-left-inAnimationReverse {
- 100% { transform:translate3d(-100%,0,0)}
- 0% { transform:translate3d(0,0,0)}
- }
- .slide-left-out {
- -webkit-animation: slide-left-outAnimation 300ms forwards;
- animation: slide-left-outAnimation 300ms forwards;
-
- }
- @-webkit-keyframes slide-left-outAnimation {
- 0% { -webkit-transform:translate3d(0%,0,0)}
- 100% { -webkit-transform:translate3d(200px,0,0)}
- }
- @keyframes slide-left-outAnimation {
- 0% { transform:translate3d(0%,0,0)}
- 100% { transform:translate3d(200px,0,0)}
- }
- .slide-left-out.animation-reverse {
- -webkit-animation: slide-left-outAnimationReverse 450ms forwards;
- animation: slide-left-outAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes slide-left-outAnimationReverse {
- 100% { -webkit-transform:translate3d(0%,0,0)}
- 0% { -webkit-transform:translate3d(200px,0,0)}
- }
- @keyframes slide-left-outAnimationReverse {
- 100% { transform:translate3d(0%,0,0)}
- 0% { transform:translate3d(200px,0,0)}
- }
- .slide-right-in {
- -webkit-animation: slide-right-inAnimation 300ms forwards;
- animation: slide-right-inAnimation 300ms forwards;
-
- }
- @-webkit-keyframes slide-right-inAnimation {
- 0% { -webkit-transform:translate3d(100%,0,0)}
- 100% { -webkit-transform:translate3d(0,0,0)}
- }
- @keyframes slide-right-inAnimation {
- 0% { transform:translate3d(100%,0,0)}
- 100% { transform:translate3d(0,0,0)}
- }
- .slide-right-in.animation-reverse {
- -webkit-animation: slide-right-inAnimationReverse 450ms forwards;
- animation: slide-right-inAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes slide-right-inAnimationReverse {
- 100% { -webkit-transform:translate3d(100%,0,0)}
- 0% { -webkit-transform:translate3d(0,0,0)}
- }
- @keyframes slide-right-inAnimationReverse {
- 100% { transform:translate3d(100%,0,0)}
- 0% { transform:translate3d(0,0,0)}
- }
- .slide-right-out {
- -webkit-animation: slide-right-outAnimation 300ms forwards;
- animation: slide-right-outAnimation 300ms forwards;
-
- }
- @-webkit-keyframes slide-right-outAnimation {
- 0% { -webkit-transform:translate3d(0%,0,0)}
- 100% { -webkit-transform:translate3d(-200px,0,0)}
- }
- @keyframes slide-right-outAnimation {
- 0% { transform:translate3d(0%,0,0)}
- 100% { transform:translate3d(-200px,0,0)}
- }
- .slide-right-out.animation-reverse {
- -webkit-animation: slide-right-outAnimationReverse 450ms forwards;
- animation: slide-right-outAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes slide-right-outAnimationReverse {
- 100% { -webkit-transform:translate3d(0%,0,0)}
- 0% { -webkit-transform:translate3d(-200px,0,0)}
- }
- @keyframes slide-right-outAnimationReverse {
- 100% { transform:translate3d(0%,0,0)}
- 0% { transform:translate3d(-200px,0,0)}
- }
- .invoke-out {
- -webkit-animation: invoke-outAnimation 500ms forwards;
- animation: invoke-outAnimation 500ms forwards;
- z-index:11
- }
- @-webkit-keyframes invoke-outAnimation {
- 0% { -webkit-transform:scale(1.0) translate3d(0%,0,0)}
- 50% { -webkit-transform: scale(0.8) translate3d(10%,0,0)}
- 100% { -webkit-transform: scale(0.8) translate3d(100%,0,0)}
- }
- @keyframes invoke-outAnimation {
- 0% { transform:scale(1.0) translate3d(0%,0,0)}
- 50% { transform: scale(0.8) translate3d(10%,0,0)}
- 100% { transform: scale(0.8) translate3d(100%,0,0)}
- }
- .invoke-out.animation-reverse {
- -webkit-animation: invoke-outAnimationReverse 750ms forwards;
- animation: invoke-outAnimationReverse 750ms forwards;
- }
- @-webkit-keyframes invoke-outAnimationReverse {
- 100% { -webkit-transform:scale(1.0) translate3d(0%,0,0)}
- 50% { -webkit-transform: scale(0.8) translate3d(10%,0,0)}
- 0% { -webkit-transform: scale(0.8) translate3d(100%,0,0)}
- }
- @keyframes invoke-outAnimationReverse {
- 100% { transform:scale(1.0) translate3d(0%,0,0)}
- 50% { transform: scale(0.8) translate3d(10%,0,0)}
- 0% { transform: scale(0.8) translate3d(100%,0,0)}
- }
- .invoke-in {
- -webkit-animation: invoke-inAnimation 500ms forwards;
- animation: invoke-inAnimation 500ms forwards;
- z-index:10
- }
- @-webkit-keyframes invoke-inAnimation {
- 0% { -webkit-transform:scale(0.6) translate3d(-130%,0,0)}
- 50% { -webkit-transform: scale(0.8) translate3d(-110%,0,0)}
- 100% { -webkit-transform: scale(1) translate3d(0,0,0)}
- }
- @keyframes invoke-inAnimation {
- 0% { transform:scale(0.6) translate3d(-130%,0,0)}
- 50% { transform: scale(0.8) translate3d(-110%,0,0)}
- 100% { transform: scale(1) translate3d(0,0,0)}
- }
- .invoke-in.animation-reverse {
- -webkit-animation: invoke-inAnimationReverse 750ms forwards;
- animation: invoke-inAnimationReverse 750ms forwards;
- }
- @-webkit-keyframes invoke-inAnimationReverse {
- 100% { -webkit-transform:scale(0.6) translate3d(-130%,0,0)}
- 50% { -webkit-transform: scale(0.8) translate3d(-110%,0,0)}
- 0% { -webkit-transform: scale(1) translate3d(0,0,0)}
- }
- @keyframes invoke-inAnimationReverse {
- 100% { transform:scale(0.6) translate3d(-130%,0,0)}
- 50% { transform: scale(0.8) translate3d(-110%,0,0)}
- 0% { transform: scale(1) translate3d(0,0,0)}
- }
- .header-load {
- -webkit-animation: header-loadAnimation 300ms forwards;
- animation: header-loadAnimation 300ms forwards;
-
- }
- @-webkit-keyframes header-loadAnimation {
- 0% { -webkit-transform: translate3d(0%, 0, 0);}
- 100% { -webkit-transform: translate3d(-90px, 0, 0);opacity:0.1}
- }
- @keyframes header-loadAnimation {
- 0% { transform: translate3d(0%, 0, 0);}
- 100% { transform: translate3d(-90px, 0, 0);opacity:0.1}
- }
- .header-load.animation-reverse {
- -webkit-animation: header-loadAnimationReverse 450ms forwards;
- animation: header-loadAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes header-loadAnimationReverse {
- 100% { -webkit-transform: translate3d(0%, 0, 0);}
- 0% { -webkit-transform: translate3d(-90px, 0, 0);opacity:0.1}
- }
- @keyframes header-loadAnimationReverse {
- 100% { transform: translate3d(0%, 0, 0);}
- 0% { transform: translate3d(-90px, 0, 0);opacity:0.1}
- }
- .header-unload {
- -webkit-animation: header-unloadAnimation 300ms forwards;
- animation: header-unloadAnimation 300ms forwards;
-
- }
- @-webkit-keyframes header-unloadAnimation {
- 0% { -webkit-transform: translate3d(0%, 0, 0);}
- 100% { -webkit-transform: translate3d(90px, 0, 0);opacity:0.1}
- }
- @keyframes header-unloadAnimation {
- 0% { transform: translate3d(0%, 0, 0);}
- 100% { transform: translate3d(90px, 0, 0);opacity:0.1}
- }
- .header-unload.animation-reverse {
- -webkit-animation: header-unloadAnimationReverse 450ms forwards;
- animation: header-unloadAnimationReverse 450ms forwards;
- }
- @-webkit-keyframes header-unloadAnimationReverse {
- 100% { -webkit-transform: translate3d(0%, 0, 0);}
- 0% { -webkit-transform: translate3d(90px, 0, 0);opacity:0.1}
- }
- @keyframes header-unloadAnimationReverse {
- 100% { transform: translate3d(0%, 0, 0);}
- 0% { transform: translate3d(90px, 0, 0);opacity:0.1}
- }
- .header-load-to {
- -webkit-animation: header-load-toAnimation 500ms forwards;
- animation: header-load-toAnimation 500ms forwards;
-
- }
- @-webkit-keyframes header-load-toAnimation {
- 0% { -webkit-transform: translate3d(90px, 0, 0);opacity:0.1}
- 100% { -webkit-transform: translate3d(0%, 0, 0);opacity:1}
- }
- @keyframes header-load-toAnimation {
- 0% { transform: translate3d(90px, 0, 0);opacity:0.1}
- 100% { transform: translate3d(0%, 0, 0);opacity:1}
- }
- .header-load-to.animation-reverse {
- -webkit-animation: header-load-toAnimationReverse 750ms forwards;
- animation: header-load-toAnimationReverse 750ms forwards;
- }
- @-webkit-keyframes header-load-toAnimationReverse {
- 100% { -webkit-transform: translate3d(90px, 0, 0);opacity:0.1}
- 0% { -webkit-transform: translate3d(0%, 0, 0);opacity:1}
- }
- @keyframes header-load-toAnimationReverse {
- 100% { transform: translate3d(90px, 0, 0);opacity:0.1}
- 0% { transform: translate3d(0%, 0, 0);opacity:1}
- }
- .header-unload-to {
- -webkit-animation: header-unload-toAnimation 500ms forwards;
- animation: header-unload-toAnimation 500ms forwards;
-
- }
- @-webkit-keyframes header-unload-toAnimation {
- 0% { -webkit-transform: translate3d(-90px, 0, 0);opacity:0.1}
- 100% { -webkit-transform: translate3d(0%, 0, 0);opacity:1}
- }
- @keyframes header-unload-toAnimation {
- 0% { transform: translate3d(-90px, 0, 0);opacity:0.1}
- 100% { transform: translate3d(0%, 0, 0);opacity:1}
- }
- .header-unload-to.animation-reverse {
- -webkit-animation: header-unload-toAnimationReverse 750ms forwards;
- animation: header-unload-toAnimationReverse 750ms forwards;
- }
- @-webkit-keyframes header-unload-toAnimationReverse {
- 100% { -webkit-transform: translate3d(-90px, 0, 0);opacity:0.1}
- 0% { -webkit-transform: translate3d(0%, 0, 0);opacity:1}
- }
- @keyframes header-unload-toAnimationReverse {
- 100% { transform: translate3d(-90px, 0, 0);opacity:0.1}
- 0% { transform: translate3d(0%, 0, 0);opacity:1}
- }
- @headerbg:#0088D1;
- @footerbg:#0088D1;
- @headercolor:#fff;
- @footercolor:#fff;
- @-ms-viewport {
- width: device-width;
- }
- body {
- .afPopup {
- border: solid 1px #33B5E5;
- border-radius: 5px;
- background:inherit;
- color:inherit;
- & > FOOTER {
- & > A {
- width: 120px;
- }
- }
- }
- #af_actionsheet {
- background:#0190d6;
- color:inherit;
- a {
- border-radius:0;
- color:black;
- background:white;
- border:none;
- text-shadow:none;
- }
- }
- }
- .view {
- header {
- background:@headerbg;
- border:none;
- border-bottom:1px solid @headerbg;
- color:@headercolor;
- h1 {
- text-shadow:none;
- width:45%;
- }
- .backButton {
- background:rgba(249,249,249,1);
- color:#fff;
- display: block;
- position: absolute;
- line-height:44px;
- left: 25px;
- text-overflow: ellipsis;
- font-size: 14px;
- padding:0;
- text-shadow: none;
- background-color: transparent;
- border:none;
- border-color:transparent;
- height: 44px;
- top:0;
- border-radius:0;
- box-shadow:none;
- margin: 0;
- padding-left: 0;
- text-align: center;
- width:50px;
- padding:0 !important;
- margin:0 !important;
- position:absolute;
- }
- }
- footer {
- background:@footerbg;
- border:none;
- border-top:1px solid @footerbg;
- box-shadow:none;
- & > a {
- color:@footercolor;
- }
- & > a.pressed:not(.button) {
- border-radius:0;
- background-color:#00AEEF;
- }
- & > a.icon.pressed:not(.button):before {
- color:inherit;
- }
- }
- }
- .backButton::before {
- z-index: -1;
- font-size:22px;
- position: absolute;
- top: -2px;
- left: -30px;
- text-align: center;
- border-radius:0;
- border: none;
- border-color:transparent;
- box-shadow: none;
- -webkit-transform: none;
- transform: none;
- font-family: 'chevron';
- speak: none;
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- line-height: 1;
- -webkit-font-smoothing: antialiased;
- content: "\f054";
- -webkit-transform:rotate(180deg);
- transform:rotate(180deg);
- background-color: transparent;
- padding:12px;
- }
- .af-badge {
- border:none;
- box-shadow:none;
- }
- .list {
- background:inherit;
- color:inherit;
- border-color:#303030;
- font-weight:normal;
- .divider {
- color:black;
- }
- & > li {
- & > a:after {
- color:#0088D1;
- }
- }
- }
- .panel {
- color:inherit;
- background:inherit;
- h2 {
- color:#0088D1;
- }
- }
- .collapsed:after {
- border-top: 6px solid;
- }
- .collapsed:before {
- border:2px solid;
- }
- .expanded:after {
- border-bottom: 6px solid;
- }
- .expanded:before {
- border:2px solid;
- }
- .collapsed:before, .expanded:before {
- border-color: inherit;
- }
- .collapsed:after, .expanded:after {
- border-top-color:inherit;
- border-top-color:inherit;
- }
- select, textarea, input[type="text"],input[type=search], input[type="password"],input[type="datetime"], input[type="datetime-local"],input[type="date"], input[type="month"],input[type="time"], input[type="week"],input[type="number"], input[type="email"],input[type="url"], input[type="tel"],input[type="color"], .input-group {
- background:inherit;
- color:inherit;
- }
- input.toggle+label:after {
- color:inherit;
- }
- input.toggle+label {
- border-radius:0;
- & > span {
- border-radius:0;
- top:0;
- width:27px;
- height:23px;
- }
- }
- label {
- color:inherit;
- }
- input[type="radio"]:checked+label:before, input[type="checkbox"]:checked+label:before {
- background: #33B5E5;
- }
- .button {
- border-radius:0;
- text-shadow:none;
- }
- .button.previous {
- border:none;
- }
- .button.next {
- border:none;
- }
- .button.previous::after {
- color:black;
- z-index: -1;
- font-size:22px;
- position: absolute;
- top: 2px;
- left: -25px;
- text-align: center;
- border-radius:0;
- border: none;
- border-color:transparent;
- box-shadow: none;
- -webkit-transform: none;
- transform: none;
- font-family: 'chevron';
- speak: none;
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- line-height: 1;
- -webkit-font-smoothing: antialiased;
- content: "\f054";
- -webkit-transform:rotate(180deg);
- transform:rotate(180deg);
- background-color: transparent;
- }
- .button.next::after {
- color:black;
- z-index: -1;
- font-size:22px;
- position: absolute;
- top: 6px;
- right: -25px;
- text-align: center;
- border-radius:0;
- border: none;
- border-color:transparent;
- box-shadow: none;
- -webkit-transform: none;
- transform: none;
- font-family: 'chevron';
- speak: none;
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- line-height: 1;
- -webkit-font-smoothing: antialiased;
- content: "\f054";
- background-color: transparent;
- }
- #af_actionsheet {
- position:absolute;
- left:0px;
- right:0px;
- padding-left:10px;
- padding-right:10px;
- padding-top:10px;
- margin:auto;
- background:black;
- float:left;
- z-index:9999;
- border-top:#fff 1px solid;
- background:rgba(71,71,71,.95);
- background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.4)), to(rgba(255,255,255,0)), color-stop(.08,rgba(255,255,255,.1)), color-stop(.08,rgba(255,255,255,0)));
- background-image:-webkit-linear-gradient(top, rgba(255,255,255,.4) 0%, rgba(255,255,255,.1) 8%, rgba(255,255,255,0) 8%);
- box-shadow:0px -1px 2px rgba(0,0,0,.4);
- bottom:0px;
- a {
- text-decoration:none;
- -webkit-transition:all 0.4s ease;
- transition:all 0.4s ease;
- text-shadow:0px -1px rgba(0,0,0,.8);
- padding:0px .25em;
- border:1px solid rgba(0,0,0,.8);
- text-overflow:ellipsis;
- border-radius:.75em;
- background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.4)), to(rgba(255,255,255,0)), color-stop(.5,rgba(255,255,255,.1)), color-stop(.5,rgba(255,255,255,0)));
- background-image:-webkit-linear-gradient(top, rgba(255,255,255,.5) 0%, rgba(255,255,255,.2) 50%, rgba(255,255,255,0) 50%);
- box-shadow:0px 1px 1px rgba(255,255,255,0.7);
- display:block;
- color:white;
- text-align:center;
- line-height:36px;
- font-size:20px;
- font-weight:bold;
- margin-bottom:10px;
- background-color:rgba(130,130,130,1);
- }
- a.selected {
- background-color:rgba(150,150,150,1);
- }
- a.cancel {
- background-color:rgba(43,43,43,1);
- color:white;
- }
- a.cancel.selected {
- background-color:rgba(73,73,73,1);
- }
- a.red {
- color:white;
- background-color:rgba(204,0,0,1);
- }
- a.red.selected {
- background-color:rgba(255,0,0,1);
- }
- }
- #mask {
- display:block;
- width:100%;
- height:100%;
- background:#000;
- z-index: 999999;
- position:fixed;
- top:0;
- left:0;
- }
- .afPopup {
- display: block;
- width: 280px;
- float:left;
- border: solid 1px #72767b;
- border-radius:10px;
- padding: 10px;
- opacity: 1;
- -webkit-transform: scale(1);
- transform:scale(1);
- position: absolute;
- z-index: 1000000;
- top: 50%;
- left: 50%;
- margin: 0px auto;
- background: rgba(70,70,70,1);
- color:white;
- & > * {
- color:inherit;
- }
- & > HEADER {
- font-weight:bold;
- font-size:20px;
- margin:0;
- padding:5px;
- }
- & > DIV {
- font-size:14px;
- margin:8px;
- }
- & > FOOTER {
- width:100%;
- text-align:center;
- display:block !important;
- & > A#cancel {
- float:left;
- }
- & > A#action {
- float:right;
- }
- & > A.center {
- float:none!important;
- width:80%;
- margin:8px;
- }
- }
- }
- .afPopup.hidden {
- opacity: 0;
- -webkit-transform: scale(0.1);
-
- }
- .afPopup.show {
- -webkit-transition: all 0.20s ease-in-out;
- transition: all 0.20s ease-in-out;
- }
- #splashscreen {
- position:absolute;
- top:0;
- bottom:0;
- width:100%;
- left:0;
- min-height:120%;
- background:rgba(29,29,28,1) !important;
- color:white !important;
- font-size:30px;
- text-align:center;
- z-index:9999;
- display:block;
- margin-left: auto !important;
- margin-right: auto !important;
- padding-top:80px !important;
- }
- .ui-icon {
- background: #666;
- background: rgba(0,0,0,.4);
- background-repeat: no-repeat;
- }
- .ui-loader {
- display: none;
- margin:10px;
- position: absolute;
- opacity: .85;
- z-index: 100;
- left: 50%;
- width: 200px;
- margin-left: -100px;
- margin-top: -35px;
- padding: 10px 30px;
- background: #666;
- background:rgba(0,0,0,.4);
- color:white;
- h1 {
- font-size: 15px;
- text-align: center;
- }
- .ui-icon {
- position: static;
- display: block;
- opacity: .9;
- margin: 10px auto;
- width: 35px;
- height: 35px;
- background-color: #eee;
- }
- }
- .ui-loader.heavy {
- opacity:1;
- }
- .spin {
- -webkit-transform: rotate(360deg);
- -webkit-animation-name: spin;
- -webkit-animation-duration: 1s;
- -webkit-animation-iteration-count: infinite;
- transform: rotate(360deg);
- animation-name: spin;
- animation-duration: 1s;
- animation-iteration-count: infinite;
- }
- @-webkit-keyframes
- spin {
- from {-webkit-transform: rotate(0deg);}
- to {-webkit-transform: rotate(360deg);}
- }
- @keyframes
- spin {
- from {transform: rotate(0deg);}
- to {transform: rotate(360deg);}
- }
- .ui-icon-loading {
- width: 40px;
- height: 40px;
- border-left:2px solid #ccc;
- border-right:2px solid #ccc;
- border-top:2px solid #ccc;
- border-bottom:2px solid #ccc;
- background:white;
- border-radius:10px;
- }
- .ui-corner-all {
- border-radius:.6em;
- }
- .swipe-reveal {
- .swipe-hidden {
- position:absolute;
- right:0px;
- top:0px;
- z-index:1;
- bottom:0px;
- }
- .swipe-content {
- display: block;
- position: relative;
- display: block;
- color: inherit;
- margin: -20px -20px -20px -10px;
- text-decoration: none;
- padding: 20px 20px 20px 10px;
- background:inherit;
- z-index:2;
- }
- }
- .swipe-hidden .button, .swipe-hidden .button.pressed {
- display:inline-block;
- height:100%;
- background:#ccc !important;
- color:white;
- border-radius:0 !important;
- border:none;
- padding: 20px 15px;
- margin:0;
- float:left;
- color:white !important;
- }
- .swipe-hidden .archive, .swipe-hidden .archive.pressed {
- background:red !important;
-
- }
- .afToast {
- width: auto;
- border: solid 1px #72767b;
- z-index: 1000000;
- margin: 0px auto;
- background: #464646;
- color:white;
- opacity:0.95;
- height:auto;
- font-size:20px;
- -webkit-transition: all 0.3s;
- transition: all 0.3s;
- text-align: left;
- line-height:46px;
- margin:5px 10px;
- border-radius:5px;
- overflow:hidden;
- & > * {
- color:inherit;
- }
- & > DIV {
- font-size:16px;
- margin:8px;
- }
- }
- .afToast.hidden {
- opacity:0.1;
- height:5px;
- overflow:hidden;
- }
- .afToastContainer {
- position:absolute;
- top:0px;
- left:0px;
- z-index:99999;
- }
- .afToast.success {
- background:#499349;
- }
- .afToast.error {
- background:#AA312A;
- }
- .afToast.warning {
- background:#DF8505;
- }
- .afToastContainer.br {
- bottom:0px;
- right:0px;
- top:auto;
- left:auto;
- }
- .afToastContainer.bl {
- bottom:0px;
- left:0px;
- top:auto;
- right:auto;
- }
- .afToastContainer.tl {
- top:0px;
- left:0px;
- right:auto;
- bottom:auto;
- }
- .afToastContainer.tr {
- top:0px;
- right:0px;
- left:auto;
- bottom:auto;
- }
- .afToastContainer.tc {
- top:0px;
- right:0px;
- bottom:auto;
- left:0px;
- }
- .afToastContainer.bc {
- top:auto;
- right:0px;
- bottom:0px;
- left:0px;
- }
- .af-badge {
- position:absolute;
- top:2px;
- right:2px;
- display:inline-block;
- min-width:20px;
- max-width:90%;
- height:20px;
- padding:0 3px;
- background-color:red;
- border-radius:20px;
- font-size:12px;
- line-height:19px;
- font-weight:bold;
- color:#fff;
- text-overflow:ellipsis;
- text-align:center;
- text-shadow:0 -1px 0 rgba(64,0,0,.6);
- }
- .af-badge.br {
- bottom:2px;
- right:2px;
- top:auto;
- left:auto;
- }
- .af-badge.bl {
- bottom:2px;
- left:2px;
- top:auto;
- right:auto;
- }
- .af-badge.tl {
- top:2px;
- left:2px;
- right:auto;
- bottom:auto;
- }
- .button {
- position:relative;
- display:inline-block;
- padding:8px 12px;
- margin:8px 0;
- font-weight:bold;
- color:#000;
- text-align:center;
- vertical-align:top;
- cursor:pointer;
- background-color:#eee;
- border:1px solid #666;
- text-decoration: none;
- z-index:2;
- }
- .button.pressed {
- background:#fff;
- }
- .button.previous {
- margin-left:16px;
- padding-left:6px;
- border-color:#666 #666 transparent transparent !important;
- }
- .button.next {
- border-color:#666 transparent #666 #666 !important;
- margin-right:16px;
- padding-right:6px;
- }
- .button.previous::after {
- z-index:-1;
- content:'';
- position:absolute;
- width:25px;
- height:27px;
- background-color:inherit;
- top:3px;
- left:-11px;
- border-radius:5px;
- border:1px solid;
- border-color:transparent transparent inherit transparent;
- -webkit-transform:rotate(45deg);
- transform:rotate(45deg);
- }
- .button.next::after {
- z-index:-1;
- content:'';
- position:absolute;
- width:25px;
- height:27px;
- background-color:inherit;
- top:3px;
- right:-11px;
- border-radius:5px;
- border:1px solid;
- border-color:transparent transparent transparent transparent;
- -webkit-transform:rotate(45deg);
- transform:rotate(45deg);
- }
- .button.block {
- display:block;
- }
- .button.flat {
- border-radius: 0;
- box-shadow:none;
- }
- .header {
- .button-grouped {
- & > .button {
- margin:0;
- border-color:#fff;
- }
- }
- .button {
- color: #fff;
- background:none;
- border-color: transparent;
- font-size:12px;
- padding:7px;
- height:32px;
- margin:5px;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .button.icon:before {
- padding-left:6px;
- }
- }
- .button-grouped {
- display:inline-block;
- margin: 5px;
- * {
- border-radius:0px;
- float:left;
- border-left:0px solid transparent;
- border-right: 1px solid #666;
- border-bottom: 1px solid #666;
- border-top: 1px solid #666;
- margin:0;
- }
- & > .button:first-child {
- border-left: 1px solid #666;
- border-top-left-radius: 3px;
- border-bottom-left-radius: 3px;
- }
- & > .button:last-child {
- border-top-right-radius: 3px;
- border-bottom-right-radius: 3px;
- }
- }
- .button-grouped.flex {
- display: -webkit-box;
- display: -moz-box;
- display: -ms-flexbox;
- display: -webkit-flex;
- display: flex;
- & > .button {
- -webkit-box-flex: 1;
- -moz-box-flex: 1 auto;
- -webkit-flex: 1 auto;
- -ms-flex: 1 auto;
- flex: 1 auto;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- .button-grouped.flex.vertical {
- display: inline-block;
- }
- .button-grouped.vertical {
- * {
- border-radius:0px;
- display:block;
- float:none;
- width:100%;
- border-left: 1px solid #666;
- border-right: 1px solid #666;
- border-top: 1px solid #666;
- border-bottom: 0px solid #666;
- }
- & > .button:first-child {
- border-top-left-radius: 3px;
- border-top-right-radius: 3px;
- border-bottom-left-radius:0px;
- border-bottom-right-radius:0px;
- }
- & > .button:last-child {
- border-top-right-radius:0px;
- border-top-left-radius:0px;
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
- border-bottom:1px solid #666;
- }
- }
- .button.gray {
- background:#999;
- border-color:#666;
- }
- .button.yellow {
- background-color:#F1C222;
- border-color:#999;
- }
- .button.red {
- color:#fff;
- text-shadow:0 -1px 0 #666;
- background:#B20000;
- border-color:#666;
- }
- .button.green {
- color:#fff;
- text-shadow:0 -1px 0 #666;
- background:#009C0C;
- border-color:#666;
- }
- .button.orange {
- color:#fff;
- text-shadow:0 -1px 0 #666;
- background-color:#FF8000;
- border-color:#666;
- }
- .button.black {
- color:#fff;
- text-shadow:none;
- background:#000;
- border-color:#666;
- }
- .button.slate {
- color:#fff;
- text-shadow:0 -1px 0 #000;
- background:#171F28;
- border-color:#666;
- }
- .backButton {
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- select,textarea,input[type="text"],input[type=search],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="tel"],input[type="color"],.input-group {
- width: 100%;
- height: 40px;
- padding: 10px;
- margin-bottom: 10px;
- background: #fff;
- border: 1px solid #ccc;
- border-radius: 5px;
- font-size: 14px;
- font-weight: normal;
- -webkit-appearance: none;
- box-sizing: border-box;
- }
- form {
- position: relative;
- }
- input[type="radio"],input[type="checkbox"] {
- display: none;
- }
- input[type="radio"] + label,input[type="checkbox"] + label {
- display: inline-block;
- width: 60%;
- float: right;
- position: relative;
- text-align: left;
- padding: 13px 0 0 8px;
- margin-top:3px;
- }
- input[type="radio"]:not(.toggle) + label:before {
- background-color: #fafafa;
- border: 1px solid #cacece;
- border-radius: 3px;
- display: block;
- position: absolute;
- top: 8px;
- left: -25px;
- height: 28px;
- width: 28px;
- font-size: 13px;
- text-align: center;
- line-height: 28px;
- content: " ";
- }
- input[type="radio"]:checked
- +
- label:before {
- background-color: #1eb0e9;
- -webkit-transition:background-color 150ms;
- transition:background-color 150ms;
- }
- input[type="checkbox"]
- +
- label:before {
- background-color: #fafafa;
- border: 1px solid #cacece;
- border-radius: 3px;
- display: block;
- position: absolute;
- top: 8px;
- left: -25px;
- height: 28px;
- width: 28px;
- font-size: 13px;
- text-align: center;
- line-height: 28px;
- content: " ";
- }
- input[type="checkbox"]:checked
- +
- label:before {
- content: '\00a0\2714';
- padding: 0px;
- display: inline-block;
- background-color:#1eb0e9;
- -webkit-transition:background-color 150ms;
- transition:background-color 150ms;
- }
- input[type="radio"]:after,input[type="checkbox"]:after {
- visibility: hidden;
- display: block;
- font-size: 0;
- content: " ";
- clear: both;
- height: 0;
- }
- input[type="search"] {
- border-radius: 20px;
- }
- label {
- float: left;
- width: 33%;
- font-weight: normal;
- font-size: 14px;
- color: inherit;
- text-align: right;
- padding: 15px 18px;
- }
- label + select,label + input[type="radio"],label + input[type="checkbox"] label + textarea,label + input[type="text"],label + input[type=search],label + input[type="password"],label + input[type="datetime"],label + input[type="datetime-local"],label + input[type="date"],label + input[type="month"],label + input[type="time"],label + input[type="week"],label + input[type="number"],label + input[type="email"],label + input[type="url"],label + input[type="tel"],label + input[type="color"],label + textarea {
- width: 66%;
- }
- textarea {
- height: auto;
- }
- .input-group {
- width: auto;
- height: auto;
- padding: 12px;
- overflow: hidden;
- }
- .input-group input:not([type='button']):not([type='submit']),.input-group textarea,.input-group select {
- margin-bottom: 0;
- background-color: transparent;
- border: 0;
- border-bottom: 1px solid #ccc;
- border-radius: 0;
- box-shadow: none;
- }
- .input-group input:not([type="submit"]):not([type="button"]):last-child,.input-group textarea:last-child,.input-group select:last-child {
- border-bottom: none;
- }
- .input-group input[type=button],.input-group input[type=submit] {
- margin: 5px;
- }
- input.toggle + label:before,input.toggle:checked + label:before {
- content: attr(data-on);
- position: absolute;
- color: #fff;
- left: 5px;
- width: 42px;
- text-align: left;
- z-index: 3;
- top: 0px;
- overflow: hidden;
- background-color: transparent;
- border: none;
- border-radius: 0px;
- text-transform: uppercase;
- display: none;
- height: 30px;
- line-height: 29px !important;
- }
- input.toggle:checked {
- +
- label:before {
- display: block;
- }
- + label:after {
- display: none;
- }
- + label {
- background: #1eb0e9;
- line-height: -1em;
- -webkit-transition:background 150ms;
- transition:background 150ms;
- & > span {
- transform: translate3d(37px, 0, 0);
- -webkit-transform: translate3d(37px, 0, 0);
- }
- }
- }
- input.toggle {
- +
- label:after {
- content: attr(data-off);
- position: absolute;
- color: #505050;
- width: 42px;
- text-align: left;
- z-index: 1;
- top: 0px;
- left: 30px;
- overflow: hidden;
- background-color: transparent;
- border: none;
- border-radius: 0px;
- text-transform: uppercase;
- height: 30px;
- line-height: 29px;
- }
- + label {
- position: relative;
- margin: 5px;
- border-radius: 50px;
- display: block;
- height: 30px;
- width: 65px;
- border: 1px solid #ccc;
- left: 33%;
- float: none;
- & > span {
- display: block;
- width: 29px;
- height: 31px;
- background: #ccc;
- border-radius: 50px;
- z-index: 5;
- top: -2px;
- left: 0px;
- position: absolute;
- transition: transform 100ms linear;
- transform: translate3d(0, 0, 0);
- -webkit-transform: translate3d(0, 0, 0);
- -webkit-transition: -webkit-transform 100ms linear;
- }
- }
- }
- .formGroupHead {
- font-size: 18px;
- font-weight: bold;
- color: inherit;
- margin: 16px 0 8px;
- }
- input[type=button],input[type=submit], button {
- font-size:inherit;
- }
- .grid {
- width: 100%;
- overflow:hidden;
- }
- .col2,.col3,.col1-3,.col2-3 {
- float: none;
- width: 100%;
- }
- .grid:after {
- content: '';
- clear: both;
- }
- @media handheld, only screen and (min-width: 768px) {
- .col2 {
- width: 50%;
- float: left;
- }
- .col3 {
- width: 33.3%;
- float: left;
- }
- .col1-3 {
- width: 33.3%;
- float: left;
- }
- .col2-3 {
- width: 66.6%;
- float: left;
- }
- }
- .list {
- margin: 0px;
- padding: 0px;
- list-style: none;
- background-color: #fff;
- margin:0 -10px;
- box-sizing: border-box;
- -webkit-box-sizing: border-box;
- li {
- display: block;
- list-style: none;
- position: relative;
- padding: 20px 20px 20px 10px;
- border-bottom: 1px solid #ccc;
- background:inherit;
- }
- li:first-child {
- /* border-top: 1px solid #ccc;*/
- }
- & > li {
- & > a {
- display: block;
- position: relative;
- display: block;
- color: inherit;
- margin: -20px -20px -20px -10px;
- text-decoration: none;
- padding: 20px 20px 20px 10px;
- }
- & > a:after, & .chevron:after {
- position: absolute;
- right: 8px;
- font-family: 'chevron';
- speak: none;
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- line-height: 1;
- -webkit-font-smoothing: antialiased;
- content: "\f054";
- top: 50%;
- margin-top: -0.5em;
- color:inherit;
- }
- }
- a {
- .af-badge {
- position: absolute;
- right: 30px;
- top: 48%;
- margin-top: -10px;
- }
- }
- .divider {
- position: relative;
- top: -1px;
- padding-top: 6px;
- padding-bottom: 6px;
- font-size: 12px;
- font-weight: bold;
- line-height: 18px;
- background-color: #dfe0e2;
- border-top: 1px solid #ccc;
- border-bottom: 1px solid #ccc;
- box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
- padding-right: 60px;
- }
- }
- .list.inset {
- border: 1px solid #ccc;
- border-radius: 6px;
- margin: 10px;
- li:first-child {
- border-top: none;
- margin-top: 3px;
- }
- li:last-child {
- border-bottom: none;
- margin-bottom:3px;
- }
- }
- @media handheld, only screen and (min-width: 768px) {
- .splitview >*:not(nav) {
- margin-left:256px;
- z-index:9;
- -webkit-transform:none !important;
- transform:none !important;
- -webkit-animation: none !important;
- animation: none !important;
- }
- .splitview > nav {
- left:0px !important;
- width:256px !important;
- display:block !important;
- z-index:10;
- -webkit-animation: none !important;
- animation: none !important;
- }
- .splitview header .menuButton{
- display:none !important;
- }
- }
- header {
- .menuButton {
- position: relative;
- top: 5px;
- right: -8px;
- height: 36px;
- width: 36px;
- z-index:2;
- float:right;
- }
- .menuButton:after {
- border-bottom: 9px double white;
- border-top: 3px solid white;
- top: 9px;
- left: 3px;
- content: "";
- height: 15px;
- position: absolute;
- width: 15px;
- }
- }
- #lockScreen {
- position: absolute;
- top:0px;
- bottom:0px;
- width:100%;
- height:100%;
- left:0px;
- z-index:99999999999999;
- background: #ccc;
- .flexContainer {
- display: -webkit-box;
- display: -moz-box;
- display: box;
- -webkit-box-orient: vertical;
- -moz-box-orient: vertical;
- box-orient: vertical;
- -webkit-box-align: center;
- -moz-box-align: center;
- box-align: center;
- -webkit-box-pack: center;
- -moz-box-pack: center;
- box-pack: center;
- }
- .keyboard {
- width:100%;
- position:absolute;
- bottom:0px;
- .row {
- display: block;
- width:100%;
- text-align: center;
- height:50px;
- line-height:50px;
- font-size:1.3em;
- font-weight: bold;
- div {
- display: block;
- width:33.33%;
- float:left;
- border:1px solid #000;
- justify-content: center;
- text-align: center;
- }
- div.grey {
- background:white;
- }
- }
- }
- .content {
- position:absolute;
- top:0px;
- bottom:170px;
- width:100%;
- text-align:center;
- -moz-box-flex: 0;
- -webkit-box-flex: 0;
- -ms-box-flex: 0;
- box-flex: 0;
- -moz-box-ordinal-group: 1;
- -webkit-box-ordinal-group: 1;
- -ms-box-ordinal-group: 1;
- box-ordinal-group: 1;
- align-items: center;
- justify-content: center;
- }
- .touched {
- background-color: white;
- }
- input[type="password"] {
- height:50px;
- font-size:40px;
- width:200px;
- text-align: center;
- }
- .icon {
- font-size:50px;
- color:white;
- margin-bottom: 10px;
- }
- .error {
- padding-top:10px;
- visibility: hidden;
- color:red;
- font-weight:bold;
- font-size:1.3em;
- }
- &.round{
- .content {
- bottom:250px;
- }
- .keyboard{
- bottom:10px;
- .row {
- display: -webkit-box;
- display: -moz-box;
- display: box;
- -webkit-box-align: center;
- -moz-box-align: center;
- box-align: center;
- -webkit-box-pack: center;
- -moz-box-pack: center;
- box-pack: center;
- margin-bottom:20px;
- div {
- -moz-box-flex: 0;
- -webkit-box-flex: 0;
- -ms-box-flex: 0;
- box-flex: 0;
- -moz-box-ordinal-group: 1;
- -webkit-box-ordinal-group: 1;
- -ms-box-ordinal-group: 1;
- box-ordinal-group: 1;
- float:none;
- width:60px;
- height:60px;
- border-radius:60px;
- line-height:60px;
- margin:10px;
- cursor:pointer;
- }
- div.grey {
- background:transparent;
- border:none;
- }
- }
- }
- input[type="password"] {
- height:50px;
- font-size:40px;
- width:200px;
- text-align: center;
- background: transparent;
- color:white;
- }
- input[type="password"]::-webkit-input-placeholder {
- color: white;
- }
- input[type="password"]::-moz-placeholder { /* Firefox 19+ */
- color: white;
- }
- input[type="password"]:-ms-input-placeholder {
- color: white;
- }
- }
- }
|