af.ui.base.less 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463
  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. @headerbg:#0088D1;
  923. @footerbg:#0088D1;
  924. @headercolor:#fff;
  925. @footercolor:#fff;
  926. @-ms-viewport {
  927. width: device-width;
  928. }
  929. body {
  930. .afPopup {
  931. border: solid 1px #33B5E5;
  932. border-radius: 5px;
  933. background:inherit;
  934. color:inherit;
  935. & > FOOTER {
  936. & > A {
  937. width: 120px;
  938. }
  939. }
  940. }
  941. #af_actionsheet {
  942. background:#0190d6;
  943. color:inherit;
  944. a {
  945. border-radius:0;
  946. color:black;
  947. background:white;
  948. border:none;
  949. text-shadow:none;
  950. }
  951. }
  952. }
  953. .view {
  954. header {
  955. background:@headerbg;
  956. border:none;
  957. border-bottom:1px solid @headerbg;
  958. color:@headercolor;
  959. h1 {
  960. text-shadow:none;
  961. width:45%;
  962. }
  963. .backButton {
  964. background:rgba(249,249,249,1);
  965. color:#fff;
  966. display: block;
  967. position: absolute;
  968. line-height:44px;
  969. left: 25px;
  970. text-overflow: ellipsis;
  971. font-size: 14px;
  972. padding:0;
  973. text-shadow: none;
  974. background-color: transparent;
  975. border:none;
  976. border-color:transparent;
  977. height: 44px;
  978. top:0;
  979. border-radius:0;
  980. box-shadow:none;
  981. margin: 0;
  982. padding-left: 0;
  983. text-align: center;
  984. width:50px;
  985. padding:0 !important;
  986. margin:0 !important;
  987. position:absolute;
  988. }
  989. }
  990. footer {
  991. background:@footerbg;
  992. border:none;
  993. border-top:1px solid @footerbg;
  994. box-shadow:none;
  995. & > a {
  996. color:@footercolor;
  997. }
  998. & > a.pressed:not(.button) {
  999. border-radius:0;
  1000. background-color:#00AEEF;
  1001. }
  1002. & > a.icon.pressed:not(.button):before {
  1003. color:inherit;
  1004. }
  1005. }
  1006. }
  1007. .backButton::before {
  1008. z-index: -1;
  1009. font-size:22px;
  1010. position: absolute;
  1011. top: -2px;
  1012. left: -30px;
  1013. text-align: center;
  1014. border-radius:0;
  1015. border: none;
  1016. border-color:transparent;
  1017. box-shadow: none;
  1018. -webkit-transform: none;
  1019. transform: none;
  1020. font-family: 'chevron';
  1021. speak: none;
  1022. font-style: normal;
  1023. font-weight: normal;
  1024. font-variant: normal;
  1025. text-transform: none;
  1026. line-height: 1;
  1027. -webkit-font-smoothing: antialiased;
  1028. content: "\f054";
  1029. -webkit-transform:rotate(180deg);
  1030. transform:rotate(180deg);
  1031. background-color: transparent;
  1032. padding:12px;
  1033. }
  1034. .af-badge {
  1035. border:none;
  1036. box-shadow:none;
  1037. }
  1038. .list {
  1039. background:inherit;
  1040. color:inherit;
  1041. border-color:#303030;
  1042. font-weight:normal;
  1043. .divider {
  1044. color:black;
  1045. }
  1046. & > li {
  1047. & > a:after {
  1048. color:#0088D1;
  1049. }
  1050. }
  1051. }
  1052. .panel {
  1053. color:inherit;
  1054. background:inherit;
  1055. h2 {
  1056. color:#0088D1;
  1057. }
  1058. }
  1059. .collapsed:after {
  1060. border-top: 6px solid;
  1061. }
  1062. .collapsed:before {
  1063. border:2px solid;
  1064. }
  1065. .expanded:after {
  1066. border-bottom: 6px solid;
  1067. }
  1068. .expanded:before {
  1069. border:2px solid;
  1070. }
  1071. .collapsed:before, .expanded:before {
  1072. border-color: inherit;
  1073. }
  1074. .collapsed:after, .expanded:after {
  1075. border-top-color:inherit;
  1076. border-top-color:inherit;
  1077. }
  1078. 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 {
  1079. background:inherit;
  1080. color:inherit;
  1081. }
  1082. input.toggle+label:after {
  1083. color:inherit;
  1084. }
  1085. input.toggle+label {
  1086. border-radius:0;
  1087. & > span {
  1088. border-radius:0;
  1089. top:0;
  1090. width:27px;
  1091. height:23px;
  1092. }
  1093. }
  1094. label {
  1095. color:inherit;
  1096. }
  1097. input[type="radio"]:checked+label:before, input[type="checkbox"]:checked+label:before {
  1098. background: #33B5E5;
  1099. }
  1100. .button {
  1101. border-radius:0;
  1102. text-shadow:none;
  1103. }
  1104. .button.previous {
  1105. border:none;
  1106. }
  1107. .button.next {
  1108. border:none;
  1109. }
  1110. .button.previous::after {
  1111. color:black;
  1112. z-index: -1;
  1113. font-size:22px;
  1114. position: absolute;
  1115. top: 2px;
  1116. left: -25px;
  1117. text-align: center;
  1118. border-radius:0;
  1119. border: none;
  1120. border-color:transparent;
  1121. box-shadow: none;
  1122. -webkit-transform: none;
  1123. transform: none;
  1124. font-family: 'chevron';
  1125. speak: none;
  1126. font-style: normal;
  1127. font-weight: normal;
  1128. font-variant: normal;
  1129. text-transform: none;
  1130. line-height: 1;
  1131. -webkit-font-smoothing: antialiased;
  1132. content: "\f054";
  1133. -webkit-transform:rotate(180deg);
  1134. transform:rotate(180deg);
  1135. background-color: transparent;
  1136. }
  1137. .button.next::after {
  1138. color:black;
  1139. z-index: -1;
  1140. font-size:22px;
  1141. position: absolute;
  1142. top: 6px;
  1143. right: -25px;
  1144. text-align: center;
  1145. border-radius:0;
  1146. border: none;
  1147. border-color:transparent;
  1148. box-shadow: none;
  1149. -webkit-transform: none;
  1150. transform: none;
  1151. font-family: 'chevron';
  1152. speak: none;
  1153. font-style: normal;
  1154. font-weight: normal;
  1155. font-variant: normal;
  1156. text-transform: none;
  1157. line-height: 1;
  1158. -webkit-font-smoothing: antialiased;
  1159. content: "\f054";
  1160. background-color: transparent;
  1161. }
  1162. #af_actionsheet {
  1163. position:absolute;
  1164. left:0px;
  1165. right:0px;
  1166. padding-left:10px;
  1167. padding-right:10px;
  1168. padding-top:10px;
  1169. margin:auto;
  1170. background:black;
  1171. float:left;
  1172. z-index:9999;
  1173. border-top:#fff 1px solid;
  1174. background:rgba(71,71,71,.95);
  1175. 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)));
  1176. background-image:-webkit-linear-gradient(top, rgba(255,255,255,.4) 0%, rgba(255,255,255,.1) 8%, rgba(255,255,255,0) 8%);
  1177. box-shadow:0px -1px 2px rgba(0,0,0,.4);
  1178. bottom:0px;
  1179. a {
  1180. text-decoration:none;
  1181. -webkit-transition:all 0.4s ease;
  1182. transition:all 0.4s ease;
  1183. text-shadow:0px -1px rgba(0,0,0,.8);
  1184. padding:0px .25em;
  1185. border:1px solid rgba(0,0,0,.8);
  1186. text-overflow:ellipsis;
  1187. border-radius:.75em;
  1188. 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)));
  1189. background-image:-webkit-linear-gradient(top, rgba(255,255,255,.5) 0%, rgba(255,255,255,.2) 50%, rgba(255,255,255,0) 50%);
  1190. box-shadow:0px 1px 1px rgba(255,255,255,0.7);
  1191. display:block;
  1192. color:white;
  1193. text-align:center;
  1194. line-height:36px;
  1195. font-size:20px;
  1196. font-weight:bold;
  1197. margin-bottom:10px;
  1198. background-color:rgba(130,130,130,1);
  1199. }
  1200. a.selected {
  1201. background-color:rgba(150,150,150,1);
  1202. }
  1203. a.cancel {
  1204. background-color:rgba(43,43,43,1);
  1205. color:white;
  1206. }
  1207. a.cancel.selected {
  1208. background-color:rgba(73,73,73,1);
  1209. }
  1210. a.red {
  1211. color:white;
  1212. background-color:rgba(204,0,0,1);
  1213. }
  1214. a.red.selected {
  1215. background-color:rgba(255,0,0,1);
  1216. }
  1217. }
  1218. #mask {
  1219. display:block;
  1220. width:100%;
  1221. height:100%;
  1222. background:#000;
  1223. z-index: 999999;
  1224. position:fixed;
  1225. top:0;
  1226. left:0;
  1227. }
  1228. .afPopup {
  1229. display: block;
  1230. width: 280px;
  1231. float:left;
  1232. border: solid 1px #72767b;
  1233. border-radius:10px;
  1234. padding: 10px;
  1235. opacity: 1;
  1236. -webkit-transform: scale(1);
  1237. transform:scale(1);
  1238. position: absolute;
  1239. z-index: 1000000;
  1240. top: 50%;
  1241. left: 50%;
  1242. margin: 0px auto;
  1243. background: rgba(70,70,70,1);
  1244. color:white;
  1245. & > * {
  1246. color:inherit;
  1247. }
  1248. & > HEADER {
  1249. font-weight:bold;
  1250. font-size:20px;
  1251. margin:0;
  1252. padding:5px;
  1253. }
  1254. & > DIV {
  1255. font-size:14px;
  1256. margin:8px;
  1257. }
  1258. & > FOOTER {
  1259. width:100%;
  1260. text-align:center;
  1261. display:block !important;
  1262. & > A#cancel {
  1263. float:left;
  1264. }
  1265. & > A#action {
  1266. float:right;
  1267. }
  1268. & > A.center {
  1269. float:none!important;
  1270. width:80%;
  1271. margin:8px;
  1272. }
  1273. }
  1274. }
  1275. .afPopup.hidden {
  1276. opacity: 0;
  1277. -webkit-transform: scale(0.1);
  1278. }
  1279. .afPopup.show {
  1280. -webkit-transition: all 0.20s ease-in-out;
  1281. transition: all 0.20s ease-in-out;
  1282. }
  1283. #splashscreen {
  1284. position:absolute;
  1285. top:0;
  1286. bottom:0;
  1287. width:100%;
  1288. left:0;
  1289. min-height:120%;
  1290. background:rgba(29,29,28,1) !important;
  1291. color:white !important;
  1292. font-size:30px;
  1293. text-align:center;
  1294. z-index:9999;
  1295. display:block;
  1296. margin-left: auto !important;
  1297. margin-right: auto !important;
  1298. padding-top:80px !important;
  1299. }
  1300. .ui-icon {
  1301. background: #666;
  1302. background: rgba(0,0,0,.4);
  1303. background-repeat: no-repeat;
  1304. }
  1305. .ui-loader {
  1306. display: none;
  1307. margin:10px;
  1308. position: absolute;
  1309. opacity: .85;
  1310. z-index: 100;
  1311. left: 50%;
  1312. width: 200px;
  1313. margin-left: -100px;
  1314. margin-top: -35px;
  1315. padding: 10px 30px;
  1316. background: #666;
  1317. background:rgba(0,0,0,.4);
  1318. color:white;
  1319. h1 {
  1320. font-size: 15px;
  1321. text-align: center;
  1322. }
  1323. .ui-icon {
  1324. position: static;
  1325. display: block;
  1326. opacity: .9;
  1327. margin: 10px auto;
  1328. width: 35px;
  1329. height: 35px;
  1330. background-color: #eee;
  1331. }
  1332. }
  1333. .ui-loader.heavy {
  1334. opacity:1;
  1335. }
  1336. .spin {
  1337. -webkit-transform: rotate(360deg);
  1338. -webkit-animation-name: spin;
  1339. -webkit-animation-duration: 1s;
  1340. -webkit-animation-iteration-count: infinite;
  1341. transform: rotate(360deg);
  1342. animation-name: spin;
  1343. animation-duration: 1s;
  1344. animation-iteration-count: infinite;
  1345. }
  1346. @-webkit-keyframes
  1347. spin {
  1348. from {-webkit-transform: rotate(0deg);}
  1349. to {-webkit-transform: rotate(360deg);}
  1350. }
  1351. @keyframes
  1352. spin {
  1353. from {transform: rotate(0deg);}
  1354. to {transform: rotate(360deg);}
  1355. }
  1356. .ui-icon-loading {
  1357. width: 40px;
  1358. height: 40px;
  1359. border-left:2px solid #ccc;
  1360. border-right:2px solid #ccc;
  1361. border-top:2px solid #ccc;
  1362. border-bottom:2px solid #ccc;
  1363. background:white;
  1364. border-radius:10px;
  1365. }
  1366. .ui-corner-all {
  1367. border-radius:.6em;
  1368. }
  1369. .swipe-reveal {
  1370. .swipe-hidden {
  1371. position:absolute;
  1372. right:0px;
  1373. top:0px;
  1374. z-index:1;
  1375. bottom:0px;
  1376. }
  1377. .swipe-content {
  1378. display: block;
  1379. position: relative;
  1380. display: block;
  1381. color: inherit;
  1382. margin: -20px -20px -20px -10px;
  1383. text-decoration: none;
  1384. padding: 20px 20px 20px 10px;
  1385. background:inherit;
  1386. z-index:2;
  1387. }
  1388. }
  1389. .swipe-hidden .button, .swipe-hidden .button.pressed {
  1390. display:inline-block;
  1391. height:100%;
  1392. background:#ccc !important;
  1393. color:white;
  1394. border-radius:0 !important;
  1395. border:none;
  1396. padding: 20px 15px;
  1397. margin:0;
  1398. float:left;
  1399. color:white !important;
  1400. }
  1401. .swipe-hidden .archive, .swipe-hidden .archive.pressed {
  1402. background:red !important;
  1403. }
  1404. .afToast {
  1405. width: auto;
  1406. border: solid 1px #72767b;
  1407. z-index: 1000000;
  1408. margin: 0px auto;
  1409. background: #464646;
  1410. color:white;
  1411. opacity:0.95;
  1412. height:auto;
  1413. font-size:20px;
  1414. -webkit-transition: all 0.3s;
  1415. transition: all 0.3s;
  1416. text-align: left;
  1417. line-height:46px;
  1418. margin:5px 10px;
  1419. border-radius:5px;
  1420. overflow:hidden;
  1421. & > * {
  1422. color:inherit;
  1423. }
  1424. & > DIV {
  1425. font-size:16px;
  1426. margin:8px;
  1427. }
  1428. }
  1429. .afToast.hidden {
  1430. opacity:0.1;
  1431. height:5px;
  1432. overflow:hidden;
  1433. }
  1434. .afToastContainer {
  1435. position:absolute;
  1436. top:0px;
  1437. left:0px;
  1438. z-index:99999;
  1439. }
  1440. .afToast.success {
  1441. background:#499349;
  1442. }
  1443. .afToast.error {
  1444. background:#AA312A;
  1445. }
  1446. .afToast.warning {
  1447. background:#DF8505;
  1448. }
  1449. .afToastContainer.br {
  1450. bottom:0px;
  1451. right:0px;
  1452. top:auto;
  1453. left:auto;
  1454. }
  1455. .afToastContainer.bl {
  1456. bottom:0px;
  1457. left:0px;
  1458. top:auto;
  1459. right:auto;
  1460. }
  1461. .afToastContainer.tl {
  1462. top:0px;
  1463. left:0px;
  1464. right:auto;
  1465. bottom:auto;
  1466. }
  1467. .afToastContainer.tr {
  1468. top:0px;
  1469. right:0px;
  1470. left:auto;
  1471. bottom:auto;
  1472. }
  1473. .afToastContainer.tc {
  1474. top:0px;
  1475. right:0px;
  1476. bottom:auto;
  1477. left:0px;
  1478. }
  1479. .afToastContainer.bc {
  1480. top:auto;
  1481. right:0px;
  1482. bottom:0px;
  1483. left:0px;
  1484. }
  1485. .af-badge {
  1486. position:absolute;
  1487. top:2px;
  1488. right:2px;
  1489. display:inline-block;
  1490. min-width:20px;
  1491. max-width:90%;
  1492. height:20px;
  1493. padding:0 3px;
  1494. background-color:red;
  1495. border-radius:20px;
  1496. font-size:12px;
  1497. line-height:19px;
  1498. font-weight:bold;
  1499. color:#fff;
  1500. text-overflow:ellipsis;
  1501. text-align:center;
  1502. text-shadow:0 -1px 0 rgba(64,0,0,.6);
  1503. }
  1504. .af-badge.br {
  1505. bottom:2px;
  1506. right:2px;
  1507. top:auto;
  1508. left:auto;
  1509. }
  1510. .af-badge.bl {
  1511. bottom:2px;
  1512. left:2px;
  1513. top:auto;
  1514. right:auto;
  1515. }
  1516. .af-badge.tl {
  1517. top:2px;
  1518. left:2px;
  1519. right:auto;
  1520. bottom:auto;
  1521. }
  1522. .button {
  1523. position:relative;
  1524. display:inline-block;
  1525. padding:8px 12px;
  1526. margin:8px 0;
  1527. font-weight:bold;
  1528. color:#000;
  1529. text-align:center;
  1530. vertical-align:top;
  1531. cursor:pointer;
  1532. background-color:#eee;
  1533. border:1px solid #666;
  1534. text-decoration: none;
  1535. z-index:2;
  1536. }
  1537. .button.pressed {
  1538. background:#fff;
  1539. }
  1540. .button.previous {
  1541. margin-left:16px;
  1542. padding-left:6px;
  1543. border-color:#666 #666 transparent transparent !important;
  1544. }
  1545. .button.next {
  1546. border-color:#666 transparent #666 #666 !important;
  1547. margin-right:16px;
  1548. padding-right:6px;
  1549. }
  1550. .button.previous::after {
  1551. z-index:-1;
  1552. content:'';
  1553. position:absolute;
  1554. width:25px;
  1555. height:27px;
  1556. background-color:inherit;
  1557. top:3px;
  1558. left:-11px;
  1559. border-radius:5px;
  1560. border:1px solid;
  1561. border-color:transparent transparent inherit transparent;
  1562. -webkit-transform:rotate(45deg);
  1563. transform:rotate(45deg);
  1564. }
  1565. .button.next::after {
  1566. z-index:-1;
  1567. content:'';
  1568. position:absolute;
  1569. width:25px;
  1570. height:27px;
  1571. background-color:inherit;
  1572. top:3px;
  1573. right:-11px;
  1574. border-radius:5px;
  1575. border:1px solid;
  1576. border-color:transparent transparent transparent transparent;
  1577. -webkit-transform:rotate(45deg);
  1578. transform:rotate(45deg);
  1579. }
  1580. .button.block {
  1581. display:block;
  1582. }
  1583. .button.flat {
  1584. border-radius: 0;
  1585. box-shadow:none;
  1586. }
  1587. .header {
  1588. .button-grouped {
  1589. & > .button {
  1590. margin:0;
  1591. border-color:#fff;
  1592. }
  1593. }
  1594. .button {
  1595. color: #fff;
  1596. background:none;
  1597. border-color: transparent;
  1598. font-size:12px;
  1599. padding:7px;
  1600. height:32px;
  1601. margin:5px;
  1602. text-overflow: ellipsis;
  1603. white-space: nowrap;
  1604. }
  1605. .button.icon:before {
  1606. padding-left:6px;
  1607. }
  1608. }
  1609. .button-grouped {
  1610. display:inline-block;
  1611. margin: 5px;
  1612. * {
  1613. border-radius:0px;
  1614. float:left;
  1615. border-left:0px solid transparent;
  1616. border-right: 1px solid #666;
  1617. border-bottom: 1px solid #666;
  1618. border-top: 1px solid #666;
  1619. margin:0;
  1620. }
  1621. & > .button:first-child {
  1622. border-left: 1px solid #666;
  1623. border-top-left-radius: 3px;
  1624. border-bottom-left-radius: 3px;
  1625. }
  1626. & > .button:last-child {
  1627. border-top-right-radius: 3px;
  1628. border-bottom-right-radius: 3px;
  1629. }
  1630. }
  1631. .button-grouped.flex {
  1632. display: -webkit-box;
  1633. display: -moz-box;
  1634. display: -ms-flexbox;
  1635. display: -webkit-flex;
  1636. display: flex;
  1637. & > .button {
  1638. -webkit-box-flex: 1;
  1639. -moz-box-flex: 1 auto;
  1640. -webkit-flex: 1 auto;
  1641. -ms-flex: 1 auto;
  1642. flex: 1 auto;
  1643. white-space: nowrap;
  1644. overflow: hidden;
  1645. text-overflow: ellipsis;
  1646. }
  1647. }
  1648. .button-grouped.flex.vertical {
  1649. display: inline-block;
  1650. }
  1651. .button-grouped.vertical {
  1652. * {
  1653. border-radius:0px;
  1654. display:block;
  1655. float:none;
  1656. width:100%;
  1657. border-left: 1px solid #666;
  1658. border-right: 1px solid #666;
  1659. border-top: 1px solid #666;
  1660. border-bottom: 0px solid #666;
  1661. }
  1662. & > .button:first-child {
  1663. border-top-left-radius: 3px;
  1664. border-top-right-radius: 3px;
  1665. border-bottom-left-radius:0px;
  1666. border-bottom-right-radius:0px;
  1667. }
  1668. & > .button:last-child {
  1669. border-top-right-radius:0px;
  1670. border-top-left-radius:0px;
  1671. border-bottom-right-radius: 3px;
  1672. border-bottom-left-radius: 3px;
  1673. border-bottom:1px solid #666;
  1674. }
  1675. }
  1676. .button.gray {
  1677. background:#999;
  1678. border-color:#666;
  1679. }
  1680. .button.yellow {
  1681. background-color:#F1C222;
  1682. border-color:#999;
  1683. }
  1684. .button.red {
  1685. color:#fff;
  1686. text-shadow:0 -1px 0 #666;
  1687. background:#B20000;
  1688. border-color:#666;
  1689. }
  1690. .button.green {
  1691. color:#fff;
  1692. text-shadow:0 -1px 0 #666;
  1693. background:#009C0C;
  1694. border-color:#666;
  1695. }
  1696. .button.orange {
  1697. color:#fff;
  1698. text-shadow:0 -1px 0 #666;
  1699. background-color:#FF8000;
  1700. border-color:#666;
  1701. }
  1702. .button.black {
  1703. color:#fff;
  1704. text-shadow:none;
  1705. background:#000;
  1706. border-color:#666;
  1707. }
  1708. .button.slate {
  1709. color:#fff;
  1710. text-shadow:0 -1px 0 #000;
  1711. background:#171F28;
  1712. border-color:#666;
  1713. }
  1714. .backButton {
  1715. text-overflow: ellipsis;
  1716. white-space: nowrap;
  1717. }
  1718. 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 {
  1719. width: 100%;
  1720. height: 40px;
  1721. padding: 10px;
  1722. margin-bottom: 10px;
  1723. background: #fff;
  1724. border: 1px solid #ccc;
  1725. border-radius: 5px;
  1726. font-size: 14px;
  1727. font-weight: normal;
  1728. -webkit-appearance: none;
  1729. box-sizing: border-box;
  1730. }
  1731. form {
  1732. position: relative;
  1733. }
  1734. input[type="radio"],input[type="checkbox"] {
  1735. display: none;
  1736. }
  1737. input[type="radio"] + label,input[type="checkbox"] + label {
  1738. display: inline-block;
  1739. width: 60%;
  1740. float: right;
  1741. position: relative;
  1742. text-align: left;
  1743. padding: 13px 0 0 8px;
  1744. margin-top:3px;
  1745. }
  1746. input[type="radio"]:not(.toggle) + label:before {
  1747. background-color: #fafafa;
  1748. border: 1px solid #cacece;
  1749. border-radius: 3px;
  1750. display: block;
  1751. position: absolute;
  1752. top: 8px;
  1753. left: -25px;
  1754. height: 28px;
  1755. width: 28px;
  1756. font-size: 13px;
  1757. text-align: center;
  1758. line-height: 28px;
  1759. content: " ";
  1760. }
  1761. input[type="radio"]:checked
  1762. +
  1763. label:before {
  1764. background-color: #1eb0e9;
  1765. -webkit-transition:background-color 150ms;
  1766. transition:background-color 150ms;
  1767. }
  1768. input[type="checkbox"]
  1769. +
  1770. label:before {
  1771. background-color: #fafafa;
  1772. border: 1px solid #cacece;
  1773. border-radius: 3px;
  1774. display: block;
  1775. position: absolute;
  1776. top: 8px;
  1777. left: -25px;
  1778. height: 28px;
  1779. width: 28px;
  1780. font-size: 13px;
  1781. text-align: center;
  1782. line-height: 28px;
  1783. content: " ";
  1784. }
  1785. input[type="checkbox"]:checked
  1786. +
  1787. label:before {
  1788. content: '\00a0\2714';
  1789. padding: 0px;
  1790. display: inline-block;
  1791. background-color:#1eb0e9;
  1792. -webkit-transition:background-color 150ms;
  1793. transition:background-color 150ms;
  1794. }
  1795. input[type="radio"]:after,input[type="checkbox"]:after {
  1796. visibility: hidden;
  1797. display: block;
  1798. font-size: 0;
  1799. content: " ";
  1800. clear: both;
  1801. height: 0;
  1802. }
  1803. input[type="search"] {
  1804. border-radius: 20px;
  1805. }
  1806. label {
  1807. float: left;
  1808. width: 33%;
  1809. font-weight: normal;
  1810. font-size: 14px;
  1811. color: inherit;
  1812. text-align: right;
  1813. padding: 15px 18px;
  1814. }
  1815. 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 {
  1816. width: 66%;
  1817. }
  1818. textarea {
  1819. height: auto;
  1820. }
  1821. .input-group {
  1822. width: auto;
  1823. height: auto;
  1824. padding: 12px;
  1825. overflow: hidden;
  1826. }
  1827. .input-group input:not([type='button']):not([type='submit']),.input-group textarea,.input-group select {
  1828. margin-bottom: 0;
  1829. background-color: transparent;
  1830. border: 0;
  1831. border-bottom: 1px solid #ccc;
  1832. border-radius: 0;
  1833. box-shadow: none;
  1834. }
  1835. .input-group input:not([type="submit"]):not([type="button"]):last-child,.input-group textarea:last-child,.input-group select:last-child {
  1836. border-bottom: none;
  1837. }
  1838. .input-group input[type=button],.input-group input[type=submit] {
  1839. margin: 5px;
  1840. }
  1841. input.toggle + label:before,input.toggle:checked + label:before {
  1842. content: attr(data-on);
  1843. position: absolute;
  1844. color: #fff;
  1845. left: 5px;
  1846. width: 42px;
  1847. text-align: left;
  1848. z-index: 3;
  1849. top: 0px;
  1850. overflow: hidden;
  1851. background-color: transparent;
  1852. border: none;
  1853. border-radius: 0px;
  1854. text-transform: uppercase;
  1855. display: none;
  1856. height: 30px;
  1857. line-height: 29px !important;
  1858. }
  1859. input.toggle:checked {
  1860. +
  1861. label:before {
  1862. display: block;
  1863. }
  1864. + label:after {
  1865. display: none;
  1866. }
  1867. + label {
  1868. background: #1eb0e9;
  1869. line-height: -1em;
  1870. -webkit-transition:background 150ms;
  1871. transition:background 150ms;
  1872. & > span {
  1873. transform: translate3d(37px, 0, 0);
  1874. -webkit-transform: translate3d(37px, 0, 0);
  1875. }
  1876. }
  1877. }
  1878. input.toggle {
  1879. +
  1880. label:after {
  1881. content: attr(data-off);
  1882. position: absolute;
  1883. color: #505050;
  1884. width: 42px;
  1885. text-align: left;
  1886. z-index: 1;
  1887. top: 0px;
  1888. left: 30px;
  1889. overflow: hidden;
  1890. background-color: transparent;
  1891. border: none;
  1892. border-radius: 0px;
  1893. text-transform: uppercase;
  1894. height: 30px;
  1895. line-height: 29px;
  1896. }
  1897. + label {
  1898. position: relative;
  1899. margin: 5px;
  1900. border-radius: 50px;
  1901. display: block;
  1902. height: 30px;
  1903. width: 65px;
  1904. border: 1px solid #ccc;
  1905. left: 33%;
  1906. float: none;
  1907. & > span {
  1908. display: block;
  1909. width: 29px;
  1910. height: 31px;
  1911. background: #ccc;
  1912. border-radius: 50px;
  1913. z-index: 5;
  1914. top: -2px;
  1915. left: 0px;
  1916. position: absolute;
  1917. transition: transform 100ms linear;
  1918. transform: translate3d(0, 0, 0);
  1919. -webkit-transform: translate3d(0, 0, 0);
  1920. -webkit-transition: -webkit-transform 100ms linear;
  1921. }
  1922. }
  1923. }
  1924. .formGroupHead {
  1925. font-size: 18px;
  1926. font-weight: bold;
  1927. color: inherit;
  1928. margin: 16px 0 8px;
  1929. }
  1930. input[type=button],input[type=submit], button {
  1931. font-size:inherit;
  1932. }
  1933. .grid {
  1934. width: 100%;
  1935. overflow:hidden;
  1936. }
  1937. .col2,.col3,.col1-3,.col2-3 {
  1938. float: none;
  1939. width: 100%;
  1940. }
  1941. .grid:after {
  1942. content: '';
  1943. clear: both;
  1944. }
  1945. @media handheld, only screen and (min-width: 768px) {
  1946. .col2 {
  1947. width: 50%;
  1948. float: left;
  1949. }
  1950. .col3 {
  1951. width: 33.3%;
  1952. float: left;
  1953. }
  1954. .col1-3 {
  1955. width: 33.3%;
  1956. float: left;
  1957. }
  1958. .col2-3 {
  1959. width: 66.6%;
  1960. float: left;
  1961. }
  1962. }
  1963. .list {
  1964. margin: 0px;
  1965. padding: 0px;
  1966. list-style: none;
  1967. background-color: #fff;
  1968. margin:0 -10px;
  1969. box-sizing: border-box;
  1970. -webkit-box-sizing: border-box;
  1971. li {
  1972. display: block;
  1973. list-style: none;
  1974. position: relative;
  1975. padding: 20px 20px 20px 10px;
  1976. border-bottom: 1px solid #ccc;
  1977. background:inherit;
  1978. }
  1979. li:first-child {
  1980. /* border-top: 1px solid #ccc;*/
  1981. }
  1982. & > li {
  1983. & > a {
  1984. display: block;
  1985. position: relative;
  1986. display: block;
  1987. color: inherit;
  1988. margin: -20px -20px -20px -10px;
  1989. text-decoration: none;
  1990. padding: 20px 20px 20px 10px;
  1991. }
  1992. & > a:after, & .chevron:after {
  1993. position: absolute;
  1994. right: 8px;
  1995. font-family: 'chevron';
  1996. speak: none;
  1997. font-style: normal;
  1998. font-weight: normal;
  1999. font-variant: normal;
  2000. text-transform: none;
  2001. line-height: 1;
  2002. -webkit-font-smoothing: antialiased;
  2003. content: "\f054";
  2004. top: 50%;
  2005. margin-top: -0.5em;
  2006. color:inherit;
  2007. }
  2008. }
  2009. a {
  2010. .af-badge {
  2011. position: absolute;
  2012. right: 30px;
  2013. top: 48%;
  2014. margin-top: -10px;
  2015. }
  2016. }
  2017. .divider {
  2018. position: relative;
  2019. top: -1px;
  2020. padding-top: 6px;
  2021. padding-bottom: 6px;
  2022. font-size: 12px;
  2023. font-weight: bold;
  2024. line-height: 18px;
  2025. background-color: #dfe0e2;
  2026. border-top: 1px solid #ccc;
  2027. border-bottom: 1px solid #ccc;
  2028. box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
  2029. padding-right: 60px;
  2030. }
  2031. }
  2032. .list.inset {
  2033. border: 1px solid #ccc;
  2034. border-radius: 6px;
  2035. margin: 10px;
  2036. li:first-child {
  2037. border-top: none;
  2038. margin-top: 3px;
  2039. }
  2040. li:last-child {
  2041. border-bottom: none;
  2042. margin-bottom:3px;
  2043. }
  2044. }
  2045. @media handheld, only screen and (min-width: 768px) {
  2046. .splitview >*:not(nav) {
  2047. margin-left:256px;
  2048. z-index:9;
  2049. -webkit-transform:none !important;
  2050. transform:none !important;
  2051. -webkit-animation: none !important;
  2052. animation: none !important;
  2053. }
  2054. .splitview > nav {
  2055. left:0px !important;
  2056. width:256px !important;
  2057. display:block !important;
  2058. z-index:10;
  2059. -webkit-animation: none !important;
  2060. animation: none !important;
  2061. }
  2062. .splitview header .menuButton{
  2063. display:none !important;
  2064. }
  2065. }
  2066. header {
  2067. .menuButton {
  2068. position: relative;
  2069. top: 5px;
  2070. right: -8px;
  2071. height: 36px;
  2072. width: 36px;
  2073. z-index:2;
  2074. float:right;
  2075. }
  2076. .menuButton:after {
  2077. border-bottom: 9px double white;
  2078. border-top: 3px solid white;
  2079. top: 9px;
  2080. left: 3px;
  2081. content: "";
  2082. height: 15px;
  2083. position: absolute;
  2084. width: 15px;
  2085. }
  2086. }
  2087. #lockScreen {
  2088. position: absolute;
  2089. top:0px;
  2090. bottom:0px;
  2091. width:100%;
  2092. height:100%;
  2093. left:0px;
  2094. z-index:99999999999999;
  2095. background: #ccc;
  2096. .flexContainer {
  2097. display: -webkit-box;
  2098. display: -moz-box;
  2099. display: box;
  2100. -webkit-box-orient: vertical;
  2101. -moz-box-orient: vertical;
  2102. box-orient: vertical;
  2103. -webkit-box-align: center;
  2104. -moz-box-align: center;
  2105. box-align: center;
  2106. -webkit-box-pack: center;
  2107. -moz-box-pack: center;
  2108. box-pack: center;
  2109. }
  2110. .keyboard {
  2111. width:100%;
  2112. position:absolute;
  2113. bottom:0px;
  2114. .row {
  2115. display: block;
  2116. width:100%;
  2117. text-align: center;
  2118. height:50px;
  2119. line-height:50px;
  2120. font-size:1.3em;
  2121. font-weight: bold;
  2122. div {
  2123. display: block;
  2124. width:33.33%;
  2125. float:left;
  2126. border:1px solid #000;
  2127. justify-content: center;
  2128. text-align: center;
  2129. }
  2130. div.grey {
  2131. background:white;
  2132. }
  2133. }
  2134. }
  2135. .content {
  2136. position:absolute;
  2137. top:0px;
  2138. bottom:170px;
  2139. width:100%;
  2140. text-align:center;
  2141. -moz-box-flex: 0;
  2142. -webkit-box-flex: 0;
  2143. -ms-box-flex: 0;
  2144. box-flex: 0;
  2145. -moz-box-ordinal-group: 1;
  2146. -webkit-box-ordinal-group: 1;
  2147. -ms-box-ordinal-group: 1;
  2148. box-ordinal-group: 1;
  2149. align-items: center;
  2150. justify-content: center;
  2151. }
  2152. .touched {
  2153. background-color: white;
  2154. }
  2155. input[type="password"] {
  2156. height:50px;
  2157. font-size:40px;
  2158. width:200px;
  2159. text-align: center;
  2160. }
  2161. .icon {
  2162. font-size:50px;
  2163. color:white;
  2164. margin-bottom: 10px;
  2165. }
  2166. .error {
  2167. padding-top:10px;
  2168. visibility: hidden;
  2169. color:red;
  2170. font-weight:bold;
  2171. font-size:1.3em;
  2172. }
  2173. &.round{
  2174. .content {
  2175. bottom:250px;
  2176. }
  2177. .keyboard{
  2178. bottom:10px;
  2179. .row {
  2180. display: -webkit-box;
  2181. display: -moz-box;
  2182. display: box;
  2183. -webkit-box-align: center;
  2184. -moz-box-align: center;
  2185. box-align: center;
  2186. -webkit-box-pack: center;
  2187. -moz-box-pack: center;
  2188. box-pack: center;
  2189. margin-bottom:20px;
  2190. div {
  2191. -moz-box-flex: 0;
  2192. -webkit-box-flex: 0;
  2193. -ms-box-flex: 0;
  2194. box-flex: 0;
  2195. -moz-box-ordinal-group: 1;
  2196. -webkit-box-ordinal-group: 1;
  2197. -ms-box-ordinal-group: 1;
  2198. box-ordinal-group: 1;
  2199. float:none;
  2200. width:60px;
  2201. height:60px;
  2202. border-radius:60px;
  2203. line-height:60px;
  2204. margin:10px;
  2205. cursor:pointer;
  2206. }
  2207. div.grey {
  2208. background:transparent;
  2209. border:none;
  2210. }
  2211. }
  2212. }
  2213. input[type="password"] {
  2214. height:50px;
  2215. font-size:40px;
  2216. width:200px;
  2217. text-align: center;
  2218. background: transparent;
  2219. color:white;
  2220. }
  2221. input[type="password"]::-webkit-input-placeholder {
  2222. color: white;
  2223. }
  2224. input[type="password"]::-moz-placeholder { /* Firefox 19+ */
  2225. color: white;
  2226. }
  2227. input[type="password"]:-ms-input-placeholder {
  2228. color: white;
  2229. }
  2230. }
  2231. }