af.ui.less 130 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401
  1. @bodybg:#fff;
  2. @bodycolor:#000;
  3. @headercolor:#fff;
  4. @footercolor:#fff;
  5. @panelbg:#fff;
  6. @panelcolor:#000;
  7. *, *:before, *:after {
  8. -webkit-user-select:none;
  9. -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
  10. -moz-tap-highlight-color:rgba(0, 0, 0, 0);
  11. -moz-user-select:-moz-none;
  12. -webkit-touch-callout: none;
  13. margin:0;
  14. padding:0;
  15. -webkit-box-sizing:border-box;
  16. -moz-box-sizing:border-box;
  17. box-sizing:border-box;
  18. -ms-touch-action:pan-y;
  19. }
  20. body,header,footer {
  21. }
  22. body, html {
  23. -ms-overflow-style: none !important;
  24. width:100%;
  25. height:100%;
  26. overflow:hidden;
  27. }
  28. body {
  29. overflow-x:hidden;
  30. -webkit-text-size-adjust:none;
  31. font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
  32. color:@bodycolor;
  33. font-size:14px;
  34. display:-webkit-box;
  35. -webkit-box-orient: vertical;
  36. -webkit-box-align:stretch;
  37. background:@bodybg;
  38. }
  39. input,textarea {
  40. -webkit-user-select:text;
  41. -moz-user-select:-moz-text;
  42. -moz-user-select:text;
  43. }
  44. img {
  45. border:none;
  46. }
  47. p {
  48. display:block;
  49. margin:6px 0;
  50. font-size:14px;
  51. line-height:20px;
  52. color:inherit;
  53. }
  54. .view {
  55. display:none;
  56. overflow:hidden;
  57. position:absolute;
  58. top:0px;
  59. left:0px;
  60. height:100%;
  61. width:100%;
  62. header {
  63. position:relative;
  64. overflow: hidden;
  65. display:block;
  66. z-index:250;
  67. -webkit-box-sizing:border-box;
  68. box-sizing:border-box;
  69. height:44px;
  70. left:0;
  71. right:0;
  72. h1 {
  73. position: absolute;
  74. width: 45%;
  75. z-index: 1;
  76. height: 44px;
  77. font-size: 18px;
  78. font-weight: bold;
  79. left: 27.5%;
  80. color: @headercolor;
  81. padding: 10px 0;
  82. text-shadow: rgba(0,0,0,0.8) 0 -1px 0;
  83. text-align: center;
  84. white-space: nowrap;
  85. text-overflow: ellipsis;
  86. overflow: hidden;
  87. }
  88. }
  89. footer {
  90. z-index:180;
  91. height:49px;
  92. display:block;
  93. left:0;
  94. right:0;
  95. position:relative;
  96. padding:0 3px;
  97. display: -webkit-box;
  98. display: -moz-box;
  99. display: box;
  100. display: -ms-flexbox;
  101. display: -webkit-flex;
  102. display: -moz-flex;
  103. display: -ms-flex;
  104. display: flex;
  105. a {
  106. height: 100%;
  107. font-size:12px;
  108. font-weight:normal;
  109. text-decoration: none;
  110. color: @footercolor ;
  111. text-align: center;
  112. -webkit-box-flex: 1;
  113. -moz-box-flex: 1;
  114. -ms-box-flex: 1;
  115. box-flex: 1;
  116. -webkit-flex: 1;
  117. -moz-flex: 1;
  118. -ms-flex: 1;
  119. flex: 1;
  120. white-space: nowrap;
  121. overflow: hidden;
  122. text-overflow: ellipsis;
  123. display: block;
  124. padding-top:3px;
  125. }
  126. a.button {
  127. color:black;
  128. }
  129. .icon:not(.button):before {
  130. display:block;
  131. position:relative;
  132. top:2px;
  133. left:0;
  134. font-size: 25px;
  135. margin:auto;
  136. width: 100%;
  137. margin-bottom:5px;
  138. }
  139. }
  140. }
  141. .view.active {
  142. display: -webkit-box;
  143. display: -moz-box;
  144. display: box;
  145. display: -ms-flexbox;
  146. -webkit-box-orient: vertical;
  147. -moz-box-orient: vertical;
  148. -ms-box-orient: vertical;
  149. box-orient: vertical;
  150. display: -webkit-flex;
  151. display: -moz-flex;
  152. display: -ms-flex;
  153. display: flex;
  154. -webkit-flex-direction: column;
  155. -moz-flex-direction: column;
  156. -ms-flex-direction: column;
  157. flex-direction: column;
  158. height:100%;
  159. width:100%;
  160. }
  161. .pages {
  162. z-index:180;
  163. position:relative;
  164. -webkit-box-flex: 1;
  165. -moz-box-flex: 1;
  166. -ms-box-flex: 1;
  167. box-flex: 1;
  168. -webkit-flex: 1;
  169. -moz-flex: 1;
  170. -ms-flex: 1;
  171. flex: 1;
  172. background:@panelbg;
  173. color:@panelcolor;
  174. overflow:hidden;
  175. }
  176. .panel {
  177. width:100%;
  178. height:100%;
  179. position:absolute;
  180. top:0px;
  181. left:0px;
  182. display:none;
  183. padding:10px;
  184. padding-top:0px;
  185. overflow-x:hidden;
  186. overflow-y:auto;
  187. touch-action:pan-y;
  188. -webkit-overflow-scrolling:touch;
  189. }
  190. .panel.active {
  191. display:block;
  192. }
  193. .panel.x-scroll {
  194. overflow-x:auto;
  195. overflow-y:hidden;
  196. touch-action:pan-x;
  197. }
  198. .panel.no-scroll {
  199. overflow:hidden;
  200. touch-action:none;
  201. }
  202. nav {
  203. height:100%;
  204. width:200px;
  205. position:absolute;
  206. top:0px;
  207. left:0px;
  208. background:#ccc;
  209. display:none;
  210. box-shadow:0 0 8px 0 black;
  211. z-index:30;
  212. }
  213. nav.right {
  214. height:100%;
  215. width:200px;
  216. position:absolute;
  217. top:0px;
  218. left:auto;
  219. right:0px;
  220. }
  221. nav.active {
  222. display:block;
  223. }
  224. .splashscreen {
  225. background:rgba(29,29,28,1) !important;
  226. padding-left:40px;
  227. padding-top:30px !important;
  228. min-height:100%;
  229. }
  230. h2 {
  231. display:block;
  232. height:34px;
  233. font-weight: bold;
  234. font-size:18px;
  235. color:#000;
  236. padding:6px 0;
  237. margin-bottom:8px;
  238. }
  239. .afui_mask {
  240. position:absolute;
  241. top:45%;
  242. z-index:999999;
  243. }
  244. .afui_panel_mask {
  245. position:absolute;
  246. top:0;
  247. bottom:0;
  248. left:0;
  249. right:0;
  250. z-index:2000;
  251. background-color:rgba(0,0,0,0.1);
  252. display:none;
  253. }
  254. /* Chevrons */
  255. @font-face {
  256. font-family: 'chevron';
  257. 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'),
  258. 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');
  259. font-weight: normal;
  260. font-style: normal;
  261. }
  262. .chevron {
  263. font-family: 'chevron';
  264. speak: none;
  265. font-style: normal;
  266. font-weight: normal;
  267. font-variant: normal;
  268. text-transform: none;
  269. line-height: 1;
  270. -webkit-font-smoothing: antialiased;
  271. }
  272. .chevron:after {
  273. content: "\f054";
  274. }
  275. .chevron.left {
  276. -webkit-transform:rotate(180deg);
  277. transform:rotate(180deg);
  278. }
  279. .card {
  280. padding: 1.5rem;
  281. box-shadow: 0 1px 4px #aaa;
  282. background: inherit;
  283. color:inherit;
  284. margin: 0 1rem 1rem;
  285. border-radius: 3px;
  286. -webkit-user-select: none;
  287. position:relative;
  288. }
  289. .card h1 {
  290. font-size: 2rem;
  291. font-weight: 200;
  292. }
  293. .card h1.info:after {
  294. position:absolute;
  295. right:1.5rem;
  296. top:1.5rem;
  297. content:'i';
  298. color:#ccc;
  299. border:thin solid #ccc;
  300. font-size:10px;
  301. border-radius: 14px;
  302. width: 14px;
  303. height: 14px;
  304. text-align: center;
  305. }
  306. .card h2 {
  307. font-size: .9rem;
  308. line-height: 2.5;
  309. color: #ccc;
  310. font-weight: 400;
  311. }
  312. .card p {
  313. margin:0px;
  314. padding:10px;
  315. }
  316. #afui_mask {
  317. position: absolute;
  318. top: 45%;
  319. z-index: 999999;
  320. border-radius:30px;
  321. }
  322. @media print {
  323. body {
  324. overflow:visible;
  325. }
  326. .panel {
  327. overflow-x:visible !important;
  328. overflow-y:visible !important;
  329. overflow:visible !important;
  330. }
  331. }
  332. .panel.active, .panel.animation-active {
  333. display:block !important;
  334. z-index:100;
  335. -webkit-animation-timing-function: linear !important;
  336. animation-timing-function: linear !important;
  337. }
  338. .animation-active {
  339. -webkit-animation-timing-function: linear !important;
  340. animation-timing-function: linear !important;
  341. }
  342. .panel.animation-active {
  343. -webkit-transition-duration: 300ms;
  344. transition-duration: 300ms;
  345. }
  346. .fast {
  347. -webkit-transition-duration: 100ms !important;
  348. transition-duration: 100ms !important;
  349. }
  350. .none-in,.none-out {
  351. -webkit-animation: noTransition 1ms forwards;
  352. animation: noTransition 1ms forwards;
  353. }
  354. .blank-in,.blank-out,.blank {
  355. -webkit-animation: noTransition 300ms forwards;
  356. animation: noTransition 300ms forwards;
  357. }
  358. @-webkit-keyframes noTransition {
  359. from {
  360. opacity:1.0;
  361. }
  362. to {
  363. opacity:0.99
  364. }
  365. }
  366. @keyframes noTransition {
  367. from {
  368. opacity:1.0;
  369. }
  370. to {
  371. opacity:0.99;
  372. }
  373. }
  374. .slide-in {
  375. -webkit-animation: slide-inAnimation 300ms forwards;
  376. animation: slide-inAnimation 300ms forwards;
  377. }
  378. @-webkit-keyframes slide-inAnimation {
  379. 0% { -webkit-transform:translate3d(100%,0,0)}
  380. 100% { -webkit-transform:translate3d(0,0,0)}
  381. }
  382. @keyframes slide-inAnimation {
  383. 0% { transform:translate3d(100%,0,0)}
  384. 100% { transform:translate3d(0,0,0)}
  385. }
  386. .slide-in.animation-reverse {
  387. -webkit-animation: slide-inAnimationReverse 450ms forwards;
  388. animation: slide-inAnimationReverse 450ms forwards;
  389. }
  390. @-webkit-keyframes slide-inAnimationReverse {
  391. 100% { -webkit-transform:translate3d(100%,0,0)}
  392. 0% { -webkit-transform:translate3d(0,0,0)}
  393. }
  394. @keyframes slide-inAnimationReverse {
  395. 100% { transform:translate3d(100%,0,0)}
  396. 0% { transform:translate3d(0,0,0)}
  397. }
  398. .slide-out {
  399. -webkit-animation: slide-outAnimation 300ms forwards;
  400. animation: slide-outAnimation 300ms forwards;
  401. }
  402. @-webkit-keyframes slide-outAnimation {
  403. 0% { -webkit-transform:translate3d(0%,0,0)}
  404. 100% { -webkit-transform:translate3d(-200px,0,0)}
  405. }
  406. @keyframes slide-outAnimation {
  407. 0% { transform:translate3d(0%,0,0)}
  408. 100% { transform:translate3d(-200px,0,0)}
  409. }
  410. .slide-out.animation-reverse {
  411. -webkit-animation: slide-outAnimationReverse 450ms forwards;
  412. animation: slide-outAnimationReverse 450ms forwards;
  413. }
  414. @-webkit-keyframes slide-outAnimationReverse {
  415. 100% { -webkit-transform:translate3d(0%,0,0)}
  416. 0% { -webkit-transform:translate3d(-200px,0,0)}
  417. }
  418. @keyframes slide-outAnimationReverse {
  419. 100% { transform:translate3d(0%,0,0)}
  420. 0% { transform:translate3d(-200px,0,0)}
  421. }
  422. .slide-full-in {
  423. -webkit-animation: slide-full-inAnimation 300ms forwards;
  424. animation: slide-full-inAnimation 300ms forwards;
  425. }
  426. @-webkit-keyframes slide-full-inAnimation {
  427. 0% { -webkit-transform:translate3d(100%,0,0)}
  428. 100% { -webkit-transform:translate3d(0,0,0)}
  429. }
  430. @keyframes slide-full-inAnimation {
  431. 0% { transform:translate3d(100%,0,0)}
  432. 100% { transform:translate3d(0,0,0)}
  433. }
  434. .slide-full-in.animation-reverse {
  435. -webkit-animation: slide-full-inAnimationReverse 450ms forwards;
  436. animation: slide-full-inAnimationReverse 450ms forwards;
  437. }
  438. @-webkit-keyframes slide-full-inAnimationReverse {
  439. 100% { -webkit-transform:translate3d(100%,0,0)}
  440. 0% { -webkit-transform:translate3d(0,0,0)}
  441. }
  442. @keyframes slide-full-inAnimationReverse {
  443. 100% { transform:translate3d(100%,0,0)}
  444. 0% { transform:translate3d(0,0,0)}
  445. }
  446. .slide-full-out {
  447. -webkit-animation: slide-full-outAnimation 300ms forwards;
  448. animation: slide-full-outAnimation 300ms forwards;
  449. }
  450. @-webkit-keyframes slide-full-outAnimation {
  451. 0% { -webkit-transform:translate3d(0%,0,0)}
  452. 100% { -webkit-transform:translate3d(-100%,0,0)}
  453. }
  454. @keyframes slide-full-outAnimation {
  455. 0% { transform:translate3d(0%,0,0)}
  456. 100% { transform:translate3d(-100%,0,0)}
  457. }
  458. .slide-full-out.animation-reverse {
  459. -webkit-animation: slide-full-outAnimationReverse 450ms forwards;
  460. animation: slide-full-outAnimationReverse 450ms forwards;
  461. }
  462. @-webkit-keyframes slide-full-outAnimationReverse {
  463. 100% { -webkit-transform:translate3d(0%,0,0)}
  464. 0% { -webkit-transform:translate3d(-100%,0,0)}
  465. }
  466. @keyframes slide-full-outAnimationReverse {
  467. 100% { transform:translate3d(0%,0,0)}
  468. 0% { transform:translate3d(-100%,0,0)}
  469. }
  470. .pop-in {
  471. -webkit-animation: pop-inAnimation 300ms forwards;
  472. animation: pop-inAnimation 300ms forwards;
  473. }
  474. @-webkit-keyframes pop-inAnimation {
  475. 0% { opacity: 0; -webkit-transform: scale(0.5)}
  476. 100% { opacity: 1; -webkit-transform: scale(1)}
  477. }
  478. @keyframes pop-inAnimation {
  479. 0% { opacity: 0; transform: scale(0.5)}
  480. 100% { opacity: 1; transform: scale(1)}
  481. }
  482. .pop-in.animation-reverse {
  483. -webkit-animation: pop-inAnimationReverse 450ms forwards;
  484. animation: pop-inAnimationReverse 450ms forwards;
  485. }
  486. @-webkit-keyframes pop-inAnimationReverse {
  487. 100% { opacity: 0; -webkit-transform: scale(0.5)}
  488. 0% { opacity: 1; -webkit-transform: scale(1)}
  489. }
  490. @keyframes pop-inAnimationReverse {
  491. 100% { opacity: 0; transform: scale(0.5)}
  492. 0% { opacity: 1; transform: scale(1)}
  493. }
  494. .pop-out {
  495. -webkit-animation: noTransition 300ms forwards;
  496. animation: noTransition 300ms forwards;
  497. }
  498. .fade-in {
  499. -webkit-animation: fade-inAnimation 300ms forwards;
  500. animation: fade-inAnimation 300ms forwards;
  501. }
  502. @-webkit-keyframes fade-inAnimation {
  503. 0% { opacity: 0;}
  504. 100% { opacity: 1;}
  505. }
  506. @keyframes fade-inAnimation {
  507. 0% { opacity: 0;}
  508. 100% { opacity: 1;}
  509. }
  510. .fade-in.animation-reverse {
  511. -webkit-animation: fade-inAnimationReverse 450ms forwards;
  512. animation: fade-inAnimationReverse 450ms forwards;
  513. }
  514. @-webkit-keyframes fade-inAnimationReverse {
  515. 100% { opacity: 0;}
  516. 0% { opacity: 1;}
  517. }
  518. @keyframes fade-inAnimationReverse {
  519. 100% { opacity: 0;}
  520. 0% { opacity: 1;}
  521. }
  522. .fade-out {
  523. -webkit-animation: noTransition 300ms forwards;
  524. animation: noTransition 300ms forwards;
  525. }
  526. .up-in {
  527. -webkit-animation: up-inAnimation 300ms forwards;
  528. animation: up-inAnimation 300ms forwards;
  529. }
  530. @-webkit-keyframes up-inAnimation {
  531. 0% { -webkit-transform: translate3d(0%, 100%, 0)}
  532. 100% { -webkit-transform: translate3d(0%, 0%, 0)}
  533. }
  534. @keyframes up-inAnimation {
  535. 0% { transform: translate3d(0%, 100%, 0)}
  536. 100% { transform: translate3d(0%, 0%, 0)}
  537. }
  538. .up-in.animation-reverse {
  539. -webkit-animation: up-inAnimationReverse 450ms forwards;
  540. animation: up-inAnimationReverse 450ms forwards;
  541. }
  542. @-webkit-keyframes up-inAnimationReverse {
  543. 100% { -webkit-transform: translate3d(0%, 100%, 0)}
  544. 0% { -webkit-transform: translate3d(0%, 0%, 0)}
  545. }
  546. @keyframes up-inAnimationReverse {
  547. 100% { transform: translate3d(0%, 100%, 0)}
  548. 0% { transform: translate3d(0%, 0%, 0)}
  549. }
  550. .up-out {
  551. -webkit-animation: up-outAnimation 300ms forwards;
  552. animation: up-outAnimation 300ms forwards;
  553. }
  554. @-webkit-keyframes up-outAnimation {
  555. 0% { -webkit-transform: translate3d(0%, 0, 0)}
  556. 100% { -webkit-transform: translate3d(0%, -200px, 0)}
  557. }
  558. @keyframes up-outAnimation {
  559. 0% { transform: translate3d(0%, 0, 0)}
  560. 100% { transform: translate3d(0%, -200px, 0)}
  561. }
  562. .up-out.animation-reverse {
  563. -webkit-animation: up-outAnimationReverse 450ms forwards;
  564. animation: up-outAnimationReverse 450ms forwards;
  565. }
  566. @-webkit-keyframes up-outAnimationReverse {
  567. 100% { -webkit-transform: translate3d(0%, 0, 0)}
  568. 0% { -webkit-transform: translate3d(0%, -200px, 0)}
  569. }
  570. @keyframes up-outAnimationReverse {
  571. 100% { transform: translate3d(0%, 0, 0)}
  572. 0% { transform: translate3d(0%, -200px, 0)}
  573. }
  574. .down-in {
  575. -webkit-animation: down-inAnimation 300ms forwards;
  576. animation: down-inAnimation 300ms forwards;
  577. }
  578. @-webkit-keyframes down-inAnimation {
  579. 0% { -webkit-transform: translate3d(0%, -100%, 0)}
  580. 100% { -webkit-transform: translate3d(0%, 0%, 0)}
  581. }
  582. @keyframes down-inAnimation {
  583. 0% { transform: translate3d(0%, -100%, 0)}
  584. 100% { transform: translate3d(0%, 0%, 0)}
  585. }
  586. .down-in.animation-reverse {
  587. -webkit-animation: down-inAnimationReverse 450ms forwards;
  588. animation: down-inAnimationReverse 450ms forwards;
  589. }
  590. @-webkit-keyframes down-inAnimationReverse {
  591. 100% { -webkit-transform: translate3d(0%, -100%, 0)}
  592. 0% { -webkit-transform: translate3d(0%, 0%, 0)}
  593. }
  594. @keyframes down-inAnimationReverse {
  595. 100% { transform: translate3d(0%, -100%, 0)}
  596. 0% { transform: translate3d(0%, 0%, 0)}
  597. }
  598. .down-out {
  599. -webkit-animation: down-outAnimation 300ms forwards;
  600. animation: down-outAnimation 300ms forwards;
  601. }
  602. @-webkit-keyframes down-outAnimation {
  603. 0% { -webkit-transform: translate3d(0%, 0%, 0)}
  604. 100% { -webkit-transform: translate3d(0%, 200px, 0)}
  605. }
  606. @keyframes down-outAnimation {
  607. 0% { transform: translate3d(0%, 0%, 0)}
  608. 100% { transform: translate3d(0%, 200px, 0)}
  609. }
  610. .down-out.animation-reverse {
  611. -webkit-animation: down-outAnimationReverse 450ms forwards;
  612. animation: down-outAnimationReverse 450ms forwards;
  613. }
  614. @-webkit-keyframes down-outAnimationReverse {
  615. 100% { -webkit-transform: translate3d(0%, 0%, 0)}
  616. 0% { -webkit-transform: translate3d(0%, 200px, 0)}
  617. }
  618. @keyframes down-outAnimationReverse {
  619. 100% { transform: translate3d(0%, 0%, 0)}
  620. 0% { transform: translate3d(0%, 200px, 0)}
  621. }
  622. .flip-in {
  623. -webkit-animation: flip-inAnimation 300ms forwards;
  624. animation: flip-inAnimation 300ms forwards;
  625. z-index:5;backface-visibility: hidden;-webkit-backface-visibility: hidden;
  626. }
  627. @-webkit-keyframes flip-inAnimation {
  628. 0% { -webkit-transform:rotateY(180deg); }
  629. 100% { -webkit-transform:rotateY(0deg);}
  630. }
  631. @keyframes flip-inAnimation {
  632. 0% { transform:rotateY(180deg); }
  633. 100% { transform:rotateY(0deg);}
  634. }
  635. .flip-in.animation-reverse {
  636. -webkit-animation: flip-inAnimationReverse 450ms forwards;
  637. animation: flip-inAnimationReverse 450ms forwards;
  638. }
  639. @-webkit-keyframes flip-inAnimationReverse {
  640. 100% { -webkit-transform:rotateY(180deg); }
  641. 0% { -webkit-transform:rotateY(0deg);}
  642. }
  643. @keyframes flip-inAnimationReverse {
  644. 100% { transform:rotateY(180deg); }
  645. 0% { transform:rotateY(0deg);}
  646. }
  647. .flip-out {
  648. -webkit-animation: flip-outAnimation 300ms forwards;
  649. animation: flip-outAnimation 300ms forwards;
  650. z-index:4;backface-visibility: hidden;-webkit-backface-visibility: hidden;
  651. }
  652. @-webkit-keyframes flip-outAnimation {
  653. 0% { -webkit-transform:rotateY(0deg);}
  654. 100% { -webkit-transform:rotateY(180deg);}
  655. }
  656. @keyframes flip-outAnimation {
  657. 0% { transform:rotateY(0deg);}
  658. 100% { transform:rotateY(180deg);}
  659. }
  660. .flip-out.animation-reverse {
  661. -webkit-animation: flip-outAnimationReverse 450ms forwards;
  662. animation: flip-outAnimationReverse 450ms forwards;
  663. }
  664. @-webkit-keyframes flip-outAnimationReverse {
  665. 100% { -webkit-transform:rotateY(0deg);}
  666. 0% { -webkit-transform:rotateY(180deg);}
  667. }
  668. @keyframes flip-outAnimationReverse {
  669. 100% { transform:rotateY(0deg);}
  670. 0% { transform:rotateY(180deg);}
  671. }
  672. .slide-left-in {
  673. -webkit-animation: slide-left-inAnimation 300ms forwards;
  674. animation: slide-left-inAnimation 300ms forwards;
  675. }
  676. @-webkit-keyframes slide-left-inAnimation {
  677. 0% { -webkit-transform:translate3d(-100%,0,0)}
  678. 100% { -webkit-transform:translate3d(0,0,0)}
  679. }
  680. @keyframes slide-left-inAnimation {
  681. 0% { transform:translate3d(-100%,0,0)}
  682. 100% { transform:translate3d(0,0,0)}
  683. }
  684. .slide-left-in.animation-reverse {
  685. -webkit-animation: slide-left-inAnimationReverse 450ms forwards;
  686. animation: slide-left-inAnimationReverse 450ms forwards;
  687. }
  688. @-webkit-keyframes slide-left-inAnimationReverse {
  689. 100% { -webkit-transform:translate3d(-100%,0,0)}
  690. 0% { -webkit-transform:translate3d(0,0,0)}
  691. }
  692. @keyframes slide-left-inAnimationReverse {
  693. 100% { transform:translate3d(-100%,0,0)}
  694. 0% { transform:translate3d(0,0,0)}
  695. }
  696. .slide-left-out {
  697. -webkit-animation: slide-left-outAnimation 300ms forwards;
  698. animation: slide-left-outAnimation 300ms forwards;
  699. }
  700. @-webkit-keyframes slide-left-outAnimation {
  701. 0% { -webkit-transform:translate3d(0%,0,0)}
  702. 100% { -webkit-transform:translate3d(200px,0,0)}
  703. }
  704. @keyframes slide-left-outAnimation {
  705. 0% { transform:translate3d(0%,0,0)}
  706. 100% { transform:translate3d(200px,0,0)}
  707. }
  708. .slide-left-out.animation-reverse {
  709. -webkit-animation: slide-left-outAnimationReverse 450ms forwards;
  710. animation: slide-left-outAnimationReverse 450ms forwards;
  711. }
  712. @-webkit-keyframes slide-left-outAnimationReverse {
  713. 100% { -webkit-transform:translate3d(0%,0,0)}
  714. 0% { -webkit-transform:translate3d(200px,0,0)}
  715. }
  716. @keyframes slide-left-outAnimationReverse {
  717. 100% { transform:translate3d(0%,0,0)}
  718. 0% { transform:translate3d(200px,0,0)}
  719. }
  720. .slide-right-in {
  721. -webkit-animation: slide-right-inAnimation 300ms forwards;
  722. animation: slide-right-inAnimation 300ms forwards;
  723. }
  724. @-webkit-keyframes slide-right-inAnimation {
  725. 0% { -webkit-transform:translate3d(100%,0,0)}
  726. 100% { -webkit-transform:translate3d(0,0,0)}
  727. }
  728. @keyframes slide-right-inAnimation {
  729. 0% { transform:translate3d(100%,0,0)}
  730. 100% { transform:translate3d(0,0,0)}
  731. }
  732. .slide-right-in.animation-reverse {
  733. -webkit-animation: slide-right-inAnimationReverse 450ms forwards;
  734. animation: slide-right-inAnimationReverse 450ms forwards;
  735. }
  736. @-webkit-keyframes slide-right-inAnimationReverse {
  737. 100% { -webkit-transform:translate3d(100%,0,0)}
  738. 0% { -webkit-transform:translate3d(0,0,0)}
  739. }
  740. @keyframes slide-right-inAnimationReverse {
  741. 100% { transform:translate3d(100%,0,0)}
  742. 0% { transform:translate3d(0,0,0)}
  743. }
  744. .slide-right-out {
  745. -webkit-animation: slide-right-outAnimation 300ms forwards;
  746. animation: slide-right-outAnimation 300ms forwards;
  747. }
  748. @-webkit-keyframes slide-right-outAnimation {
  749. 0% { -webkit-transform:translate3d(0%,0,0)}
  750. 100% { -webkit-transform:translate3d(-200px,0,0)}
  751. }
  752. @keyframes slide-right-outAnimation {
  753. 0% { transform:translate3d(0%,0,0)}
  754. 100% { transform:translate3d(-200px,0,0)}
  755. }
  756. .slide-right-out.animation-reverse {
  757. -webkit-animation: slide-right-outAnimationReverse 450ms forwards;
  758. animation: slide-right-outAnimationReverse 450ms forwards;
  759. }
  760. @-webkit-keyframes slide-right-outAnimationReverse {
  761. 100% { -webkit-transform:translate3d(0%,0,0)}
  762. 0% { -webkit-transform:translate3d(-200px,0,0)}
  763. }
  764. @keyframes slide-right-outAnimationReverse {
  765. 100% { transform:translate3d(0%,0,0)}
  766. 0% { transform:translate3d(-200px,0,0)}
  767. }
  768. .invoke-out {
  769. -webkit-animation: invoke-outAnimation 500ms forwards;
  770. animation: invoke-outAnimation 500ms forwards;
  771. z-index:11
  772. }
  773. @-webkit-keyframes invoke-outAnimation {
  774. 0% { -webkit-transform:scale(1.0) translate3d(0%,0,0)}
  775. 50% { -webkit-transform: scale(0.8) translate3d(10%,0,0)}
  776. 100% { -webkit-transform: scale(0.8) translate3d(100%,0,0)}
  777. }
  778. @keyframes invoke-outAnimation {
  779. 0% { transform:scale(1.0) translate3d(0%,0,0)}
  780. 50% { transform: scale(0.8) translate3d(10%,0,0)}
  781. 100% { transform: scale(0.8) translate3d(100%,0,0)}
  782. }
  783. .invoke-out.animation-reverse {
  784. -webkit-animation: invoke-outAnimationReverse 750ms forwards;
  785. animation: invoke-outAnimationReverse 750ms forwards;
  786. }
  787. @-webkit-keyframes invoke-outAnimationReverse {
  788. 100% { -webkit-transform:scale(1.0) translate3d(0%,0,0)}
  789. 50% { -webkit-transform: scale(0.8) translate3d(10%,0,0)}
  790. 0% { -webkit-transform: scale(0.8) translate3d(100%,0,0)}
  791. }
  792. @keyframes invoke-outAnimationReverse {
  793. 100% { transform:scale(1.0) translate3d(0%,0,0)}
  794. 50% { transform: scale(0.8) translate3d(10%,0,0)}
  795. 0% { transform: scale(0.8) translate3d(100%,0,0)}
  796. }
  797. .invoke-in {
  798. -webkit-animation: invoke-inAnimation 500ms forwards;
  799. animation: invoke-inAnimation 500ms forwards;
  800. z-index:10
  801. }
  802. @-webkit-keyframes invoke-inAnimation {
  803. 0% { -webkit-transform:scale(0.6) translate3d(-130%,0,0)}
  804. 50% { -webkit-transform: scale(0.8) translate3d(-110%,0,0)}
  805. 100% { -webkit-transform: scale(1) translate3d(0,0,0)}
  806. }
  807. @keyframes invoke-inAnimation {
  808. 0% { transform:scale(0.6) translate3d(-130%,0,0)}
  809. 50% { transform: scale(0.8) translate3d(-110%,0,0)}
  810. 100% { transform: scale(1) translate3d(0,0,0)}
  811. }
  812. .invoke-in.animation-reverse {
  813. -webkit-animation: invoke-inAnimationReverse 750ms forwards;
  814. animation: invoke-inAnimationReverse 750ms forwards;
  815. }
  816. @-webkit-keyframes invoke-inAnimationReverse {
  817. 100% { -webkit-transform:scale(0.6) translate3d(-130%,0,0)}
  818. 50% { -webkit-transform: scale(0.8) translate3d(-110%,0,0)}
  819. 0% { -webkit-transform: scale(1) translate3d(0,0,0)}
  820. }
  821. @keyframes invoke-inAnimationReverse {
  822. 100% { transform:scale(0.6) translate3d(-130%,0,0)}
  823. 50% { transform: scale(0.8) translate3d(-110%,0,0)}
  824. 0% { transform: scale(1) translate3d(0,0,0)}
  825. }
  826. .header-load {
  827. -webkit-animation: header-loadAnimation 300ms forwards;
  828. animation: header-loadAnimation 300ms forwards;
  829. }
  830. @-webkit-keyframes header-loadAnimation {
  831. 0% { -webkit-transform: translate3d(0%, 0, 0);}
  832. 100% { -webkit-transform: translate3d(-90px, 0, 0);opacity:0.1}
  833. }
  834. @keyframes header-loadAnimation {
  835. 0% { transform: translate3d(0%, 0, 0);}
  836. 100% { transform: translate3d(-90px, 0, 0);opacity:0.1}
  837. }
  838. .header-load.animation-reverse {
  839. -webkit-animation: header-loadAnimationReverse 450ms forwards;
  840. animation: header-loadAnimationReverse 450ms forwards;
  841. }
  842. @-webkit-keyframes header-loadAnimationReverse {
  843. 100% { -webkit-transform: translate3d(0%, 0, 0);}
  844. 0% { -webkit-transform: translate3d(-90px, 0, 0);opacity:0.1}
  845. }
  846. @keyframes header-loadAnimationReverse {
  847. 100% { transform: translate3d(0%, 0, 0);}
  848. 0% { transform: translate3d(-90px, 0, 0);opacity:0.1}
  849. }
  850. .header-unload {
  851. -webkit-animation: header-unloadAnimation 300ms forwards;
  852. animation: header-unloadAnimation 300ms forwards;
  853. }
  854. @-webkit-keyframes header-unloadAnimation {
  855. 0% { -webkit-transform: translate3d(0%, 0, 0);}
  856. 100% { -webkit-transform: translate3d(90px, 0, 0);opacity:0.1}
  857. }
  858. @keyframes header-unloadAnimation {
  859. 0% { transform: translate3d(0%, 0, 0);}
  860. 100% { transform: translate3d(90px, 0, 0);opacity:0.1}
  861. }
  862. .header-unload.animation-reverse {
  863. -webkit-animation: header-unloadAnimationReverse 450ms forwards;
  864. animation: header-unloadAnimationReverse 450ms forwards;
  865. }
  866. @-webkit-keyframes header-unloadAnimationReverse {
  867. 100% { -webkit-transform: translate3d(0%, 0, 0);}
  868. 0% { -webkit-transform: translate3d(90px, 0, 0);opacity:0.1}
  869. }
  870. @keyframes header-unloadAnimationReverse {
  871. 100% { transform: translate3d(0%, 0, 0);}
  872. 0% { transform: translate3d(90px, 0, 0);opacity:0.1}
  873. }
  874. .header-load-to {
  875. -webkit-animation: header-load-toAnimation 500ms forwards;
  876. animation: header-load-toAnimation 500ms forwards;
  877. }
  878. @-webkit-keyframes header-load-toAnimation {
  879. 0% { -webkit-transform: translate3d(90px, 0, 0);opacity:0.1}
  880. 100% { -webkit-transform: translate3d(0%, 0, 0);opacity:1}
  881. }
  882. @keyframes header-load-toAnimation {
  883. 0% { transform: translate3d(90px, 0, 0);opacity:0.1}
  884. 100% { transform: translate3d(0%, 0, 0);opacity:1}
  885. }
  886. .header-load-to.animation-reverse {
  887. -webkit-animation: header-load-toAnimationReverse 750ms forwards;
  888. animation: header-load-toAnimationReverse 750ms forwards;
  889. }
  890. @-webkit-keyframes header-load-toAnimationReverse {
  891. 100% { -webkit-transform: translate3d(90px, 0, 0);opacity:0.1}
  892. 0% { -webkit-transform: translate3d(0%, 0, 0);opacity:1}
  893. }
  894. @keyframes header-load-toAnimationReverse {
  895. 100% { transform: translate3d(90px, 0, 0);opacity:0.1}
  896. 0% { transform: translate3d(0%, 0, 0);opacity:1}
  897. }
  898. .header-unload-to {
  899. -webkit-animation: header-unload-toAnimation 500ms forwards;
  900. animation: header-unload-toAnimation 500ms forwards;
  901. }
  902. @-webkit-keyframes header-unload-toAnimation {
  903. 0% { -webkit-transform: translate3d(-90px, 0, 0);opacity:0.1}
  904. 100% { -webkit-transform: translate3d(0%, 0, 0);opacity:1}
  905. }
  906. @keyframes header-unload-toAnimation {
  907. 0% { transform: translate3d(-90px, 0, 0);opacity:0.1}
  908. 100% { transform: translate3d(0%, 0, 0);opacity:1}
  909. }
  910. .header-unload-to.animation-reverse {
  911. -webkit-animation: header-unload-toAnimationReverse 750ms forwards;
  912. animation: header-unload-toAnimationReverse 750ms forwards;
  913. }
  914. @-webkit-keyframes header-unload-toAnimationReverse {
  915. 100% { -webkit-transform: translate3d(-90px, 0, 0);opacity:0.1}
  916. 0% { -webkit-transform: translate3d(0%, 0, 0);opacity:1}
  917. }
  918. @keyframes header-unload-toAnimationReverse {
  919. 100% { transform: translate3d(-90px, 0, 0);opacity:0.1}
  920. 0% { transform: translate3d(0%, 0, 0);opacity:1}
  921. }
  922. #af_actionsheet {
  923. position:absolute;
  924. left:0px;
  925. right:0px;
  926. padding-left:10px;
  927. padding-right:10px;
  928. padding-top:10px;
  929. margin:auto;
  930. background:black;
  931. float:left;
  932. z-index:9999;
  933. border-top:#fff 1px solid;
  934. background:rgba(71,71,71,.95);
  935. 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)));
  936. background-image:-webkit-linear-gradient(top, rgba(255,255,255,.4) 0%, rgba(255,255,255,.1) 8%, rgba(255,255,255,0) 8%);
  937. box-shadow:0px -1px 2px rgba(0,0,0,.4);
  938. bottom:0px;
  939. a {
  940. text-decoration:none;
  941. -webkit-transition:all 0.4s ease;
  942. transition:all 0.4s ease;
  943. text-shadow:0px -1px rgba(0,0,0,.8);
  944. padding:0px .25em;
  945. border:1px solid rgba(0,0,0,.8);
  946. text-overflow:ellipsis;
  947. border-radius:.75em;
  948. 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)));
  949. background-image:-webkit-linear-gradient(top, rgba(255,255,255,.5) 0%, rgba(255,255,255,.2) 50%, rgba(255,255,255,0) 50%);
  950. box-shadow:0px 1px 1px rgba(255,255,255,0.7);
  951. display:block;
  952. color:white;
  953. text-align:center;
  954. line-height:36px;
  955. font-size:20px;
  956. font-weight:bold;
  957. margin-bottom:10px;
  958. background-color:rgba(130,130,130,1);
  959. }
  960. a.selected {
  961. background-color:rgba(150,150,150,1);
  962. }
  963. a.cancel {
  964. background-color:rgba(43,43,43,1);
  965. color:white;
  966. }
  967. a.cancel.selected {
  968. background-color:rgba(73,73,73,1);
  969. }
  970. a.red {
  971. color:white;
  972. background-color:rgba(204,0,0,1);
  973. }
  974. a.red.selected {
  975. background-color:rgba(255,0,0,1);
  976. }
  977. }
  978. #lockScreen {
  979. position: absolute;
  980. top:0px;
  981. bottom:0px;
  982. width:100%;
  983. height:100%;
  984. left:0px;
  985. z-index:99999999999999;
  986. background: #ccc;
  987. .flexContainer {
  988. display: -webkit-box;
  989. display: -moz-box;
  990. display: box;
  991. -webkit-box-orient: vertical;
  992. -moz-box-orient: vertical;
  993. box-orient: vertical;
  994. -webkit-box-align: center;
  995. -moz-box-align: center;
  996. box-align: center;
  997. -webkit-box-pack: center;
  998. -moz-box-pack: center;
  999. box-pack: center;
  1000. }
  1001. .keyboard {
  1002. width:100%;
  1003. position:absolute;
  1004. bottom:0px;
  1005. .row {
  1006. display: block;
  1007. width:100%;
  1008. text-align: center;
  1009. height:50px;
  1010. line-height:50px;
  1011. font-size:1.3em;
  1012. font-weight: bold;
  1013. div {
  1014. display: block;
  1015. width:33.33%;
  1016. float:left;
  1017. border:1px solid #000;
  1018. justify-content: center;
  1019. text-align: center;
  1020. }
  1021. div.grey {
  1022. background:white;
  1023. }
  1024. }
  1025. }
  1026. .content {
  1027. position:absolute;
  1028. top:0px;
  1029. bottom:170px;
  1030. width:100%;
  1031. text-align:center;
  1032. -moz-box-flex: 0;
  1033. -webkit-box-flex: 0;
  1034. -ms-box-flex: 0;
  1035. box-flex: 0;
  1036. -moz-box-ordinal-group: 1;
  1037. -webkit-box-ordinal-group: 1;
  1038. -ms-box-ordinal-group: 1;
  1039. box-ordinal-group: 1;
  1040. align-items: center;
  1041. justify-content: center;
  1042. }
  1043. .touched {
  1044. background-color: white;
  1045. }
  1046. input[type="password"] {
  1047. height:50px;
  1048. font-size:40px;
  1049. width:200px;
  1050. text-align: center;
  1051. }
  1052. .icon {
  1053. font-size:50px;
  1054. color:white;
  1055. margin-bottom: 10px;
  1056. }
  1057. .error {
  1058. padding-top:10px;
  1059. visibility: hidden;
  1060. color:red;
  1061. font-weight:bold;
  1062. font-size:1.3em;
  1063. }
  1064. &.round{
  1065. .content {
  1066. bottom:250px;
  1067. }
  1068. .keyboard{
  1069. bottom:10px;
  1070. .row {
  1071. display: -webkit-box;
  1072. display: -moz-box;
  1073. display: box;
  1074. -webkit-box-align: center;
  1075. -moz-box-align: center;
  1076. box-align: center;
  1077. -webkit-box-pack: center;
  1078. -moz-box-pack: center;
  1079. box-pack: center;
  1080. margin-bottom:20px;
  1081. div {
  1082. -moz-box-flex: 0;
  1083. -webkit-box-flex: 0;
  1084. -ms-box-flex: 0;
  1085. box-flex: 0;
  1086. -moz-box-ordinal-group: 1;
  1087. -webkit-box-ordinal-group: 1;
  1088. -ms-box-ordinal-group: 1;
  1089. box-ordinal-group: 1;
  1090. float:none;
  1091. width:60px;
  1092. height:60px;
  1093. border-radius:60px;
  1094. line-height:60px;
  1095. margin:10px;
  1096. cursor:pointer;
  1097. }
  1098. div.grey {
  1099. background:transparent;
  1100. border:none;
  1101. }
  1102. }
  1103. }
  1104. input[type="password"] {
  1105. height:50px;
  1106. font-size:40px;
  1107. width:200px;
  1108. text-align: center;
  1109. background: transparent;
  1110. color:white;
  1111. }
  1112. input[type="password"]::-webkit-input-placeholder {
  1113. color: white;
  1114. }
  1115. input[type="password"]::-moz-placeholder { /* Firefox 19+ */
  1116. color: white;
  1117. }
  1118. input[type="password"]:-ms-input-placeholder {
  1119. color: white;
  1120. }
  1121. }
  1122. }
  1123. #mask {
  1124. display:block;
  1125. width:100%;
  1126. height:100%;
  1127. background:#000;
  1128. z-index: 999999;
  1129. position:fixed;
  1130. top:0;
  1131. left:0;
  1132. }
  1133. .afPopup {
  1134. display: block;
  1135. width: 280px;
  1136. float:left;
  1137. border: solid 1px #72767b;
  1138. border-radius:10px;
  1139. padding: 10px;
  1140. opacity: 1;
  1141. -webkit-transform: scale(1);
  1142. transform:scale(1);
  1143. position: absolute;
  1144. z-index: 1000000;
  1145. top: 50%;
  1146. left: 50%;
  1147. margin: 0px auto;
  1148. background: rgba(70,70,70,1);
  1149. color:white;
  1150. & > * {
  1151. color:inherit;
  1152. }
  1153. & > HEADER {
  1154. font-weight:bold;
  1155. font-size:20px;
  1156. margin:0;
  1157. padding:5px;
  1158. }
  1159. & > DIV {
  1160. font-size:14px;
  1161. margin:8px;
  1162. }
  1163. & > FOOTER {
  1164. width:100%;
  1165. text-align:center;
  1166. display:block !important;
  1167. & > A#cancel {
  1168. float:left;
  1169. }
  1170. & > A#action {
  1171. float:right;
  1172. }
  1173. & > A.center {
  1174. float:none!important;
  1175. width:80%;
  1176. margin:8px;
  1177. }
  1178. }
  1179. }
  1180. .afPopup.hidden {
  1181. opacity: 0;
  1182. -webkit-transform: scale(0.1);
  1183. }
  1184. .afPopup.show {
  1185. -webkit-transition: all 0.20s ease-in-out;
  1186. transition: all 0.20s ease-in-out;
  1187. }
  1188. #splashscreen {
  1189. position:absolute;
  1190. top:0;
  1191. bottom:0;
  1192. width:100%;
  1193. left:0;
  1194. min-height:120%;
  1195. background:rgba(29,29,28,1) !important;
  1196. color:white !important;
  1197. font-size:30px;
  1198. text-align:center;
  1199. z-index:9999;
  1200. display:block;
  1201. margin-left: auto !important;
  1202. margin-right: auto !important;
  1203. padding-top:80px !important;
  1204. }
  1205. .ui-icon {
  1206. background: #666;
  1207. background: rgba(0,0,0,.4);
  1208. background-repeat: no-repeat;
  1209. }
  1210. .ui-loader {
  1211. display: none;
  1212. margin:10px;
  1213. position: absolute;
  1214. opacity: .85;
  1215. z-index: 100;
  1216. left: 50%;
  1217. width: 200px;
  1218. margin-left: -100px;
  1219. margin-top: -35px;
  1220. padding: 10px 30px;
  1221. background: #666;
  1222. background:rgba(0,0,0,.4);
  1223. color:white;
  1224. h1 {
  1225. font-size: 15px;
  1226. text-align: center;
  1227. }
  1228. .ui-icon {
  1229. position: static;
  1230. display: block;
  1231. opacity: .9;
  1232. margin: 10px auto;
  1233. width: 35px;
  1234. height: 35px;
  1235. background-color: #eee;
  1236. }
  1237. }
  1238. .ui-loader.heavy {
  1239. opacity:1;
  1240. }
  1241. .spin {
  1242. -webkit-transform: rotate(360deg);
  1243. -webkit-animation-name: spin;
  1244. -webkit-animation-duration: 1s;
  1245. -webkit-animation-iteration-count: infinite;
  1246. transform: rotate(360deg);
  1247. animation-name: spin;
  1248. animation-duration: 1s;
  1249. animation-iteration-count: infinite;
  1250. }
  1251. @-webkit-keyframes
  1252. spin {
  1253. from {-webkit-transform: rotate(0deg);}
  1254. to {-webkit-transform: rotate(360deg);}
  1255. }
  1256. @keyframes
  1257. spin {
  1258. from {transform: rotate(0deg);}
  1259. to {transform: rotate(360deg);}
  1260. }
  1261. .ui-icon-loading {
  1262. width: 40px;
  1263. height: 40px;
  1264. border-left:2px solid #ccc;
  1265. border-right:2px solid #ccc;
  1266. border-top:2px solid #ccc;
  1267. border-bottom:2px solid #ccc;
  1268. background:white;
  1269. border-radius:10px;
  1270. }
  1271. .ui-corner-all {
  1272. border-radius:.6em;
  1273. }
  1274. .swipe-reveal {
  1275. .swipe-hidden {
  1276. position:absolute;
  1277. right:0px;
  1278. top:0px;
  1279. z-index:1;
  1280. bottom:0px;
  1281. }
  1282. .swipe-content {
  1283. display: block;
  1284. position: relative;
  1285. display: block;
  1286. color: inherit;
  1287. margin: -20px -20px -20px -10px;
  1288. text-decoration: none;
  1289. padding: 20px 20px 20px 10px;
  1290. background:inherit;
  1291. z-index:2;
  1292. }
  1293. }
  1294. .swipe-hidden .button, .swipe-hidden .button.pressed {
  1295. display:inline-block;
  1296. height:100%;
  1297. background:#ccc !important;
  1298. color:white;
  1299. border-radius:0 !important;
  1300. border:none;
  1301. padding: 20px 15px;
  1302. margin:0;
  1303. float:left;
  1304. color:white !important;
  1305. }
  1306. .swipe-hidden .archive, .swipe-hidden .archive.pressed {
  1307. background:red !important;
  1308. }
  1309. .afToast {
  1310. width: auto;
  1311. border: solid 1px #72767b;
  1312. z-index: 1000000;
  1313. margin: 0px auto;
  1314. background: #464646;
  1315. color:white;
  1316. opacity:0.95;
  1317. height:auto;
  1318. font-size:20px;
  1319. -webkit-transition: all 0.3s;
  1320. transition: all 0.3s;
  1321. text-align: left;
  1322. line-height:46px;
  1323. margin:5px 10px;
  1324. border-radius:5px;
  1325. overflow:hidden;
  1326. & > * {
  1327. color:inherit;
  1328. }
  1329. & > DIV {
  1330. font-size:16px;
  1331. margin:8px;
  1332. }
  1333. }
  1334. .afToast.hidden {
  1335. opacity:0.1;
  1336. height:5px;
  1337. overflow:hidden;
  1338. }
  1339. .afToastContainer {
  1340. position:absolute;
  1341. top:0px;
  1342. left:0px;
  1343. z-index:99999;
  1344. }
  1345. .afToast.success {
  1346. background:#499349;
  1347. }
  1348. .afToast.error {
  1349. background:#AA312A;
  1350. }
  1351. .afToast.warning {
  1352. background:#DF8505;
  1353. }
  1354. .afToastContainer.br {
  1355. bottom:0px;
  1356. right:0px;
  1357. top:auto;
  1358. left:auto;
  1359. }
  1360. .afToastContainer.bl {
  1361. bottom:0px;
  1362. left:0px;
  1363. top:auto;
  1364. right:auto;
  1365. }
  1366. .afToastContainer.tl {
  1367. top:0px;
  1368. left:0px;
  1369. right:auto;
  1370. bottom:auto;
  1371. }
  1372. .afToastContainer.tr {
  1373. top:0px;
  1374. right:0px;
  1375. left:auto;
  1376. bottom:auto;
  1377. }
  1378. .afToastContainer.tc {
  1379. top:0px;
  1380. right:0px;
  1381. bottom:auto;
  1382. left:0px;
  1383. }
  1384. .afToastContainer.bc {
  1385. top:auto;
  1386. right:0px;
  1387. bottom:0px;
  1388. left:0px;
  1389. }
  1390. @androidthemecolor:#33B5E5;
  1391. .android, .android .view, .android .view .pages {
  1392. font:14px 'Roboto',sans-serif;
  1393. background:#000;
  1394. color:#fff;
  1395. border-color:#fff;
  1396. }
  1397. .android.light .view, .android.light .view .pages {
  1398. background:#FDFDFD;
  1399. color:#000;
  1400. }
  1401. .android {
  1402. .view {
  1403. header {
  1404. background:inherit;
  1405. color:inherit;
  1406. border-color:@androidthemecolor;
  1407. .button {
  1408. color: inherit;
  1409. background:none;
  1410. font-size:14px;
  1411. box-shadow:none;
  1412. }
  1413. .backButton {
  1414. background: inherit;
  1415. color:inherit;
  1416. }
  1417. }
  1418. footer {
  1419. box-shadow: none;
  1420. background:inherit;
  1421. border-top:2px solid @androidthemecolor;
  1422. border-bottom:none;
  1423. padding:0;
  1424. & > a:not(.button) {
  1425. color:inherit;
  1426. top:0px;
  1427. }
  1428. & > a.pressed:not(.button) {
  1429. border:0px;
  1430. border-top:1px solid @androidthemecolor;
  1431. border-radius:0px;
  1432. background:none;
  1433. }
  1434. & > a.icon.pressed:not(.button):before {
  1435. color:inherit;
  1436. }
  1437. }
  1438. }
  1439. .menuButton:after {
  1440. border-color:white;
  1441. }
  1442. .af-badge {
  1443. border:none;
  1444. }
  1445. .list {
  1446. background:inherit;
  1447. color:inherit;
  1448. border-color:#303030;
  1449. .divider {
  1450. color:black;
  1451. }
  1452. }
  1453. .panel {
  1454. h2 {
  1455. color:inherit;
  1456. }
  1457. }
  1458. .collapsed:after {
  1459. border-top: 6px solid;
  1460. }
  1461. .collapsed:before {
  1462. border:2px solid;
  1463. }
  1464. .expanded:after {
  1465. border-bottom: 6px solid;
  1466. }
  1467. .expanded:before {
  1468. border:2px solid;
  1469. }
  1470. .afScrollbar {
  1471. background:white !important;
  1472. }
  1473. input[type="range"] {
  1474. -webkit-appearance: none;
  1475. background-color: #ccc;
  1476. height: 2px !important;
  1477. position: relative;
  1478. top: -10px;
  1479. margin-top: 15px;
  1480. }
  1481. input[type="range"]::-webkit-slider-thumb {
  1482. -webkit-appearance: none;
  1483. position: relative;
  1484. z-index: 1;
  1485. width: 21px;
  1486. height: 21px;
  1487. border-radius: 40px;
  1488. background:@androidthemecolor;
  1489. }
  1490. input.toggle+label:after {
  1491. color:inherit;
  1492. }
  1493. input.toggle+label {
  1494. border-radius:0;
  1495. & > span {
  1496. border-radius:0;
  1497. top:0;
  1498. width: 27px;
  1499. height: 29px;
  1500. }
  1501. }
  1502. input.toggle:checked+label {
  1503. background:@androidthemecolor;
  1504. }
  1505. label {
  1506. color:inherit;
  1507. }
  1508. input[type="checkbox"]+label:before {
  1509. border-radius: 0;
  1510. }
  1511. input[type="checkbox"]:not(.toggle):checked+label:before {
  1512. color: @androidthemecolor;
  1513. background:white;
  1514. }
  1515. .button {
  1516. border-radius:0;
  1517. border:none;
  1518. background:#424343;
  1519. border-color:transparent;
  1520. color:inherit;
  1521. text-shadow:none;
  1522. box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
  1523. }
  1524. .button.previous::after {
  1525. width:20px;
  1526. height:20px;
  1527. background-color:inherit;
  1528. top:5px;
  1529. left:-12px;
  1530. border-radius:0;
  1531. box-shadow:none;
  1532. border-color:transparent;
  1533. }
  1534. .button.next::after {
  1535. width:20px;
  1536. height:20px;
  1537. background-color:inherit;
  1538. top:5px;
  1539. right:-12px;
  1540. border-radius:0;
  1541. box-shadow:none;
  1542. border-color:transparent;
  1543. }
  1544. header {
  1545. .button-grouped {
  1546. & > .button {
  1547. border-color:#777;
  1548. }
  1549. }
  1550. }
  1551. .button-grouped {
  1552. * {
  1553. border:1px solid rgba(255,255,255,.25);
  1554. border-left-width:0;
  1555. box-shadow:none;
  1556. }
  1557. }
  1558. .button-grouped.vertical {
  1559. * {
  1560. border-left:1px solid rgba(255,255,255,.25);
  1561. border-bottom-width:0;
  1562. }
  1563. .button:last-child {
  1564. border-bottom:1px solid rgba(255,255,255,.25);
  1565. }
  1566. }
  1567. .afPopup {
  1568. border: solid 1px #aaa;
  1569. padding: 0;
  1570. border-radius: 0;
  1571. -webkit-transform:none;
  1572. transform:none;
  1573. -webkit-transition: none;
  1574. transition:none;
  1575. background:inherit;
  1576. background-color:rgba(0,0,0,0.9);
  1577. color:inherit;
  1578. & > HEADER {
  1579. font-weight:normal;
  1580. font-size:20px;
  1581. text-align:left;
  1582. padding:10px;
  1583. }
  1584. & > DIV {
  1585. font-size:14px;
  1586. text-align:left;
  1587. padding:10px;
  1588. margin:0;
  1589. border-top: solid 1px #aaa;
  1590. border-bottom: solid 1px #aaa;
  1591. }
  1592. & > FOOTER {
  1593. background:#bbb;
  1594. & > A#cancel {
  1595. margin-left:10px;
  1596. width:120px;
  1597. }
  1598. & > A#action {
  1599. margin-right:10px;
  1600. width:120px;
  1601. }
  1602. & > A.center {
  1603. margin:8px;
  1604. }
  1605. }
  1606. }
  1607. #af_actionsheet {
  1608. border: #666 1px solid;
  1609. border-top: @androidthemecolor 3px solid;
  1610. background:#555;
  1611. color:inherit;
  1612. margin:-20px 20px 0 20px;
  1613. padding:0px;
  1614. a {
  1615. border-radius:0;
  1616. border:0px solid #777;
  1617. background:#424343;
  1618. color:inherit;
  1619. line-height: 50px;
  1620. margin-bottom: 1px;
  1621. }
  1622. a.cancel {
  1623. margin-bottom: 0px;
  1624. background:#424343;
  1625. color:red;
  1626. }
  1627. }
  1628. }
  1629. .android.light {
  1630. .menuButton:after {
  1631. border-color:black;
  1632. }
  1633. .afScrollbar {
  1634. background:black !important;
  1635. }
  1636. .button {
  1637. background:#eee;
  1638. border-color:#D1D1D1;
  1639. }
  1640. .afPopup {
  1641. background-color:rgba(255,255,255,0.9);
  1642. }
  1643. #af_actionsheet {
  1644. border: #bbb 1px solid;
  1645. border-top: @androidthemecolor 3px solid;
  1646. background:#bbb;
  1647. a {
  1648. background:#fff;
  1649. }
  1650. }
  1651. }
  1652. .android .view .panel, {
  1653. background:inherit;
  1654. color:inherit;
  1655. }
  1656. .android .collapsed:before,.android .expanded:before {
  1657. border-color: inherit;
  1658. }
  1659. .android .collapsed:after,.android .expanded:after {
  1660. border-top-color:inherit;
  1661. border-top-color:inherit;
  1662. }
  1663. .android select, .android textarea, .android input[type="text"],.android input[type=search], .android input[type="password"],.android input[type="datetime"], .android input[type="datetime-local"],.android input[type="date"], .android input[type="month"],.android input[type="time"], .android input[type="week"],.android input[type="number"], .android input[type="email"],.android input[type="url"], .android input[type="tel"],.android input[type="color"], .android .input-group {
  1664. background:inherit;
  1665. color:inherit;
  1666. border:none;
  1667. border-radius:0;
  1668. border-bottom:1px solid #ccc;
  1669. }
  1670. .android:not(.light) {
  1671. input[type="radio"]:not(.toggle):checked+label:before {
  1672. background: @androidthemecolor;
  1673. border:2px solid white;
  1674. }
  1675. }
  1676. .android .button.pressed,.android header .button-grouped &>.button.pressed {
  1677. background:@androidthemecolor;
  1678. border-color:@androidthemecolor;
  1679. }
  1680. .android .afPopup &>FOOTER &>A, .android.light .afPopup &>FOOTER &>A {
  1681. background:#fff;
  1682. color:#111;
  1683. }
  1684. @headerbg:#0088D1;
  1685. @footerbg:#0088D1;
  1686. @headercolor:#fff;
  1687. @footercolor:#fff;
  1688. @-ms-viewport {
  1689. width: device-width;
  1690. }
  1691. body {
  1692. .afPopup {
  1693. border: solid 1px #33B5E5;
  1694. border-radius: 5px;
  1695. background:inherit;
  1696. color:inherit;
  1697. & > FOOTER {
  1698. & > A {
  1699. width: 120px;
  1700. }
  1701. }
  1702. }
  1703. #af_actionsheet {
  1704. background:#0190d6;
  1705. color:inherit;
  1706. a {
  1707. border-radius:0;
  1708. color:black;
  1709. background:white;
  1710. border:none;
  1711. text-shadow:none;
  1712. }
  1713. }
  1714. }
  1715. .view {
  1716. header {
  1717. background:@headerbg;
  1718. border:none;
  1719. border-bottom:1px solid @headerbg;
  1720. color:@headercolor;
  1721. h1 {
  1722. text-shadow:none;
  1723. width:45%;
  1724. }
  1725. .backButton {
  1726. background:rgba(249,249,249,1);
  1727. color:#fff;
  1728. display: block;
  1729. position: absolute;
  1730. line-height:44px;
  1731. left: 25px;
  1732. text-overflow: ellipsis;
  1733. font-size: 14px;
  1734. padding:0;
  1735. text-shadow: none;
  1736. background-color: transparent;
  1737. border:none;
  1738. border-color:transparent;
  1739. height: 44px;
  1740. top:0;
  1741. border-radius:0;
  1742. box-shadow:none;
  1743. margin: 0;
  1744. padding-left: 0;
  1745. text-align: center;
  1746. width:50px;
  1747. padding:0 !important;
  1748. margin:0 !important;
  1749. position:absolute;
  1750. }
  1751. }
  1752. footer {
  1753. background:@footerbg;
  1754. border:none;
  1755. border-top:1px solid @footerbg;
  1756. box-shadow:none;
  1757. & > a {
  1758. color:@footercolor;
  1759. }
  1760. & > a.pressed:not(.button) {
  1761. border-radius:0;
  1762. background-color:#00AEEF;
  1763. }
  1764. & > a.icon.pressed:not(.button):before {
  1765. color:inherit;
  1766. }
  1767. }
  1768. }
  1769. .backButton::before {
  1770. z-index: -1;
  1771. font-size:22px;
  1772. position: absolute;
  1773. top: -2px;
  1774. left: -30px;
  1775. text-align: center;
  1776. border-radius:0;
  1777. border: none;
  1778. border-color:transparent;
  1779. box-shadow: none;
  1780. -webkit-transform: none;
  1781. transform: none;
  1782. font-family: 'chevron';
  1783. speak: none;
  1784. font-style: normal;
  1785. font-weight: normal;
  1786. font-variant: normal;
  1787. text-transform: none;
  1788. line-height: 1;
  1789. -webkit-font-smoothing: antialiased;
  1790. content: "\f054";
  1791. -webkit-transform:rotate(180deg);
  1792. transform:rotate(180deg);
  1793. background-color: transparent;
  1794. padding:12px;
  1795. }
  1796. .af-badge {
  1797. border:none;
  1798. box-shadow:none;
  1799. }
  1800. .list {
  1801. background:inherit;
  1802. color:inherit;
  1803. border-color:#303030;
  1804. font-weight:normal;
  1805. .divider {
  1806. color:black;
  1807. }
  1808. & > li {
  1809. & > a:after {
  1810. color:#0088D1;
  1811. }
  1812. }
  1813. }
  1814. .panel {
  1815. color:inherit;
  1816. background:inherit;
  1817. h2 {
  1818. color:#0088D1;
  1819. }
  1820. }
  1821. .collapsed:after {
  1822. border-top: 6px solid;
  1823. }
  1824. .collapsed:before {
  1825. border:2px solid;
  1826. }
  1827. .expanded:after {
  1828. border-bottom: 6px solid;
  1829. }
  1830. .expanded:before {
  1831. border:2px solid;
  1832. }
  1833. .collapsed:before, .expanded:before {
  1834. border-color: inherit;
  1835. }
  1836. .collapsed:after, .expanded:after {
  1837. border-top-color:inherit;
  1838. border-top-color:inherit;
  1839. }
  1840. 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 {
  1841. background:inherit;
  1842. color:inherit;
  1843. }
  1844. input.toggle+label:after {
  1845. color:inherit;
  1846. }
  1847. input.toggle+label {
  1848. border-radius:0;
  1849. & > span {
  1850. border-radius:0;
  1851. top:0;
  1852. width:27px;
  1853. height:23px;
  1854. }
  1855. }
  1856. label {
  1857. color:inherit;
  1858. }
  1859. input[type="radio"]:checked+label:before, input[type="checkbox"]:checked+label:before {
  1860. background: #33B5E5;
  1861. }
  1862. .button {
  1863. border-radius:0;
  1864. text-shadow:none;
  1865. }
  1866. .button.previous {
  1867. border:none;
  1868. }
  1869. .button.next {
  1870. border:none;
  1871. }
  1872. .button.previous::after {
  1873. color:black;
  1874. z-index: -1;
  1875. font-size:22px;
  1876. position: absolute;
  1877. top: 2px;
  1878. left: -25px;
  1879. text-align: center;
  1880. border-radius:0;
  1881. border: none;
  1882. border-color:transparent;
  1883. box-shadow: none;
  1884. -webkit-transform: none;
  1885. transform: none;
  1886. font-family: 'chevron';
  1887. speak: none;
  1888. font-style: normal;
  1889. font-weight: normal;
  1890. font-variant: normal;
  1891. text-transform: none;
  1892. line-height: 1;
  1893. -webkit-font-smoothing: antialiased;
  1894. content: "\f054";
  1895. -webkit-transform:rotate(180deg);
  1896. transform:rotate(180deg);
  1897. background-color: transparent;
  1898. }
  1899. .button.next::after {
  1900. color:black;
  1901. z-index: -1;
  1902. font-size:22px;
  1903. position: absolute;
  1904. top: 6px;
  1905. right: -25px;
  1906. text-align: center;
  1907. border-radius:0;
  1908. border: none;
  1909. border-color:transparent;
  1910. box-shadow: none;
  1911. -webkit-transform: none;
  1912. transform: none;
  1913. font-family: 'chevron';
  1914. speak: none;
  1915. font-style: normal;
  1916. font-weight: normal;
  1917. font-variant: normal;
  1918. text-transform: none;
  1919. line-height: 1;
  1920. -webkit-font-smoothing: antialiased;
  1921. content: "\f054";
  1922. background-color: transparent;
  1923. }
  1924. .af-badge {
  1925. position:absolute;
  1926. top:2px;
  1927. right:2px;
  1928. display:inline-block;
  1929. min-width:20px;
  1930. max-width:90%;
  1931. height:20px;
  1932. padding:0 3px;
  1933. background-color:red;
  1934. border-radius:20px;
  1935. font-size:12px;
  1936. line-height:19px;
  1937. font-weight:bold;
  1938. color:#fff;
  1939. text-overflow:ellipsis;
  1940. text-align:center;
  1941. text-shadow:0 -1px 0 rgba(64,0,0,.6);
  1942. }
  1943. .af-badge.br {
  1944. bottom:2px;
  1945. right:2px;
  1946. top:auto;
  1947. left:auto;
  1948. }
  1949. .af-badge.bl {
  1950. bottom:2px;
  1951. left:2px;
  1952. top:auto;
  1953. right:auto;
  1954. }
  1955. .af-badge.tl {
  1956. top:2px;
  1957. left:2px;
  1958. right:auto;
  1959. bottom:auto;
  1960. }
  1961. .bb {
  1962. font-family: "Slate Pro",Slate,"Myriad Pro","BBAlpha Sans",Helvetica;
  1963. font-size: 12pt;
  1964. background:white;
  1965. color:black;
  1966. .view {
  1967. header {
  1968. background:#00609E;
  1969. background:-ms-linear-gradient(65deg, #00609E 0%,#00AFEE 100%);
  1970. background:-webkit-gradient(linear, left bottom, right top, color-stop(0%,#00609E), color-stop(100%,#00AFEE));
  1971. background:-webkit-linear-gradient(65deg, #00609E 0%,#00AFEE 100%);
  1972. background:linear-gradient(65deg, #00609E 0%,#00AFEE 100%);
  1973. border-style:solid;
  1974. border-width:1px;
  1975. border-color:#009CE1 transparent #004E92 transparent;
  1976. .backButton {
  1977. display: block;
  1978. position: absolute;
  1979. line-height:70px;
  1980. left: 5px;
  1981. text-overflow: ellipsis;
  1982. font-size: 10px;
  1983. padding: 0;
  1984. color: #fff;
  1985. text-shadow: none;
  1986. background-color: transparent;
  1987. border:none;
  1988. border-color: transparent;
  1989. height: 44px;
  1990. top:0;
  1991. border-radius: 0;
  1992. box-shadow:none;
  1993. margin: 0;
  1994. padding-left: 0;
  1995. text-align: center;
  1996. width:50px;
  1997. padding:0 !important;
  1998. margin:0 !important;
  1999. }
  2000. .backButton::before {
  2001. z-index: -1;
  2002. font-size:22px;
  2003. position: absolute;
  2004. left: 5px;
  2005. text-align: center;
  2006. border-radius: 0;
  2007. border: none;
  2008. border-color: transparent;
  2009. box-shadow: none;
  2010. -webkit-transform: none;
  2011. transform: none;
  2012. font-family: 'chevron';
  2013. speak: none;
  2014. font-style: normal;
  2015. font-weight: normal;
  2016. font-variant: normal;
  2017. text-transform: none;
  2018. line-height: 1;
  2019. -webkit-font-smoothing: antialiased;
  2020. content: "\f054";
  2021. top:-10px;
  2022. -webkit-transform:rotate(180deg);
  2023. transform:rotate(180deg);
  2024. background-color: transparent;
  2025. }
  2026. .backButton::after {
  2027. z-index: -1;
  2028. font-size:24px;
  2029. content: ' ';
  2030. position: absolute;
  2031. font-weight:bold;
  2032. background-color: transparent;
  2033. left:55px;
  2034. height:48px;
  2035. top:-5px;
  2036. width:2px;
  2037. background: #0aa9dc;
  2038. margin:auto;
  2039. text-align: center;
  2040. border-radius: 0;
  2041. border: none;
  2042. border-color: transparent;
  2043. box-shadow: none;
  2044. -webkit-transform: rotate(10deg);
  2045. transform: rotate(10deg);
  2046. }
  2047. .button-grouped {
  2048. & > .button.pressed {
  2049. background:#07a;
  2050. }
  2051. }
  2052. }
  2053. footer {
  2054. border:none;
  2055. border-radius:0px;
  2056. background:black;
  2057. padding:0;
  2058. -webkit-box-shadow:none;
  2059. box-shadow: none;
  2060. & > a:not(.button) {
  2061. height:49px;
  2062. top:0px;
  2063. border-top:4px solid #000;
  2064. background:#1e1e1e;
  2065. }
  2066. & > a.pressed:not(.button) {
  2067. border:0px;
  2068. border-top:4px solid #0aa9dc;
  2069. border-radius:0px;
  2070. background:#3a3a3a;
  2071. color:white;
  2072. }
  2073. & > a:not(:last-of-type):not(.pressed):not(.button) {
  2074. border-right:1px solid black;
  2075. }
  2076. & > a.icon.pressed:not(.button):before {
  2077. color: white;
  2078. }
  2079. }
  2080. .panel {
  2081. background:#fff;
  2082. }
  2083. }
  2084. view {
  2085. header {
  2086. h1 {
  2087. text-shadow:rgba(0,0,0,0.8) 0 1px 0;
  2088. font-weight:normal;
  2089. }
  2090. .button {
  2091. color:#fff;
  2092. background:none;
  2093. text-shadow:0 -1px 0 #333;
  2094. border-color:transparent;
  2095. }
  2096. }
  2097. }
  2098. .list {
  2099. font-weight: normal;
  2100. }
  2101. .afPopup {
  2102. border: solid 1px #ccc;
  2103. border-radius: 3px;
  2104. background:inherit;
  2105. color:inherit;
  2106. padding:0;
  2107. & > header {
  2108. font-weight:normal;
  2109. font-size:20px;
  2110. text-align:center;
  2111. margin:0;
  2112. padding:8px;
  2113. color:white;
  2114. border-radius: 2px;
  2115. background:#00609E;
  2116. background:-ms-linear-gradient(65deg, #00609E 0%,#00AFEE 100%);
  2117. background:-webkit-gradient(linear, left bottom, right top, color-stop(0%,#00609E), color-stop(100%,#00AFEE));
  2118. background:-webkit-linear-gradient(65deg, #00609E 0%,#00AFEE 100%);
  2119. background:linear-gradient(65deg, #00609E 0%,#00AFEE 100%);
  2120. }
  2121. & > div {
  2122. text-align:center;
  2123. padding:10px;
  2124. }
  2125. & > footer {
  2126. padding:5px;
  2127. & > a#cancel {
  2128. width:120px;
  2129. }
  2130. & > a#action {
  2131. width:120px;
  2132. }
  2133. }
  2134. }
  2135. #af_actionsheet {
  2136. background:white;
  2137. color:inherit;
  2138. a {
  2139. border-radius:5px;
  2140. border:1px solid #ccc;
  2141. background:#eee;
  2142. color:#111;
  2143. }
  2144. }
  2145. }
  2146. .bb .button ,.bb .button-grouped *,.bb .button-grouped &>.button:first-child,.bb .button-grouped.vertical *,.bb .button-grouped.vertical &>.button:last-child,.bb &>.header .button-grouped &>.button {
  2147. border-color:#ccc;
  2148. }
  2149. .button {
  2150. position:relative;
  2151. display:inline-block;
  2152. padding:8px 12px;
  2153. margin:8px 0;
  2154. font-weight:bold;
  2155. color:#000;
  2156. text-align:center;
  2157. vertical-align:top;
  2158. cursor:pointer;
  2159. background-color:#eee;
  2160. border:1px solid #666;
  2161. text-decoration: none;
  2162. z-index:2;
  2163. }
  2164. .button.pressed {
  2165. background:#fff;
  2166. }
  2167. .button.previous {
  2168. margin-left:16px;
  2169. padding-left:6px;
  2170. border-color:#666 #666 transparent transparent !important;
  2171. }
  2172. .button.next {
  2173. border-color:#666 transparent #666 #666 !important;
  2174. margin-right:16px;
  2175. padding-right:6px;
  2176. }
  2177. .button.previous::after {
  2178. z-index:-1;
  2179. content:'';
  2180. position:absolute;
  2181. width:25px;
  2182. height:27px;
  2183. background-color:inherit;
  2184. top:3px;
  2185. left:-11px;
  2186. border-radius:5px;
  2187. border:1px solid;
  2188. border-color:transparent transparent inherit transparent;
  2189. -webkit-transform:rotate(45deg);
  2190. transform:rotate(45deg);
  2191. }
  2192. .button.next::after {
  2193. z-index:-1;
  2194. content:'';
  2195. position:absolute;
  2196. width:25px;
  2197. height:27px;
  2198. background-color:inherit;
  2199. top:3px;
  2200. right:-11px;
  2201. border-radius:5px;
  2202. border:1px solid;
  2203. border-color:transparent transparent transparent transparent;
  2204. -webkit-transform:rotate(45deg);
  2205. transform:rotate(45deg);
  2206. }
  2207. .button.block {
  2208. display:block;
  2209. }
  2210. .button.flat {
  2211. border-radius: 0;
  2212. box-shadow:none;
  2213. }
  2214. .header {
  2215. .button-grouped {
  2216. & > .button {
  2217. margin:0;
  2218. border-color:#fff;
  2219. }
  2220. }
  2221. .button {
  2222. color: #fff;
  2223. background:none;
  2224. border-color: transparent;
  2225. font-size:12px;
  2226. padding:7px;
  2227. height:32px;
  2228. margin:5px;
  2229. text-overflow: ellipsis;
  2230. white-space: nowrap;
  2231. }
  2232. .button.icon:before {
  2233. padding-left:6px;
  2234. }
  2235. }
  2236. .button-grouped {
  2237. display:inline-block;
  2238. margin: 5px;
  2239. * {
  2240. border-radius:0px;
  2241. float:left;
  2242. border-left:0px solid transparent;
  2243. border-right: 1px solid #666;
  2244. border-bottom: 1px solid #666;
  2245. border-top: 1px solid #666;
  2246. margin:0;
  2247. }
  2248. & > .button:first-child {
  2249. border-left: 1px solid #666;
  2250. border-top-left-radius: 3px;
  2251. border-bottom-left-radius: 3px;
  2252. }
  2253. & > .button:last-child {
  2254. border-top-right-radius: 3px;
  2255. border-bottom-right-radius: 3px;
  2256. }
  2257. }
  2258. .button-grouped.flex {
  2259. display: -webkit-box;
  2260. display: -moz-box;
  2261. display: -ms-flexbox;
  2262. display: -webkit-flex;
  2263. display: flex;
  2264. & > .button {
  2265. -webkit-box-flex: 1;
  2266. -moz-box-flex: 1 auto;
  2267. -webkit-flex: 1 auto;
  2268. -ms-flex: 1 auto;
  2269. flex: 1 auto;
  2270. white-space: nowrap;
  2271. overflow: hidden;
  2272. text-overflow: ellipsis;
  2273. }
  2274. }
  2275. .button-grouped.flex.vertical {
  2276. display: inline-block;
  2277. }
  2278. .button-grouped.vertical {
  2279. * {
  2280. border-radius:0px;
  2281. display:block;
  2282. float:none;
  2283. width:100%;
  2284. border-left: 1px solid #666;
  2285. border-right: 1px solid #666;
  2286. border-top: 1px solid #666;
  2287. border-bottom: 0px solid #666;
  2288. }
  2289. & > .button:first-child {
  2290. border-top-left-radius: 3px;
  2291. border-top-right-radius: 3px;
  2292. border-bottom-left-radius:0px;
  2293. border-bottom-right-radius:0px;
  2294. }
  2295. & > .button:last-child {
  2296. border-top-right-radius:0px;
  2297. border-top-left-radius:0px;
  2298. border-bottom-right-radius: 3px;
  2299. border-bottom-left-radius: 3px;
  2300. border-bottom:1px solid #666;
  2301. }
  2302. }
  2303. .button.gray {
  2304. background:#999;
  2305. border-color:#666;
  2306. }
  2307. .button.yellow {
  2308. background-color:#F1C222;
  2309. border-color:#999;
  2310. }
  2311. .button.red {
  2312. color:#fff;
  2313. text-shadow:0 -1px 0 #666;
  2314. background:#B20000;
  2315. border-color:#666;
  2316. }
  2317. .button.green {
  2318. color:#fff;
  2319. text-shadow:0 -1px 0 #666;
  2320. background:#009C0C;
  2321. border-color:#666;
  2322. }
  2323. .button.orange {
  2324. color:#fff;
  2325. text-shadow:0 -1px 0 #666;
  2326. background-color:#FF8000;
  2327. border-color:#666;
  2328. }
  2329. .button.black {
  2330. color:#fff;
  2331. text-shadow:none;
  2332. background:#000;
  2333. border-color:#666;
  2334. }
  2335. .button.slate {
  2336. color:#fff;
  2337. text-shadow:0 -1px 0 #000;
  2338. background:#171F28;
  2339. border-color:#666;
  2340. }
  2341. .backButton {
  2342. text-overflow: ellipsis;
  2343. white-space: nowrap;
  2344. }
  2345. /* Bg #33B5E5/* Font header #C6C6C6* reg white-space:border 303030hover : #111*/.firefox, .firefox .view {
  2346. font:14px 'Roboto',sans-serif;
  2347. background:#fff;
  2348. color:#000;
  2349. border-color:#000;
  2350. }
  2351. .firefox {
  2352. .view {
  2353. .panel {
  2354. color:#5E5E5E;
  2355. background:white;
  2356. }
  2357. .panel.light {
  2358. background:#FDFDFD;
  2359. color:#000;
  2360. }
  2361. header {
  2362. background:#F57E02;
  2363. color:#ffffff;
  2364. border-color:transparent;
  2365. height: 44px;
  2366. h1 {
  2367. left: 23px;
  2368. text-align: left;
  2369. padding-left:3px;
  2370. }
  2371. .button {
  2372. color: white;
  2373. background:none;
  2374. font-size:14px;
  2375. box-shadow:none;
  2376. }
  2377. .backButton {
  2378. background: inherit;
  2379. color:inherit;
  2380. left:-60px;
  2381. }
  2382. .backButton::before {
  2383. left:54px;
  2384. }
  2385. .menuButton {
  2386. right:0px;
  2387. }
  2388. .menuButton:after {
  2389. border-color:#AE5900;
  2390. }
  2391. }
  2392. footer {
  2393. box-shadow: none;
  2394. background:inherit;
  2395. color:inherit;
  2396. border-top:1px solid #5E5E5E;
  2397. border-bottom:none;
  2398. padding:0;
  2399. & > a:not(.button) {
  2400. color:#5E5E5E;
  2401. padding-top:3px;
  2402. }
  2403. & > a.pressed:not(.button) {
  2404. border:0px;
  2405. border-bottom:4px solid #33B5E5;
  2406. border-radius:0px;
  2407. color:#00adcd;
  2408. background:none;
  2409. }
  2410. & > a.icon.pressed:not(.button):before {
  2411. color:inherit;
  2412. }
  2413. & > a.icon:not(.button):before {
  2414. font-size: 21px;
  2415. }
  2416. }
  2417. }
  2418. .af-badge {
  2419. border:none;
  2420. }
  2421. .list {
  2422. background:inherit;
  2423. color:inherit;
  2424. border-color:#303030;
  2425. margin: 10px;
  2426. .divider {
  2427. color:black;
  2428. }
  2429. }
  2430. .panel {
  2431. h2 {
  2432. color:inherit;
  2433. }
  2434. }
  2435. .collapsed:after {
  2436. border-top: 6px solid;
  2437. }
  2438. .collapsed:before {
  2439. border:2px solid;
  2440. }
  2441. .expanded:after {
  2442. border-bottom: 6px solid;
  2443. }
  2444. .expanded:before {
  2445. border:2px solid;
  2446. }
  2447. label {
  2448. color:inherit;
  2449. }
  2450. input.toggle:checked + label {
  2451. background:#00CAF2;
  2452. }
  2453. .button {
  2454. border-radius:0;
  2455. background:#d4d4d4;
  2456. border-color:#A6A6A6;
  2457. color:inherit;
  2458. text-shadow:none;
  2459. box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
  2460. }
  2461. .button[disabled="disabled"] {
  2462. opacity:0.6;
  2463. }
  2464. .button.previous::after {
  2465. width:20px;
  2466. height:20px;
  2467. background-color:inherit;
  2468. top:5px;
  2469. left:-12px;
  2470. border-radius:0;
  2471. box-shadow:none;
  2472. border-color:transparent;
  2473. }
  2474. .button.next::after {
  2475. width:20px;
  2476. height:20px;
  2477. background-color:inherit;
  2478. top:5px;
  2479. right:-12px;
  2480. border-radius:0;
  2481. box-shadow:none;
  2482. border-color:transparent;
  2483. }
  2484. header {
  2485. .button-grouped {
  2486. & > .button {
  2487. border-color:#777;
  2488. }
  2489. }
  2490. }
  2491. .button-grouped {
  2492. * {
  2493. border:1px solid rgba(255,255,255,.25);
  2494. border-left-width:0;
  2495. box-shadow:none;
  2496. }
  2497. }
  2498. .button-grouped.vertical {
  2499. * {
  2500. border-left:1px solid rgba(255,255,255,.25);
  2501. border-bottom-width:0;
  2502. }
  2503. .button:last-child {
  2504. border-bottom:1px solid rgba(255,255,255,.25);
  2505. }
  2506. }
  2507. .afPopup {
  2508. border: solid 1px #aaa;
  2509. padding: 0;
  2510. border-radius: 0;
  2511. -webkit-transform:none;
  2512. transform:none;
  2513. -webkit-transition: none;
  2514. transition:none;
  2515. background:inherit;
  2516. background-color:#373737;
  2517. color:white;
  2518. position:absolute;
  2519. top:0px !important;
  2520. right:0px !important;
  2521. bottom:0px !important;
  2522. left:0px !important;
  2523. width:100%;
  2524. & > HEADER {
  2525. font-weight:normal;
  2526. font-size:20px;
  2527. text-align:left;
  2528. margin:10px 20px;
  2529. margin-top: 140px;
  2530. }
  2531. & > DIV {
  2532. font-size:20px;
  2533. text-align:left;
  2534. padding:10px;
  2535. margin:10px 15px;
  2536. border-top: solid 1px #aaa;
  2537. }
  2538. & > FOOTER {
  2539. height:70px;
  2540. position:absolute;
  2541. bottom:0px;
  2542. background:#2A2A2A;
  2543. & > A#cancel {
  2544. margin-left:10px;
  2545. width:140px;
  2546. background:#EB3020;
  2547. color:white;
  2548. }
  2549. & > A#action {
  2550. margin-right:10px;
  2551. background:#D8D8D8;
  2552. }
  2553. }
  2554. }
  2555. #af_actionsheet {
  2556. border: #2c2c2c 1px solid;
  2557. border-top: #2c2c2c 3px solid;
  2558. background:#2c2c2c;
  2559. color:inherit;
  2560. padding:0px;
  2561. a {
  2562. border-radius:0;
  2563. background:#424343;
  2564. color:white;
  2565. line-height: 50px;
  2566. margin-bottom: 1px;
  2567. margin:10px 20px;
  2568. box-shadow: none;
  2569. text-align: left;
  2570. padding-left:20px;
  2571. font-style: italic;
  2572. font-weight:normal;
  2573. }
  2574. a.cancel {
  2575. margin-bottom: 10px;
  2576. background:#f7f7f7;
  2577. color:black;
  2578. text-align: center;
  2579. padding:0;
  2580. border-radius:30px;
  2581. }
  2582. }
  2583. }
  2584. .firefox.light {
  2585. .view {
  2586. header {
  2587. .menuButton:after {
  2588. border-color:black;
  2589. }
  2590. }
  2591. }
  2592. .button {
  2593. background:#eee;
  2594. border-color:#D1D1D1;
  2595. }
  2596. .afPopup {
  2597. background-color:#373737;
  2598. }
  2599. #af_actionsheet {
  2600. border: #bbb 1px solid;
  2601. border-top: #33B5E5 3px solid;
  2602. background:#bbb;
  2603. a {
  2604. background:#fff;
  2605. }
  2606. }
  2607. }
  2608. .firefox .collapsed:before,.firefox .expanded:before {
  2609. border-color: inherit;
  2610. }
  2611. .firefox .collapsed:after,.firefox .expanded:after {
  2612. border-top-color:inherit;
  2613. border-top-color:inherit;
  2614. }
  2615. .firefox select, .firefox textarea, .firefox input[type="text"],.firefox input[type=search], .firefox input[type="password"],.firefox input[type="datetime"], .firefox input[type="datetime-local"],.firefox input[type="date"], .firefox input[type="month"],.firefox input[type="time"], .firefox input[type="week"],.firefox input[type="number"], .firefox input[type="email"],.firefox input[type="url"], .firefox input[type="tel"],.firefox input[type="color"], .firefox .input-group {
  2616. background:inherit;
  2617. color:inherit;
  2618. border-radius:0;
  2619. }
  2620. .firefox input[type="radio"]:not(.toggle):checked+label:before,.firefox input[type="checkbox"]:not(.toggle):checked+label:before {
  2621. background:#00CAF2;
  2622. color:white;
  2623. border-color:#00CAF2;
  2624. }
  2625. .firefox .afPopup &>FOOTER &>A, .firefox.light .afPopup &>FOOTER &>A {
  2626. background:#D8D8D8;
  2627. color:black;
  2628. border-radius:30px;
  2629. height:40px;
  2630. line-height:22px;
  2631. margin-top:15px;
  2632. font-size:18px;
  2633. font-style: italic;
  2634. }
  2635. 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 {
  2636. width: 100%;
  2637. height: 40px;
  2638. padding: 10px;
  2639. margin-bottom: 10px;
  2640. background: #fff;
  2641. border: 1px solid #ccc;
  2642. border-radius: 5px;
  2643. font-size: 14px;
  2644. font-weight: normal;
  2645. -webkit-appearance: none;
  2646. box-sizing: border-box;
  2647. }
  2648. form {
  2649. position: relative;
  2650. }
  2651. input[type="radio"],input[type="checkbox"] {
  2652. display: none;
  2653. }
  2654. input[type="radio"] + label,input[type="checkbox"] + label {
  2655. display: inline-block;
  2656. width: 60%;
  2657. float: right;
  2658. position: relative;
  2659. text-align: left;
  2660. padding: 13px 0 0 8px;
  2661. margin-top:3px;
  2662. }
  2663. input[type="radio"]:not(.toggle) + label:before {
  2664. background-color: #fafafa;
  2665. border: 1px solid #cacece;
  2666. border-radius: 3px;
  2667. display: block;
  2668. position: absolute;
  2669. top: 8px;
  2670. left: -25px;
  2671. height: 28px;
  2672. width: 28px;
  2673. font-size: 13px;
  2674. text-align: center;
  2675. line-height: 28px;
  2676. content: " ";
  2677. }
  2678. input[type="radio"]:checked
  2679. +
  2680. label:before {
  2681. background-color: #1eb0e9;
  2682. -webkit-transition:background-color 150ms;
  2683. transition:background-color 150ms;
  2684. }
  2685. input[type="checkbox"]
  2686. +
  2687. label:before {
  2688. background-color: #fafafa;
  2689. border: 1px solid #cacece;
  2690. border-radius: 3px;
  2691. display: block;
  2692. position: absolute;
  2693. top: 8px;
  2694. left: -25px;
  2695. height: 28px;
  2696. width: 28px;
  2697. font-size: 13px;
  2698. text-align: center;
  2699. line-height: 28px;
  2700. content: " ";
  2701. }
  2702. input[type="checkbox"]:checked
  2703. +
  2704. label:before {
  2705. content: '\00a0\2714';
  2706. padding: 0px;
  2707. display: inline-block;
  2708. background-color:#1eb0e9;
  2709. -webkit-transition:background-color 150ms;
  2710. transition:background-color 150ms;
  2711. }
  2712. input[type="radio"]:after,input[type="checkbox"]:after {
  2713. visibility: hidden;
  2714. display: block;
  2715. font-size: 0;
  2716. content: " ";
  2717. clear: both;
  2718. height: 0;
  2719. }
  2720. input[type="search"] {
  2721. border-radius: 20px;
  2722. }
  2723. label {
  2724. float: left;
  2725. width: 33%;
  2726. font-weight: normal;
  2727. font-size: 14px;
  2728. color: inherit;
  2729. text-align: right;
  2730. padding: 15px 18px;
  2731. }
  2732. 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 {
  2733. width: 66%;
  2734. }
  2735. textarea {
  2736. height: auto;
  2737. }
  2738. .input-group {
  2739. width: auto;
  2740. height: auto;
  2741. padding: 12px;
  2742. overflow: hidden;
  2743. }
  2744. .input-group input:not([type='button']):not([type='submit']),.input-group textarea,.input-group select {
  2745. margin-bottom: 0;
  2746. background-color: transparent;
  2747. border: 0;
  2748. border-bottom: 1px solid #ccc;
  2749. border-radius: 0;
  2750. box-shadow: none;
  2751. }
  2752. .input-group input:not([type="submit"]):not([type="button"]):last-child,.input-group textarea:last-child,.input-group select:last-child {
  2753. border-bottom: none;
  2754. }
  2755. .input-group input[type=button],.input-group input[type=submit] {
  2756. margin: 5px;
  2757. }
  2758. input.toggle + label:before,input.toggle:checked + label:before {
  2759. content: attr(data-on);
  2760. position: absolute;
  2761. color: #fff;
  2762. left: 5px;
  2763. width: 42px;
  2764. text-align: left;
  2765. z-index: 3;
  2766. top: 0px;
  2767. overflow: hidden;
  2768. background-color: transparent;
  2769. border: none;
  2770. border-radius: 0px;
  2771. text-transform: uppercase;
  2772. display: none;
  2773. height: 30px;
  2774. line-height: 29px !important;
  2775. }
  2776. input.toggle:checked {
  2777. +
  2778. label:before {
  2779. display: block;
  2780. }
  2781. + label:after {
  2782. display: none;
  2783. }
  2784. + label {
  2785. background: #1eb0e9;
  2786. line-height: -1em;
  2787. -webkit-transition:background 150ms;
  2788. transition:background 150ms;
  2789. & > span {
  2790. transform: translate3d(37px, 0, 0);
  2791. -webkit-transform: translate3d(37px, 0, 0);
  2792. }
  2793. }
  2794. }
  2795. input.toggle {
  2796. +
  2797. label:after {
  2798. content: attr(data-off);
  2799. position: absolute;
  2800. color: #505050;
  2801. width: 42px;
  2802. text-align: left;
  2803. z-index: 1;
  2804. top: 0px;
  2805. left: 30px;
  2806. overflow: hidden;
  2807. background-color: transparent;
  2808. border: none;
  2809. border-radius: 0px;
  2810. text-transform: uppercase;
  2811. height: 30px;
  2812. line-height: 29px;
  2813. }
  2814. + label {
  2815. position: relative;
  2816. margin: 5px;
  2817. border-radius: 50px;
  2818. display: block;
  2819. height: 30px;
  2820. width: 65px;
  2821. border: 1px solid #ccc;
  2822. left: 33%;
  2823. float: none;
  2824. & > span {
  2825. display: block;
  2826. width: 29px;
  2827. height: 31px;
  2828. background: #ccc;
  2829. border-radius: 50px;
  2830. z-index: 5;
  2831. top: -2px;
  2832. left: 0px;
  2833. position: absolute;
  2834. transition: transform 100ms linear;
  2835. transform: translate3d(0, 0, 0);
  2836. -webkit-transform: translate3d(0, 0, 0);
  2837. -webkit-transition: -webkit-transform 100ms linear;
  2838. }
  2839. }
  2840. }
  2841. .formGroupHead {
  2842. font-size: 18px;
  2843. font-weight: bold;
  2844. color: inherit;
  2845. margin: 16px 0 8px;
  2846. }
  2847. input[type=button],input[type=submit], button {
  2848. font-size:inherit;
  2849. }
  2850. .grid {
  2851. width: 100%;
  2852. overflow:hidden;
  2853. }
  2854. .col2,.col3,.col1-3,.col2-3 {
  2855. float: none;
  2856. width: 100%;
  2857. }
  2858. .grid:after {
  2859. content: '';
  2860. clear: both;
  2861. }
  2862. @media handheld, only screen and (min-width: 768px) {
  2863. .col2 {
  2864. width: 50%;
  2865. float: left;
  2866. }
  2867. .col3 {
  2868. width: 33.3%;
  2869. float: left;
  2870. }
  2871. .col1-3 {
  2872. width: 33.3%;
  2873. float: left;
  2874. }
  2875. .col2-3 {
  2876. width: 66.6%;
  2877. float: left;
  2878. }
  2879. }
  2880. @font-face {
  2881. font-family: 'IcoMoon';
  2882. src: url(data:application/x-font-woff;
  2883. charset=utf-8;
  2884. base64,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) format('woff'),url(data:application/x-font-ttf;
  2885. charset=utf-8;
  2886. base64,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) format('truetype');
  2887. font-weight: normal;
  2888. font-style: normal;
  2889. }
  2890. .icon:before {
  2891. font-family:'IcoMoon';
  2892. speak:none;
  2893. font-style:normal;
  2894. font-weight:normal !important;
  2895. font-variant:normal;
  2896. text-transform:none;
  2897. line-height:1;
  2898. color:inherit;
  2899. position:relative;
  2900. font-size:1em;
  2901. left:-3px;
  2902. top:2px;
  2903. }
  2904. li {
  2905. .icon:before {
  2906. position:relative;
  2907. width:24px;
  2908. height:100%;
  2909. top:2px;
  2910. line-height:0 !important;
  2911. margin-right:4px;
  2912. }
  2913. }
  2914. .icon.mini:before {
  2915. font-size:.7em;
  2916. }
  2917. .icon.big:before {
  2918. font-size:1.5em;
  2919. }
  2920. .icon.home:before {
  2921. content: "\5a";
  2922. }
  2923. .icon.pencil:before {
  2924. content: "\5b";
  2925. }
  2926. .icon.picture:before {
  2927. content: "\5c";
  2928. }
  2929. .icon.camera:before {
  2930. content: "\5d";
  2931. }
  2932. .icon.headset:before {
  2933. content: "\5e";
  2934. }
  2935. .icon.paper:before {
  2936. content: "\5f";
  2937. }
  2938. .icon.stack:before {
  2939. content: "\61";
  2940. }
  2941. .icon.folder:before {
  2942. content: "\60";
  2943. }
  2944. .icon.tag:before {
  2945. content: "\62";
  2946. }
  2947. .icon.basket:before {
  2948. content: "\63";
  2949. }
  2950. .icon.phone:before {
  2951. content: "\64";
  2952. }
  2953. .icon.mail:before {
  2954. content: "\65";
  2955. }
  2956. .icon.location:before {
  2957. content: "\66";
  2958. }
  2959. .icon.clock:before {
  2960. content: "\67";
  2961. }
  2962. .icon.calendar:before {
  2963. content: "\68";
  2964. }
  2965. .icon.message:before {
  2966. content: "\69";
  2967. }
  2968. .icon.chat:before {
  2969. content: "\6a";
  2970. }
  2971. .icon.user:before {
  2972. content: "\6b";
  2973. }
  2974. .icon.loading:before {
  2975. content: "\6c";
  2976. }
  2977. .icon.refresh:before {
  2978. content: "\6d";
  2979. }
  2980. .icon.magnifier:before {
  2981. content: "\6e";
  2982. }
  2983. .icon.key:before {
  2984. content: "\6f";
  2985. }
  2986. .icon.settings:before {
  2987. content: "\70";
  2988. }
  2989. .icon.graph:before {
  2990. content: "\71";
  2991. }
  2992. .icon.trash:before {
  2993. content: "\72";
  2994. }
  2995. .icon.download:before {
  2996. content: "\73";
  2997. }
  2998. .icon.upload:before {
  2999. content: "\74";
  3000. }
  3001. .icon.star:before {
  3002. content: "\75";
  3003. }
  3004. .icon.heart:before {
  3005. content: "\76";
  3006. }
  3007. .icon.warning:before {
  3008. content: "\77";
  3009. }
  3010. .icon.add:before {
  3011. content: "\78";
  3012. }
  3013. .icon.remove:before {
  3014. content: "\79";
  3015. }
  3016. .icon.question:before {
  3017. content: "\7a";
  3018. }
  3019. .icon.info:before {
  3020. content: "\7b";
  3021. }
  3022. .icon.error:before {
  3023. content: "\7c";
  3024. }
  3025. .icon.check:before {
  3026. content: "\7d";
  3027. }
  3028. .icon.minimize:before {
  3029. content: "\7e";
  3030. }
  3031. .icon.close:before {
  3032. content: "\e000";
  3033. }
  3034. .icon.up:before {
  3035. content: "\e001";
  3036. }
  3037. .icon.right:before {
  3038. content: "\e002";
  3039. }
  3040. .icon.down:before {
  3041. content: "\e003";
  3042. }
  3043. .icon.left:before {
  3044. content: "\e004";
  3045. }
  3046. .icon.html5:before {
  3047. content: "\e005";
  3048. }
  3049. .icon.css:before {
  3050. content: "\e006";
  3051. }
  3052. .icon.js:before {
  3053. content: "\e007";
  3054. }
  3055. .icon.lamp:before {
  3056. content: "\e008";
  3057. }
  3058. .icon.tools:before {
  3059. content: "\e009";
  3060. }
  3061. .icon.new:before {
  3062. content: "\e00a";
  3063. }
  3064. .icon.wifi:before {
  3065. content: "\e00b";
  3066. }
  3067. .icon.mic:before {
  3068. content: "\e00c";
  3069. }
  3070. .icon.database:before {
  3071. content: "\e00d";
  3072. }
  3073. .icon.bug:before {
  3074. content: "\e00e";
  3075. }
  3076. .icon.busy:before {
  3077. content: "\e00f";
  3078. }
  3079. .icon.target:before {
  3080. content: "\e010";
  3081. }
  3082. .icon.tv:before {
  3083. content: "\e011";
  3084. }
  3085. .icon.cloud:before {
  3086. content: "\e012";
  3087. }
  3088. .icon.pin:before {
  3089. content: "\e013";
  3090. }
  3091. @bluecolor:rgb(21, 125, 251);
  3092. @greyborder:rgb(200,199,204);
  3093. .overlayStatusbar > .view {
  3094. padding-top: 20px;
  3095. }
  3096. .overlayStatusbar {
  3097. background:#f8f8f8;
  3098. }
  3099. .ios7 {
  3100. font-family:'HelveticaNeue', 'Helvetica Neue',Helvetica, Arial, sans-serif;
  3101. .view {
  3102. header {
  3103. background:rgb(248,248,248);
  3104. color:inherit;
  3105. border:none;
  3106. border-bottom:1px solid @greyborder;
  3107. .button {
  3108. color:@bluecolor;
  3109. border-color:transparent;
  3110. font-size:14px;
  3111. font-weight:normal;
  3112. }
  3113. h1 {
  3114. color:inherit;
  3115. text-shadow:none;
  3116. }
  3117. .backButton {
  3118. background:rgba(248,248,248,1);
  3119. color:@bluecolor;
  3120. display: block;
  3121. position: absolute;
  3122. line-height:44px;
  3123. left: 25px;
  3124. text-overflow: ellipsis;
  3125. font-size: 14px;
  3126. padding: 0;
  3127. text-shadow: none;
  3128. background-color: transparent;
  3129. border:none;
  3130. border-color: transparent;
  3131. height: 44px;
  3132. top:auto;
  3133. border-radius: 0;
  3134. box-shadow:none;
  3135. margin: 0;
  3136. padding-left: 0;
  3137. text-align: center;
  3138. width:50px;
  3139. padding:0 !important;
  3140. margin:0 !important;
  3141. }
  3142. }
  3143. footer {
  3144. background:rgb(248,248,248);
  3145. color:black;
  3146. border-top:1px solid @greyborder;
  3147. box-shadow:none;
  3148. & > a:not(.button) {
  3149. color:rgba(96,96,96,255);
  3150. }
  3151. & > a.pressed:not(.button) {
  3152. border-radius:0;
  3153. background:transparent;
  3154. }
  3155. }
  3156. }
  3157. .panel {
  3158. background:rgba(238,238,238,255);
  3159. h2 {
  3160. color:inherit;
  3161. }
  3162. }
  3163. .menuButton:after {
  3164. border-color:@bluecolor;
  3165. }
  3166. .list {
  3167. font-weight:normal;
  3168. li {
  3169. margin-left: 10px;
  3170. }
  3171. & > li {
  3172. & > a:after {
  3173. color:rgba(217,217,217,255);
  3174. }
  3175. }
  3176. }
  3177. .button {
  3178. background-color:transparent;
  3179. box-shadow:none;
  3180. border-radius: 5px;
  3181. border-color:@bluecolor;
  3182. color:@bluecolor;
  3183. text-shadow:none;
  3184. }
  3185. .backButton::before {
  3186. z-index: -1;
  3187. font-size:22px;
  3188. position: absolute;
  3189. left: -20px;
  3190. text-align: center;
  3191. border-radius: 0;
  3192. border: none;
  3193. border-color: transparent;
  3194. box-shadow: none;
  3195. -webkit-transform: none;
  3196. transform: none;
  3197. font-family: 'chevron';
  3198. speak: none;
  3199. font-style: normal;
  3200. font-weight: normal;
  3201. font-variant: normal;
  3202. text-transform: none;
  3203. line-height: 1;
  3204. -webkit-font-smoothing: antialiased;
  3205. content: "\f054";
  3206. -webkit-transform:rotate(180deg);
  3207. transform:rotate(180deg);
  3208. background-color: transparent;
  3209. }
  3210. .backButton::after {
  3211. content: '';
  3212. width:0;
  3213. height:0;
  3214. border:none;
  3215. }
  3216. .afPopup {
  3217. border:1px solid @greyborder;
  3218. border-radius:10px;
  3219. padding:0px;
  3220. text-align: center;
  3221. color:inherit;
  3222. background:rgba(248,248,248,1);
  3223. & > HEADER {
  3224. padding:10px 0;
  3225. }
  3226. & > DIV {
  3227. padding-bottom:10px;
  3228. }
  3229. & > FOOTER {
  3230. border-top:1px solid #aaa;
  3231. & > A.center {
  3232. width:100%!important;
  3233. }
  3234. }
  3235. .button {
  3236. border: none;
  3237. width: 50%;
  3238. margin: 0;
  3239. background: transparent;
  3240. color:@bluecolor;
  3241. padding:12px 0;
  3242. border-radius:0;
  3243. }
  3244. .button.pressed {
  3245. background: transparent;
  3246. }
  3247. a:not(:first-of-type) {
  3248. border-left:1px solid @greyborder;
  3249. }
  3250. }
  3251. .button.pressed {
  3252. font-weight:bold;
  3253. background: white;
  3254. }
  3255. #af_actionsheet {
  3256. background-color:transparent;
  3257. color:black;
  3258. padding-left:10px;
  3259. padding-right:10px;
  3260. border-top: transparent 1px solid;
  3261. box-shadow: 0px -1px 2px rgba(0,0,0,0);
  3262. a:first-child {
  3263. border-top-left-radius:5px;
  3264. border-top-right-radius:5px;
  3265. }
  3266. a:nth-last-child(2) {
  3267. border-bottom-left-radius:5px;
  3268. border-bottom-right-radius:5px;
  3269. }
  3270. a.cancel {
  3271. font-weight:bold;
  3272. margin: 9px 0;
  3273. border-radius:5px;
  3274. background-color:white;
  3275. color:@bluecolor;
  3276. }
  3277. a.red {
  3278. background-color:white;
  3279. color:red;
  3280. }
  3281. }
  3282. .button.previous {
  3283. border:none;
  3284. }
  3285. .button.next {
  3286. border:none;
  3287. }
  3288. .button.previous::after {
  3289. color:@bluecolor;
  3290. z-index: -1;
  3291. font-size:22px;
  3292. position: absolute;
  3293. top: 2px;
  3294. left: -25px;
  3295. text-align: center;
  3296. border-radius: 0;
  3297. border: none;
  3298. border-color: transparent;
  3299. box-shadow: none;
  3300. -webkit-transform: none;
  3301. transform: none;
  3302. font-family: 'chevron';
  3303. speak: none;
  3304. font-style: normal;
  3305. font-weight: normal;
  3306. font-variant: normal;
  3307. text-transform: none;
  3308. line-height: 1;
  3309. -webkit-font-smoothing: antialiased;
  3310. content: "\f054";
  3311. -webkit-transform:rotate(180deg);
  3312. transform:rotate(180deg);
  3313. background-color: transparent;
  3314. }
  3315. .button.next::after {
  3316. color:@bluecolor;
  3317. z-index: -1;
  3318. font-size:22px;
  3319. position: absolute;
  3320. top: 6px;
  3321. right: -25px;
  3322. text-align: center;
  3323. border-radius: 0;
  3324. border: none;
  3325. border-color: transparent;
  3326. box-shadow: none;
  3327. -webkit-transform: none;
  3328. transform: none;
  3329. font-family: 'chevron';
  3330. speak: none;
  3331. font-style: normal;
  3332. font-weight: normal;
  3333. font-variant: normal;
  3334. text-transform: none;
  3335. line-height: 1;
  3336. -webkit-font-smoothing: antialiased;
  3337. content: "\f054";
  3338. background-color: transparent;
  3339. }
  3340. .button.gray {
  3341. color:#999;
  3342. background-color:transparent;
  3343. }
  3344. .button.yellow {
  3345. color:#F1C222;
  3346. background-color:transparent;
  3347. }
  3348. .button.red {
  3349. color:#b20000;
  3350. background-color:transparent;
  3351. }
  3352. .button.green {
  3353. color:#009C0C;
  3354. background-color:transparent;
  3355. }
  3356. .button.orange {
  3357. color:#FF8000;
  3358. background-color:transparent;
  3359. }
  3360. .button.black {
  3361. color:black;
  3362. background-color:transparent;
  3363. }
  3364. .button.slate {
  3365. color:#171F28;
  3366. background-color:transparent;
  3367. }
  3368. .af-badge {
  3369. border:none;
  3370. box-shadow:none;
  3371. font-size:12px;
  3372. }
  3373. input[type="range"] {
  3374. -webkit-appearance: none;
  3375. background-color: #c7c7c7;
  3376. height: 2px;
  3377. position: relative;
  3378. top: -10px;
  3379. margin-top: 15px;
  3380. border-radius:2px;
  3381. }
  3382. input[type="range"]::-webkit-slider-thumb {
  3383. -webkit-appearance: none;
  3384. position: relative;
  3385. z-index: 1;
  3386. width: 25px;
  3387. height: 25px;
  3388. border-radius: 60px;
  3389. border:1px solid #c7c7c7;
  3390. background:white;
  3391. }
  3392. input.toggle:checked {
  3393. + label {
  3394. background: #4cd964;
  3395. line-height: -1em;
  3396. -webkit-transition:background 150ms;
  3397. transition:background 150ms;
  3398. & > span {
  3399. transform: translate3d(24px, 0, 0);
  3400. -webkit-transform: translate3d(24px, 0, 0);
  3401. }
  3402. }
  3403. }
  3404. input.toggle {
  3405. +
  3406. label:after {
  3407. content: '';
  3408. }
  3409. + label {
  3410. position: relative;
  3411. margin: 5px;
  3412. border-radius: 50px;
  3413. display: block;
  3414. height: 28px;
  3415. width: 50px;
  3416. border: 1px solid #c7c7c7;
  3417. left: 33%;
  3418. float: none;
  3419. & > span {
  3420. background: white;
  3421. border: 1px solid #c7c7c7;
  3422. top:-1px;
  3423. left:-1px;
  3424. height:29px;
  3425. }
  3426. }
  3427. }
  3428. .button-grouped:not(.vertical) > .button:first-child {
  3429. border-top-left-radius: 6px;
  3430. border-bottom-left-radius: 6px;
  3431. }
  3432. .button-grouped:not(.vertical) > .button:last-child {
  3433. border-top-right-radius: 6px;
  3434. border-bottom-right-radius: 6px;
  3435. }
  3436. }
  3437. .ios7 .button-grouped * ,.ios7 .button-grouped &>.button:first-child,.ios7 .button-grouped.vertical * ,.ios7 .button-grouped.vertical &>.button:last-child,.ios7 header .button-grouped &>.button {
  3438. border-color:@bluecolor;
  3439. }
  3440. .ios7 .button-grouped &>.button{
  3441. border-radius:0;
  3442. }
  3443. .ios7 .button-grouped &>.button.pressed ,.ios7 header .button-grouped &>.button.pressed {
  3444. color:white;
  3445. background:@bluecolor;
  3446. }
  3447. .ios7 #af_actionsheet a,.ios7 #af_actionsheet a.cance {
  3448. background-image:none;
  3449. text-shadow:none;
  3450. box-shadow:none;
  3451. font-weight:normal;
  3452. border-radius: 0;
  3453. border:none;
  3454. -webkit-box-shadow:none;
  3455. color:@bluecolor;
  3456. background-color:white;
  3457. cursor:pointer;
  3458. border-radius:0px;
  3459. line-height: 40px;
  3460. font-size: 20px;
  3461. margin-bottom: 1px;
  3462. }
  3463. .ios7 footer &>a.pressed:not(.button),.ios7 footer &>a.icon.pressed:not(.button):before {
  3464. color:@bluecolor;
  3465. }
  3466. .ios7 input.toggle + label:before,.ios7 input.toggle:checked + label:before {
  3467. content: '';
  3468. }
  3469. .ios7 input[type="radio"]:checked:not(.toggle) + label:before, .ios7 input[type="checkbox"]:checked:not(.toggle) + label:before {
  3470. background:#007aff;
  3471. color:white;
  3472. }
  3473. .ios7 input[type="radio"]:not(.toggle) + label:before, .ios7 input[type="checkbox"]:not(.toggle) + label:before {
  3474. background: white;
  3475. border: 1px solid #c7c7c7;
  3476. border-radius:30px;
  3477. }
  3478. .list {
  3479. margin: 0px;
  3480. padding: 0px;
  3481. list-style: none;
  3482. background-color: #fff;
  3483. margin:0 -10px;
  3484. box-sizing: border-box;
  3485. -webkit-box-sizing: border-box;
  3486. li {
  3487. display: block;
  3488. list-style: none;
  3489. position: relative;
  3490. padding: 20px 20px 20px 10px;
  3491. border-bottom: 1px solid #ccc;
  3492. background:inherit;
  3493. }
  3494. li:first-child {
  3495. /* border-top: 1px solid #ccc;*/
  3496. }
  3497. & > li {
  3498. & > a {
  3499. display: block;
  3500. position: relative;
  3501. display: block;
  3502. color: inherit;
  3503. margin: -20px -20px -20px -10px;
  3504. text-decoration: none;
  3505. padding: 20px 20px 20px 10px;
  3506. }
  3507. & > a:after, & .chevron:after {
  3508. position: absolute;
  3509. right: 8px;
  3510. font-family: 'chevron';
  3511. speak: none;
  3512. font-style: normal;
  3513. font-weight: normal;
  3514. font-variant: normal;
  3515. text-transform: none;
  3516. line-height: 1;
  3517. -webkit-font-smoothing: antialiased;
  3518. content: "\f054";
  3519. top: 50%;
  3520. margin-top: -0.5em;
  3521. color:inherit;
  3522. }
  3523. }
  3524. a {
  3525. .af-badge {
  3526. position: absolute;
  3527. right: 30px;
  3528. top: 48%;
  3529. margin-top: -10px;
  3530. }
  3531. }
  3532. .divider {
  3533. position: relative;
  3534. top: -1px;
  3535. padding-top: 6px;
  3536. padding-bottom: 6px;
  3537. font-size: 12px;
  3538. font-weight: bold;
  3539. line-height: 18px;
  3540. background-color: #dfe0e2;
  3541. border-top: 1px solid #ccc;
  3542. border-bottom: 1px solid #ccc;
  3543. box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
  3544. padding-right: 60px;
  3545. }
  3546. }
  3547. .list.inset {
  3548. border: 1px solid #ccc;
  3549. border-radius: 6px;
  3550. margin: 10px;
  3551. li:first-child {
  3552. border-top: none;
  3553. margin-top: 3px;
  3554. }
  3555. li:last-child {
  3556. border-bottom: none;
  3557. margin-bottom:3px;
  3558. }
  3559. }
  3560. @media handheld, only screen and (min-width: 768px) {
  3561. .splitview >*:not(nav) {
  3562. margin-left:256px;
  3563. z-index:9;
  3564. -webkit-transform:none !important;
  3565. transform:none !important;
  3566. -webkit-animation: none !important;
  3567. animation: none !important;
  3568. }
  3569. .splitview > nav {
  3570. left:0px !important;
  3571. width:256px !important;
  3572. display:block !important;
  3573. z-index:10;
  3574. -webkit-animation: none !important;
  3575. animation: none !important;
  3576. }
  3577. .splitview header .menuButton{
  3578. display:none !important;
  3579. }
  3580. }
  3581. header {
  3582. .menuButton {
  3583. position: relative;
  3584. top: 5px;
  3585. right: -8px;
  3586. height: 36px;
  3587. width: 36px;
  3588. z-index:2;
  3589. float:right;
  3590. }
  3591. .menuButton:after {
  3592. border-bottom: 9px double white;
  3593. border-top: 3px solid white;
  3594. top: 9px;
  3595. left: 3px;
  3596. content: "";
  3597. height: 15px;
  3598. position: absolute;
  3599. width: 15px;
  3600. }
  3601. }
  3602. @tizenbg:#313f66;
  3603. .tizen, .tizen .view, .tizen .view .pages {
  3604. font:14px 'TizenSans',sans-serif;
  3605. background:#000;
  3606. color:#fff;
  3607. border-color:#fff;
  3608. }
  3609. .tizen.light, .tizen.light .view , .tizen.light .view .pages {
  3610. background:#FDFDFD;
  3611. color:#000;
  3612. }
  3613. .tizen {
  3614. .view {
  3615. header {
  3616. background:@tizenbg;
  3617. color:inherit;
  3618. border-color:@tizenbg;
  3619. .button {
  3620. color: inherit;
  3621. border-color:transparent;
  3622. font-size:14px;
  3623. }
  3624. .button-grouped {
  3625. & > .button {
  3626. border-color:#aaa;
  3627. }
  3628. }
  3629. .backButton {
  3630. background: inherit;
  3631. color:inherit;
  3632. }
  3633. }
  3634. footer {
  3635. box-shadow: none;
  3636. background: none;
  3637. border-color: #000;
  3638. padding:0;
  3639. & > a:not(.button) {
  3640. color: inherit;
  3641. height:49px;
  3642. top:0px;
  3643. border-top:4px solid #414f6e;
  3644. background:#414f6e;
  3645. }
  3646. & > a.pressed:not(.button) {
  3647. border-top:4px solid #316fc6;
  3648. background:@tizenbg;
  3649. }
  3650. & > a.icon.pressed:not(.button):before {
  3651. color:inherit;
  3652. }
  3653. }
  3654. }
  3655. .menuButton:after {
  3656. border-color:white;
  3657. }
  3658. .af-badge {
  3659. border:none;
  3660. }
  3661. .list {
  3662. background:inherit;
  3663. color:inherit;
  3664. border-color:#303030;
  3665. .divider {
  3666. color:black;
  3667. }
  3668. }
  3669. .panel {
  3670. h2 {
  3671. color:inherit;
  3672. }
  3673. }
  3674. .collapsed:after {
  3675. border-top: 6px solid;
  3676. }
  3677. .collapsed:before {
  3678. border:2px solid;
  3679. }
  3680. .expanded:after {
  3681. border-bottom: 6px solid;
  3682. }
  3683. .expanded:before {
  3684. border:2px solid;
  3685. }
  3686. input.toggle+label:after {
  3687. color:inherit;
  3688. }
  3689. input.toggle+label {
  3690. border-radius:0;
  3691. & > span {
  3692. border-radius:0;
  3693. top:0;
  3694. width:27px;
  3695. height:28px;
  3696. }
  3697. }
  3698. label {
  3699. color:inherit;
  3700. }
  3701. .afPopup {
  3702. border: solid 1px #888;
  3703. padding: 5px;
  3704. border-radius: 5px;
  3705. -webkit-transform:none;
  3706. transform:none;
  3707. -webkit-transition: none;
  3708. transition:none;
  3709. background:@tizenbg;
  3710. color:inherit;
  3711. & > HEADER {
  3712. text-align:center;
  3713. padding:5px;
  3714. }
  3715. & > DIV {
  3716. font-size:14px;
  3717. text-align:center;
  3718. padding:5px;
  3719. margin:0;
  3720. }
  3721. & > FOOTER {
  3722. & > A {
  3723. width:120px;
  3724. }
  3725. }
  3726. }
  3727. #af_actionsheet {
  3728. background:inherit;
  3729. color:inherit;
  3730. a {
  3731. border-radius:0;
  3732. border:1px solid #ccc;
  3733. background:@tizenbg;
  3734. color:inherit;
  3735. }
  3736. }
  3737. }
  3738. .tizen.light {
  3739. .view {
  3740. header {
  3741. background:#e9e6df;
  3742. color:inherit;
  3743. border-color:#e9e6df;
  3744. }
  3745. footer {
  3746. border-color: #fff;
  3747. & > a:not(.button) {
  3748. border-top:4px solid #dedcd5;
  3749. background:#dedcd5;
  3750. }
  3751. & > a.pressed:not(.button) {
  3752. border-top:4px solid #ceccc5;
  3753. background:#e9e6df;
  3754. }
  3755. }
  3756. }
  3757. .menuButton:after {
  3758. border-color:black;
  3759. }
  3760. .afPopup {
  3761. background:#e9e6df;
  3762. }
  3763. #af_actionsheet {
  3764. a {
  3765. background:#e9e6df;
  3766. }
  3767. }
  3768. }
  3769. .tizen .panel, .tizen #modalContainer {
  3770. background:#000;
  3771. color:#fff;
  3772. }
  3773. .tizen .collapsed:before,.tizen .expanded:before {
  3774. border-color: inherit;
  3775. }
  3776. .tizen .collapsed:after,.tizen .expanded:after {
  3777. border-top-color:inherit;
  3778. border-top-color:inherit;
  3779. }
  3780. .tizen select, .tizen textarea, .tizen input[type="text"],.tizen input[type=search], .tizen input[type="password"],.tizen input[type="datetime"], .tizen input[type="datetime-local"],.tizen input[type="date"], .tizen input[type="month"],.tizen input[type="time"], .tizen input[type="week"],.tizen input[type="number"], .tizen input[type="email"],.tizen input[type="url"], .tizen input[type="tel"],.tizen input[type="color"], .tizen .input-group {
  3781. background:inherit;
  3782. color:inherit;
  3783. }
  3784. .tizen input.toggle:checked + label {
  3785. background: @tizenbg;
  3786. }
  3787. .tizen input[type="radio"]:not(.toggle):checked+label:before,.tizen input[type="checkbox"]:not(.toggle):checked+label:before {
  3788. background: @tizenbg;
  3789. }
  3790. .tizen .view footer .icon:not(.button):before {
  3791. margin-bottom: 2px;
  3792. top:0px;
  3793. }
  3794. /* Bg #00ABA9
  3795. /*
  3796. * reg white-space:
  3797. border 303030
  3798. hover : #111
  3799. */
  3800. @win8bg: #00ABA9;
  3801. @win8border: #303030;
  3802. @-ms-viewport{
  3803. width: device-width;
  3804. }
  3805. @font-face {
  3806. font-family: 'win8back';
  3807. src: url(data:application/x-font-woff;charset=utf-8;base64,d09GRk9UVE8AAARUAAsAAAAABmgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAABCAAAAS4AAAGZpdvO1kZGVE0AAAI4AAAAGgAAABxnmGDwR0RFRgAAAlQAAAAdAAAAIAAwAARPUy8yAAACdAAAAEsAAABgL9zcQGNtYXAAAALAAAAAOgAAAVLgE/LMaGVhZAAAAvwAAAAuAAAANvx5/t1oaGVhAAADLAAAAB4AAAAkBBD/5GhtdHgAAANMAAAADAAAAAwEAAACbWF4cAAAA1gAAAAGAAAABgADUABuYW1lAAADYAAAAOgAAAGPgxEkPHBvc3QAAARIAAAADAAAACAAAwAAeJxtTj1PAkEUnD0WQbwAEomYnEdlDxbGQu0Ua+2sULFAEhIEY0WiNJisITE5G2lo6Iw1/gULKxMTSypLCz+2UMe7A6+ymTczb2bfCkgJIcTkSbm6vLe7X4EwILCm5w1th3RGKjOkTGnHMLedolIBMSOqoh3dCFtoJSwgaaE9bSFqicsUpPdGFAnMIntcLa/ncjl3bLjj70xwDhBtcY6Q1zDwIRD/dPRRmrgo3BK1wRbZcRnrHqsH8h/PD49qQTfwsvyxTyGJZt8mDp6HY/Bls18krxf8RY9s7Qw96HlecQy+9BajiB92a1nyceWGYuL7zf3yw5RB3oWeyPz72QRxeL9KXi1Jstt9UWRtkCQ6m3kXCq8eWyRKpYwKx5VuyC9HO5G4dmZUWpmxXzJhtKEAAHicY2BgYGQAgjO2i86D6LNr4wVgNABJKQZOAAB4nGNgZGBg4ANiCQYQYGJgBEIQyQLmMQAABGAANQAAAHicY2BmYmCcwMDKwMHow5jGwMDgDqW/MkgytDAwMDGwMjPAgQCCyRCQ5prC4PCA4QMD44P/Dxj0GB8wKDQwMDDCFSgAISMAEEIMHwB4nGNgYGBmgGAZBkYGEPAB8hjBfBYGAyDNAYRMIIkHDB8Y/v9HZikwCjBBdYEBIxsDMndEAgDJXAiuAAB4nGNgZGBgAGK+Bx4V8fw2Xxm4mRhA4OzaeAEE/f8BEwPjAyCXgwEsDQAU3gn7AAB4nGNgZGBgfPD/AYMeEwMDwz8GIAkUQQHMAG3nA/YAAAIAAAACAAACAAAAAAAAUAAAAwAAeJx9jjFOw0AQRZ8TJ4BACFHQ0KxEiWzZRomiHMAHSJHeiVaWRWRLm0QpuActZ6DlGByAM3AEvsPQUGSl0b79+2fmA1e8EtGfiHNujQec8Wg85IEX41ied+MRl3waj6V/yxnFF1Jujl09D7jm3nhIyZNxLM+b8Yg7PozH0r840NAyY0XFmmc4NO1sVa1FCzw1ezb6Cnr6er+pBCWdWnbHO8jhcRSkZLrnqv8jf9UpCRNVIV+ucJRduyu7UHtXpJmbu7/FwmkySYosl+lEvKUWB7Yy9HGchvYRWPqwbbrW5Wl2qv0H0Z06yHicY2BmwAsAAH0ABA==) format('woff'),
  3808. url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAANAIAAAwBQRkZUTWeYYPAAAAWMAAAAHEdERUYAMgAGAAAFbAAAACBPUy8yL7rcHwAAAVgAAABWY21hcOAV89MAAAHEAAABUmdhc3D//wADAAAFZAAAAAhnbHlmEDC/5gAAAyQAAAB0aGVhZPx5/t0AAADcAAAANmhoZWEEEP/mAAABFAAAACRobXR4BKoAAgAAAbAAAAAUbG9jYQAsADoAAAMYAAAADG1heHAASgAcAAABOAAAACBuYW1lgxEkPAAAA5gAAAGPcG9zdJtVPjcAAAUoAAAAPAABAAAAAQAAWPDPKV8PPPUACwIAAAAAAM2tXxAAAAAAza1fEAAA/+ACAAHgAAAACAACAAAAAAAAAAEAAAHg/+AALgIAAAD+AAIAAAEAAAAAAAAAAAAAAAAAAAAFAAEAAAAFABkAAwAAAAAAAgAAAAEAAQAAAEAAAAAAAAAAAQIAAZAABQAIAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAIABQMAAAAAAAAAAAAAEAAAAAAAAAAAAAAAUGZFZABA4ADwAAHg/+AALgHgACCAAAABAAAAAAAAAgAAAAAAAAAAqgAAAgAAAgAAAAAAAAADAAAAAwAAABwAAQAAAAAATAADAAEAAAAcAAQAMAAAAAgACAACAAAAAOAA8AD//wAAAADgAPAA//8AACADEAQAAQAAAAAAAAAAAAABBgAAAQAAAAAAAAABAgAAAAIAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAA6AAMAAv/iAf4B3gAHAA8AGAAAACIGFBYyNjQCIiY0NjIWFCU3IwcXMyczNQFp0pWV0pWgvIaGvIb+8Gtkj49ka84B3pXSlZXS/rOGvIaGvIFrjo5rRgAAAAABAAD/4AIAAeAAAgAAEQEhAgD+AAHg/gAAAAAAAAAMAJYAAQAAAAAAAQAIABIAAQAAAAAAAgAHACsAAQAAAAAAAwAjAHsAAQAAAAAABAAIALEAAQAAAAAABQALANIAAQAAAAAABgAIAPAAAwABBAkAAQAQAAAAAwABBAkAAgAOABsAAwABBAkAAwBGADMAAwABBAkABAAQAJ8AAwABBAkABQAWALoAAwABBAkABgAQAN4AdwBpAG4AOABiAGEAYwBrAAB3aW44YmFjawAAUgBlAGcAdQBsAGEAcgAAUmVndWxhcgAARgBvAG4AdABGAG8AcgBnAGUAIAAyAC4AMAAgADoAIAB3AGkAbgA4AGIAYQBjAGsAIAA6ACAANgAtADUALQAyADAAMQAzAABGb250Rm9yZ2UgMi4wIDogd2luOGJhY2sgOiA2LTUtMjAxMwAAdwBpAG4AOABiAGEAYwBrAAB3aW44YmFjawAAVgBlAHIAcwBpAG8AbgAgADEALgAwAABWZXJzaW9uIDEuMAAAdwBpAG4AOABiAGEAYwBrAAB3aW44YmFjawAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAEAAgECAQMHdW5pRTAwMAd1bmlGMDAwAAAAAf//AAIAAQAAAA4AAAAYAAAAAAACAAEAAwAEAAEABAAAAAIAAAAAAAEAAAAAzD2izwAAAADNrV8QAAAAAM2tXxA=) format('truetype');
  3809. font-weight: normal;
  3810. font-style: normal;
  3811. }
  3812. .win8, .win8 .view, .win8 .view .pages {
  3813. font:14px "Segoe UI Semilight", "HelveticaNeue-light", Helvetica, Arial, sans-serif;
  3814. font-size:14px;
  3815. background:#000;
  3816. color:#fff;
  3817. }
  3818. .win8.light, .win8.light .view, .win8.light .view .pages {
  3819. background:#fff;
  3820. color:#000;
  3821. }
  3822. .win8 {
  3823. .view {
  3824. header {
  3825. border:0px;
  3826. background: inherit;
  3827. border-bottom:inherit;
  3828. color:inherit;
  3829. .button {
  3830. color: inherit;
  3831. border-color:transparent;
  3832. font-size:14px;
  3833. }
  3834. .backButton.pressed {
  3835. background:inherit;
  3836. }
  3837. .backButton {
  3838. color:inherit;
  3839. background:inherit;
  3840. margin:0;
  3841. font-family: 'win8back';
  3842. width:0px;
  3843. height:0px;
  3844. font-style: normal;
  3845. font-weight: normal;
  3846. font-variant: normal;
  3847. text-transform: none;
  3848. line-height: 1;
  3849. padding:0px;
  3850. margin:0px;
  3851. border:none;
  3852. position:absolute;
  3853. left:-185px;
  3854. -webkit-font-smoothing: antialiased;
  3855. }
  3856. .backButton::before {
  3857. content: "\e000";
  3858. font-size:30px;
  3859. position:absolute;
  3860. top:-6px;
  3861. right:-235px;
  3862. left:auto;
  3863. color:inherit;
  3864. font-family:inherit;
  3865. -webkit-transform:none;
  3866. transform:none;
  3867. }
  3868. h1 {
  3869. text-align: left;
  3870. color:inherit;
  3871. }
  3872. }
  3873. footer {
  3874. padding:0px;
  3875. background:inherit;
  3876. text-align: center;
  3877. height:65px;
  3878. background:rgba(33,32,33,.9);
  3879. border-top:none;
  3880. display:block;
  3881. text-align: center;
  3882. & > a:not(.button) {
  3883. text-align: center;
  3884. position: relative;
  3885. width: 56px !important;
  3886. height: 65px;
  3887. display: inline-block;
  3888. font: normal 10px/24px Segoe WP, Segoe UI, Verdana, Helvetica, Sans-Serif;
  3889. text-decoration: none;
  3890. color: inherit;
  3891. text-align: center;
  3892. text-shadow: 0 0 rgba(0, 0, 0, 0);
  3893. overflow: hidden;
  3894. background:inherit;
  3895. -webkit-backface-visibility: hidden;
  3896. -webkit-perspective: 1000;
  3897. }
  3898. & > a.icon.pressed:not(.button):before {
  3899. background-color: @win8bg;
  3900. }
  3901. & > a.icon:not(.button):before {
  3902. width:35px;
  3903. top: 4px;
  3904. left:2px;
  3905. font-size:19px;
  3906. padding: 5px;
  3907. border: 3px solid #fff;
  3908. border-radius: 20px;
  3909. }
  3910. & > a:not(:last-of-type):not(.button) {
  3911. border:none;
  3912. }
  3913. }
  3914. .panel {
  3915. background:inherit;
  3916. color:inherit;
  3917. }
  3918. }
  3919. .af-badge {
  3920. border:none;
  3921. }
  3922. .list {
  3923. background:inherit;
  3924. color:inherit;
  3925. border-color:@win8border;
  3926. li {
  3927. border-top:none;
  3928. border-bottom:none;
  3929. font-size:20px;
  3930. }
  3931. }
  3932. .panel {
  3933. h2 {
  3934. color:inherit;
  3935. font-weight:normal;
  3936. font-size:34px;
  3937. line-height:34px;
  3938. height:auto;
  3939. }
  3940. }
  3941. .collapsed:after {
  3942. border-top: 6px solid;
  3943. }
  3944. .collapsed:before {
  3945. border:2px solid;
  3946. }
  3947. .expanded:after {
  3948. border-bottom: 6px solid;
  3949. }
  3950. .expanded:before {
  3951. border:2px solid;
  3952. }
  3953. input.toggle+label:after {
  3954. color:inherit;
  3955. }
  3956. input.toggle+label {
  3957. border-radius:0;
  3958. & > span {
  3959. border-radius:0;
  3960. top:0;
  3961. width:27px;
  3962. height:28px;
  3963. }
  3964. }
  3965. input.toggle:checked+label {
  3966. background:@win8bg;
  3967. }
  3968. .button {
  3969. border-radius:0;
  3970. border:none;
  3971. background:inherit;
  3972. border:3px solid #fff;
  3973. color:inherit;
  3974. text-shadow:none;
  3975. box-shadow:none;
  3976. }
  3977. .button.pressed {
  3978. background:@win8bg;
  3979. }
  3980. .button-grouped {
  3981. & > .button {
  3982. border:3px solid #fff;
  3983. border-right:0;
  3984. }
  3985. & > .button:last-child {
  3986. border-right:3px solid #fff;
  3987. }
  3988. }
  3989. .button-grouped.vertical {
  3990. & > .button {
  3991. border:3px solid #fff;
  3992. border-bottom:0;
  3993. }
  3994. & > .button:last-child {
  3995. border-bottom:3px solid #fff;
  3996. }
  3997. }
  3998. .header {
  3999. .button-grouped {
  4000. & > .button {
  4001. border-color: #fff;
  4002. }
  4003. & > .button.pressed {
  4004. background:@win8bg;
  4005. }
  4006. }
  4007. }
  4008. .afPopup {
  4009. width: 100%;
  4010. border: solid 0px #72767b;
  4011. left:0px !important;
  4012. border-radius: 0;
  4013. -webkit-transform:none;
  4014. transform:none;
  4015. -webkit-transition: none;
  4016. transition:none;
  4017. top: 0 !important;
  4018. background:#222;
  4019. color:inherit;
  4020. padding:15px;
  4021. & > HEADER {
  4022. font-size:20px;
  4023. }
  4024. & > DIV {
  4025. font-size:16px;
  4026. padding:10px 0;
  4027. margin:0;
  4028. }
  4029. & > FOOTER {
  4030. width:100%;
  4031. text-align:left;
  4032. display:block !important;
  4033. & > A#cancel {
  4034. float:left;
  4035. min-width:100px;
  4036. }
  4037. & > A#action {
  4038. float:left;
  4039. min-width:100px;
  4040. margin-left:10px;
  4041. }
  4042. & > A.center {
  4043. width:auto;
  4044. }
  4045. }
  4046. }
  4047. #af_actionsheet {
  4048. background:#aaa;
  4049. color:black;
  4050. a {
  4051. border-radius:0;
  4052. border:0px solid black;
  4053. background-color:transparent;
  4054. font-weight:normal;
  4055. color:black;
  4056. box-shadow: 0px 1px 1px rgba(255,255,255,0);
  4057. }
  4058. }
  4059. input[type="range"] {
  4060. -webkit-appearance: none;
  4061. -webkit-appearance: none;
  4062. background-color: #ccc;
  4063. height: 4px;
  4064. position: relative;
  4065. top: -10px;
  4066. margin-top: 15px;
  4067. }
  4068. input[type="range"]::-webkit-slider-thumb {
  4069. -webkit-appearance: none;
  4070. position: relative;
  4071. z-index: 1;
  4072. width: 15px;
  4073. height: 15px;
  4074. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ccc), color-stop(100%,#ccc));
  4075. background-image: gradient(linear, left top, left bottom, color-stop(0%,#ccc), color-stop(100%,#ccc));
  4076. }
  4077. }
  4078. .win8.light {
  4079. .view {
  4080. footer {
  4081. background:#F2F2F2;
  4082. color:black;
  4083. display:block;
  4084. & > a:not(.button) {
  4085. text-shadow: 0 0 rgba(0, 0, 0, 0);
  4086. }
  4087. & > a.icon:not(.button):before {
  4088. border: 3px solid #000;
  4089. }
  4090. }
  4091. }
  4092. .button {
  4093. border:3px solid #000;
  4094. }
  4095. .afPopup {
  4096. background:#eee;
  4097. }
  4098. }
  4099. .win8 .list .divider, .win8 #menu.tabletMenu .list .divider {
  4100. background:@win8bg;
  4101. padding:5px;
  4102. display:inline;
  4103. font-size:16px;
  4104. font-weight:normal;
  4105. border-top:none;
  4106. border-bottom:none;
  4107. color:inherit;
  4108. }
  4109. .win8 .collapsed:before,.win8 .expanded:before {
  4110. border-color: inherit;
  4111. }
  4112. .win8 .collapsed:after,.win8 .expanded:after {
  4113. border-top-color:inherit;
  4114. border-top-color:inherit;
  4115. }
  4116. .win8 select, .win8 textarea, .win8 input[type="text"], .win8 input[type="search"], .win8 input[type="password"], .win8 input[type="datetime"], .win8 input[type="datetime-local"], .win8 input[type="date"], .win8 input[type="month"], .win8 input[type="time"], .win8 input[type="week"], .win8 input[type="number"], .win8 input[type="email"], .win8 input[type="url"], .win8 input[type="tel"], .win8 input[type="color"], .win8 .input-group {
  4117. background:black;
  4118. color:inherit;
  4119. }
  4120. .win8.light select, .win8.light textarea, .win8.light input[type="text"], .win8.light input[type="search"], .win8.light input[type="password"], .win8.light input[type="datetime"], .win8.light input[type="datetime-local"], .win8.light input[type="date"], .win8.light input[type="month"], .win8.light input[type="time"], .win8.light input[type="week"], .win8.light input[type="number"], .win8.light input[type="email"], .win8.light input[type="url"], .win8.light input[type="tel"], .win8.light input[type="color"], .win8.light .input-group {
  4121. background:white;
  4122. }
  4123. .win8 .button.next, .win8 .button.previous {
  4124. border-color: #fff !important;
  4125. }
  4126. .win8 .button.next::after, .win8 .button.previous::after {
  4127. border:none;
  4128. }
  4129. .win8 .button-grouped &>.button:first-child,.win8 .button-grouped &>.button:last-child {
  4130. border-radius:0;
  4131. }
  4132. .win8.light .button-grouped &>.button,.win8.light .button-grouped.vertical &>.button,.win8.light .header .button-grouped &>.button {
  4133. border-color: #111;
  4134. }
  4135. .win8 input[type="radio"]:not(.toggle):checked+label:before,.win8 input[type="checkbox"]:not(.toggle):checked+label:before {
  4136. background: @win8bg;
  4137. }