fhem-tablet-ui.css 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735
  1. html,
  2. body,
  3. main,
  4. .page {
  5. height: 100%;
  6. width: 100%;
  7. }
  8. main {
  9. overflow: auto;
  10. }
  11. body {
  12. background-color: #000000;
  13. background-size: 100%;
  14. font-family: "Helvetica Neue", "Helvetica", "Open Sans", "Arial", sans-serif;
  15. -webkit-font-smoothing: antialiased;
  16. font-size: small;
  17. color: #eeeeee;
  18. width: auto;
  19. /* never remove this, it is important for internal checks */
  20. text-align: center;
  21. /* never remove this */
  22. margin: 0px;
  23. }
  24. @font-face {
  25. font-family: 'robotothin';
  26. src: url('../fonts/Roboto-Thin-webfont.eot');
  27. src: url('../fonts/Roboto-Thin-webfont.eot') format('embedded-opentype'), url('../fonts/Roboto-Thin-webfont.woff') format('woff'), url('../fonts/Roboto-Thin-webfont.ttf') format('truetype'), url('../fonts/Roboto-Thin-webfont.svg#robotothin') format('svg');
  28. font-weight: normal;
  29. font-style: normal;
  30. }
  31. @font-face {
  32. font-family: 'MeteoconsRegular';
  33. src: url('../fonts/meteocons-webfont.eot');
  34. src: url('../fonts/meteocons-webfont.eot') format('embedded-opentype'), url('../fonts/meteocons-webfont.woff') format('woff'), url('../fonts/meteocons-webfont.ttf') format('truetype'), url('../fonts/meteocons-webfont.svg#MeteoconsRegular') format('svg');
  35. font-weight: normal;
  36. font-style: normal;
  37. }
  38. @font-face {
  39. font-family: 'FTUI-icons';
  40. src: url('../fonts/FTUI-icons.woff') format('woff'), url('../fonts/FTUI-icons.ttf') format('truetype'), url('../fonts/FTUI-icons.svg') format('svg');
  41. font-weight: normal;
  42. font-style: normal;
  43. }
  44. .robotothin {
  45. font-family: robotothin, sans-serif;
  46. }
  47. .fa-stack {
  48. position: relative;
  49. display: inline-block;
  50. width: 2em;
  51. height: 2em;
  52. line-height: 2em;
  53. vertical-align: middle
  54. }
  55. .fa-2x {
  56. font-size: 2em
  57. }
  58. .fa-fw {
  59. width: 1.28571429em;
  60. }
  61. [class^="ftui-"],
  62. [class*=" ftui-"] {
  63. font-family: 'FTUI-icons' !important;
  64. speak: none;
  65. font-style: normal;
  66. font-weight: normal;
  67. font-variant: normal;
  68. text-transform: none;
  69. /* Better Font Rendering =========== */
  70. -webkit-font-smoothing: antialiased;
  71. -moz-osx-font-smoothing: grayscale;
  72. }
  73. .ftui-mail-thin:before {
  74. content: "\e901";
  75. }
  76. .ftui-download-thin:before {
  77. content: "\e902";
  78. }
  79. .ftui-search-thin:before {
  80. content: "\e903";
  81. }
  82. .ftui-cloud-thin:before {
  83. content: "\e904";
  84. }
  85. .ftui-thermo-thin:before {
  86. content: "\e905";
  87. }
  88. .ftui-thermo:before {
  89. content: "\e900";
  90. }
  91. .ftui-door:before {
  92. content: "\ea00";
  93. }
  94. .ftui-window:before {
  95. content: "\ea01";
  96. }
  97. .ftui-circle-thin:before {
  98. content: "\e906";
  99. }
  100. i#bg.fa.fa-stack-2x.ftui-circle-thin {
  101. font-size: 1.8em;
  102. margin-top: 0.055em;
  103. margin-left: 0.005em;
  104. }
  105. .ftui-square-o:before {
  106. content: "\e907";
  107. }
  108. i#bg.fa.fa-stack-2x.ftui-square-o {
  109. font-size: 2.2em;
  110. margin-top: -0.035em;
  111. margin-left: 0.01em;
  112. }
  113. a:link {
  114. text-decoration: none;
  115. color: #aa6900;
  116. }
  117. a:visited {
  118. text-decoration: none;
  119. color: #aa6900;
  120. }
  121. a:hover {
  122. text-decoration: none;
  123. color: #cccccc;
  124. }
  125. a:active {
  126. text-decoration: none;
  127. color: #cccccc;
  128. }
  129. [data-type="dimmer"] > .famultibutton {
  130. z-index: 2;
  131. }
  132. *,
  133. *:after,
  134. *:before {
  135. box-sizing: border-box;
  136. }
  137. .btn,
  138. .link.round,
  139. .link.square {
  140. margin: 7px;
  141. }
  142. .btn-round,
  143. .link.round,
  144. .led.round {
  145. border-radius: 17px;
  146. }
  147. .black {
  148. color: #111111 !important;
  149. }
  150. .white {
  151. color: #ffffff !important;
  152. }
  153. .orange {
  154. color: #aa6900 !important;
  155. }
  156. .red {
  157. color: #ad3333 !important;
  158. }
  159. .green {
  160. color: #32a054 !important;
  161. }
  162. .mint {
  163. color: #5bc995 !important;
  164. }
  165. .lightblue {
  166. color: #6699FF !important;
  167. }
  168. .blue {
  169. color: #337ab7 !important;
  170. }
  171. .gray {
  172. color: #8C8C8C !important;
  173. }
  174. .yellow {
  175. color: #ffe066 !important;
  176. }
  177. .lightgray {
  178. color: #cccccc !important;
  179. }
  180. .border-black {
  181. border: 3px solid #111111;
  182. }
  183. .border-white {
  184. border: 3px solid #ffffff;
  185. }
  186. .border-orange {
  187. border: 3px solid #aa6900;
  188. }
  189. .border-red {
  190. border: 3px solid #ad3333;
  191. }
  192. .border-green {
  193. border: 3px solid #32a054;
  194. }
  195. .border-mint {
  196. border: 3px solid #5bc995;
  197. }
  198. .border-lightblue {
  199. border: 3px solid #6699FF;
  200. }
  201. .border-blue {
  202. border: 3px solid #337ab7;
  203. }
  204. .border-gray {
  205. border: 3px solid #8C8C8C;
  206. }
  207. .border-yellow {
  208. border: 3px solid #ffe066;
  209. }
  210. .border-lightgray {
  211. border: 3px solid #cccccc;
  212. }
  213. .container.round {
  214. border-radius: 17px;
  215. }
  216. .container.circular {
  217. border-radius: 2em;
  218. }
  219. .container.margin {
  220. margin: 7px;
  221. }
  222. .container.margin > .fa {
  223. margin-left: 7px;
  224. }
  225. .padding {
  226. padding: 1em;
  227. }
  228. .margin {
  229. margin: 1em;
  230. }
  231. /* position of a inner div */
  232. .topleft {
  233. display: flex;
  234. justify-content: flex-start;
  235. align-items: flex-start;
  236. height: 100%;
  237. }
  238. .topcenter {
  239. display: flex;
  240. justify-content: center;
  241. align-items: flex-start;
  242. height: 100%;
  243. }
  244. .topright {
  245. display: flex;
  246. justify-content: flex-end;
  247. align-items: flex-start;
  248. height: 100%;
  249. }
  250. .centerleft {
  251. display: flex;
  252. justify-content: flex-start;
  253. align-items: center;
  254. height: 100%;
  255. }
  256. .center,
  257. .col.middle {
  258. display: flex;
  259. justify-content: center;
  260. align-items: center;
  261. height: 100%;
  262. margin-left: auto !important;
  263. margin-right: auto !important;
  264. }
  265. .centerright {
  266. display: flex;
  267. justify-content: flex-end;
  268. align-items: center;
  269. height: 100%;
  270. }
  271. .bottomleft {
  272. display: flex;
  273. justify-content: flex-start;
  274. align-items: flex-end;
  275. height: 100%;
  276. }
  277. .bottomcenter {
  278. display: flex;
  279. justify-content: center;
  280. align-items: flex-end;
  281. height: 100%;
  282. }
  283. .bottomright {
  284. display: flex;
  285. justify-content: flex-end;
  286. align-items: flex-end;
  287. height: 100%;
  288. }
  289. /* Display positions */
  290. .display {
  291. position: relative;
  292. width: 100%;
  293. height: 100%;
  294. }
  295. .display-topleft {
  296. position: absolute;
  297. top: 0px;
  298. left: 0px;
  299. }
  300. .display-topcenter {
  301. position: absolute;
  302. left: 50%;
  303. top: 0;
  304. transform: translate(-50%, 0%);
  305. }
  306. .display-topright {
  307. position: absolute;
  308. top: 0px;
  309. right: 0px;
  310. }
  311. .display-centerleft,
  312. .display-left {
  313. position: absolute;
  314. top: 50%;
  315. left: 0%;
  316. transform: translate(0%, -50%);
  317. }
  318. .display-center {
  319. position: absolute;
  320. top: 50%;
  321. left: 50%;
  322. transform: translate(-50%, -50%);
  323. }
  324. .display-centerright,
  325. .display-right {
  326. position: absolute;
  327. top: 50%;
  328. right: 0%;
  329. transform: translate(0%, -50%);
  330. }
  331. .display-bottomleft {
  332. position: absolute;
  333. bottom: 0px;
  334. left: 0px;
  335. }
  336. .display-bottomcenter {
  337. position: absolute;
  338. left: 50%;
  339. bottom: 0;
  340. transform: translate(-50%, 0%);
  341. }
  342. .display-bottomright {
  343. position: absolute;
  344. bottom: 0px;
  345. right: 0px;
  346. }
  347. /* . */
  348. #header-nav {
  349. height: 4.5em;
  350. line-height: 4.5em;
  351. width: 100%;
  352. top: 0;
  353. left: 0;
  354. -webkit-box-shadow: 0px 3px 5px rgba(150, 150, 150, 0.49);
  355. -moz-box-shadow: 0px 3px 5px rgba(150, 150, 150, 0.49);
  356. box-shadow: 0px 3px 5px rgba(150, 150, 150, 0.49);
  357. }
  358. #header-nav ~ .page {
  359. height: calc(100% - 55px);
  360. }
  361. @media screen and (max-width: 480px) {
  362. #header-nav ~ .page {
  363. height: 100%;
  364. }
  365. }
  366. .fixed {
  367. backface-visibility: hidden;
  368. position: fixed;
  369. z-index: 2;
  370. transition: transform 300ms ease;
  371. }
  372. header.fixed#header-nav + main#panel {
  373. margin-top: 55px;
  374. }
  375. section {
  376. border-bottom: 1px solid #888;
  377. min-height: 4.5em;
  378. line-height: 4.3em
  379. }
  380. /* gridster layout */
  381. .gridster .row:after {
  382. content: "";
  383. display: table;
  384. clear: both;
  385. text-align: center;
  386. vertical-align: middle;
  387. }
  388. .gridster .row > div {
  389. vertical-align: middle;
  390. }
  391. [class*='col-'],
  392. .col {
  393. float: left;
  394. text-align: center;
  395. height: 100%;
  396. min-height: 1px;
  397. }
  398. .fullsize,
  399. .gridster > ul {
  400. width: 100% !important;
  401. height: 100% !important;
  402. }
  403. .gridster {
  404. width: 100%;
  405. height: 100%;
  406. }
  407. .gridster > * {
  408. margin: 0;
  409. padding: 0;
  410. }
  411. .gridster .gs_w {
  412. background: #FFF;
  413. cursor: pointer;
  414. -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  415. box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  416. }
  417. .gridster > ul > li,
  418. .card {
  419. background-color: #2A2A2A;
  420. }
  421. .gridster > ul > li.round {
  422. border-radius: 17px;
  423. }
  424. .gridster li header,
  425. .dialog > header,
  426. .card > header {
  427. background: #262626;
  428. color: #8c8c8c;
  429. display: block;
  430. font-size: 0.85em;
  431. font-weight: bold;
  432. line-height: 2em;
  433. text-align: center;
  434. width: 100%;
  435. }
  436. .gridster li header.transparent,
  437. .dialog > header.transparent,
  438. .card > header.transparent {
  439. background: transparent;
  440. }
  441. .gridster li header,
  442. .dialog > header {
  443. cursor: move;
  444. }
  445. .has_center {
  446. display: flex !important;
  447. justify-content: center;
  448. align-items: center;
  449. height: 100%;
  450. width: 100%;
  451. }
  452. /* End gridster layout */
  453. .col-1-1,
  454. .col-100 {
  455. width: 100% !important;
  456. }
  457. .col-5-6 {
  458. width: 83.333% !important;
  459. }
  460. .col-2-3,
  461. .col-4-6,
  462. .col-66 {
  463. width: 66.66666% !important;
  464. }
  465. .col-1-3,
  466. .col-2-6,
  467. .col-33 {
  468. width: 33.333% !important;
  469. }
  470. .col-3-4,
  471. .col-75 {
  472. width: 75% !important;
  473. }
  474. .col-70 {
  475. width: 70% !important;
  476. }
  477. .col-1-2,
  478. .col-2-4,
  479. .col-3-6,
  480. .col-50 {
  481. width: 50% !important;
  482. }
  483. .col-55 {
  484. width: 55% !important;
  485. }
  486. .col-45 {
  487. width: 45% !important;
  488. }
  489. .col-35 {
  490. width: 35% !important;
  491. }
  492. .col-30 {
  493. width: 30% !important;
  494. }
  495. .col-1-4,
  496. .col-25 {
  497. width: 25% !important;
  498. }
  499. .col-1-6,
  500. .col-15 {
  501. width: 16.6666667% !important;
  502. }
  503. .col-15 {
  504. width: 15% !important;
  505. }
  506. .col-1-8,
  507. .col-12 {
  508. width: 12.5% !important;
  509. }
  510. .col-2 {
  511. width: 2% !important;
  512. }
  513. .col-1-20,
  514. .col-5 {
  515. width: 5% !important;
  516. }
  517. .col-1-10,
  518. .col-10 {
  519. width: 10% !important;
  520. }
  521. .col-1-5,
  522. .col-20 {
  523. width: 20% !important;
  524. }
  525. .col-2-5,
  526. .col-40 {
  527. width: 40% !important;
  528. }
  529. .col-45 {
  530. width: 45% !important;
  531. }
  532. .col-3-5,
  533. .col-60 {
  534. width: 60% !important;
  535. }
  536. .col-4-5,
  537. .col-80 {
  538. width: 80% !important;
  539. }
  540. /*auto row */
  541. .row-auto {
  542. height: initial !important;
  543. }
  544. .row:first-of-type:nth-last-of-type(1),
  545. .row:first-of-type:nth-last-of-type(1) ~ .row {
  546. height: 100%;
  547. }
  548. .row:first-of-type:nth-last-of-type(2),
  549. .row:first-of-type:nth-last-of-type(2) ~ .row {
  550. height: 50%;
  551. }
  552. .row:first-of-type:nth-last-of-type(3),
  553. .row:first-of-type:nth-last-of-type(3) ~ .row {
  554. height: 33.3333%;
  555. }
  556. .row:first-of-type:nth-last-of-type(4),
  557. .row:first-of-type:nth-last-of-type(4) ~ .row {
  558. height: 25%;
  559. }
  560. .row:first-of-type:nth-last-of-type(5),
  561. .row:first-of-type:nth-last-of-type(5) ~ .row {
  562. height: 20%;
  563. }
  564. .row:first-of-type:nth-last-of-type(6),
  565. .row:first-of-type:nth-last-of-type(6) ~ .row {
  566. height: 16.66667%;
  567. }
  568. .row:first-of-type:nth-last-of-type(7),
  569. .row:first-of-type:nth-last-of-type(7) ~ .row {
  570. height: 14.2857%;
  571. }
  572. .row:first-of-type:nth-last-of-type(8),
  573. .row:first-of-type:nth-last-of-type(8) ~ .row {
  574. height: 12.5%;
  575. }
  576. .row:first-of-type:nth-last-of-type(9),
  577. .row:first-of-type:nth-last-of-type(9) ~ .row {
  578. height: 11.1111%;
  579. }
  580. .row:first-of-type:nth-last-of-type(10),
  581. .row:first-of-type:nth-last-of-type(10) ~ .row {
  582. height: 10%;
  583. }
  584. .row:first-of-type:nth-last-of-type(11),
  585. .row:first-of-type:nth-last-of-type(11) ~ .row {
  586. height: 9.0909%;
  587. }
  588. .row:first-of-type:nth-last-of-type(12),
  589. .row:first-of-type:nth-last-of-type(12) ~ .row {
  590. height: 8.3333%;
  591. }
  592. /*auto col */
  593. [class*=row] > .col:first-child:nth-last-child(1) {
  594. width: 100%;
  595. }
  596. [class*=row] > .col:first-child:nth-last-child(2),
  597. [class*=row] > .col:first-child:nth-last-child(2) ~ .col {
  598. width: 50%;
  599. }
  600. [class*=row] > .col:first-child:nth-last-child(3),
  601. [class*=row] > .col:first-child:nth-last-child(3) ~ .col {
  602. width: 33.3333%;
  603. }
  604. [class*=row] > .col:first-child:nth-last-child(4),
  605. [class*=row] > .col:first-child:nth-last-child(4) ~ .col {
  606. width: 25%;
  607. }
  608. [class*=row] > .col:first-child:nth-last-child(5),
  609. [class*=row] > .col:first-child:nth-last-child(5) ~ .col {
  610. width: 20%;
  611. }
  612. [class*=row] > .col:first-child:nth-last-child(6),
  613. [class*=row] > .col:first-child:nth-last-child(6) ~ .col {
  614. width: 16.66667%;
  615. }
  616. .bold {
  617. font-weight: bold !important;
  618. }
  619. /* Flexbox layout */
  620. .hbox,
  621. .vbox,
  622. .box,
  623. .has_vbox {
  624. display: flex !important;
  625. justify-content: center;
  626. align-items: center;
  627. height: 100%;
  628. width: 100%;
  629. }
  630. .card {
  631. display: flex !important;
  632. width: 97%;
  633. justify-content: initial;
  634. align-items: initial;
  635. }
  636. .w100,
  637. .full-width,
  638. width-100 {
  639. width: 100% !important;
  640. }
  641. .h100,
  642. .full-height,
  643. .height-100 {
  644. height: 100%;
  645. }
  646. .box,
  647. .hbox,
  648. .box.horizontal {
  649. flex-direction: row;
  650. /*flex: 0 1 auto;*/
  651. flex: 1;
  652. }
  653. main > .box,
  654. main > .hbox,
  655. main > .box.horizontal {
  656. align-items: stretch;
  657. height: 100%;
  658. }
  659. .vbox {
  660. -webkit-box-pack: justify;
  661. -webkit-justify-content: space-around;
  662. justify-content: space-around;
  663. }
  664. .vbox,
  665. .card,
  666. .box.vertical,
  667. .has_vbox,
  668. .has_center {
  669. flex-direction: column;
  670. flex: 1;
  671. min-height: fit-content;
  672. }
  673. .card > .box.horizontal:only-of-type,
  674. .card > .hbox:only-of-type,
  675. .card > .vbox:only-of-type,
  676. .card > .box.vertical:only-of-type {
  677. flex-grow: 1;
  678. margin-top: 0;
  679. }
  680. .shrink-0,
  681. .shrink-0x {
  682. flex-shrink: 0 !important;
  683. }
  684. .grow-0,
  685. .grow-0x {
  686. flex-grow: 0 !important;
  687. }
  688. .grow-1,
  689. .grow-1x {
  690. flex-grow: 1;
  691. }
  692. .grow-2,
  693. .grow-2x {
  694. flex-grow: 2 !important;
  695. }
  696. .grow-3,
  697. .grow-3x {
  698. flex-grow: 3 !important;
  699. }
  700. .grow-4,
  701. .grow-4x {
  702. flex-grow: 4 !important;
  703. }
  704. .grow-5,
  705. .grow-5x {
  706. flex-grow: 5 !important;
  707. }
  708. .grow-6,
  709. .grow-6x {
  710. flex-grow: 6 !important;
  711. }
  712. .grow-7,
  713. .grow-7x {
  714. flex-grow: 7;
  715. }
  716. .grow-8,
  717. .grow-8x {
  718. flex-grow: 8;
  719. }
  720. .grow-9,
  721. .grow-9x {
  722. flex-grow: 9;
  723. }
  724. .box.horizontal.items-top,
  725. .hbox.items-top,
  726. .card.items-top {
  727. align-items: flex-start;
  728. }
  729. .box.horizontal.items-center,
  730. .hbox.items-center,
  731. .box.vertical.items-center,
  732. .vbox.items-center,
  733. .card.items-center,
  734. .card > .hbox,
  735. .card > .box.horizontal {
  736. align-items: center;
  737. }
  738. .box.horizontal > .top-align,
  739. .hbox > .top-align {
  740. align-self: flex-start;
  741. }
  742. .box.horizontal > .bottom-align,
  743. .hbox > .bottom-align {
  744. align-self: flex-end;
  745. }
  746. .box.horizontal > .center-align,
  747. .hbox > .center-align,
  748. .box.vertical > .center-align,
  749. .vbox > .center-align {
  750. align-self: center;
  751. }
  752. .box.horizontal.items-bottom,
  753. .hbox.items-bottom,
  754. .card.items-bottom {
  755. align-items: flex-end;
  756. }
  757. .box.horizontal.items-space-between,
  758. .hbox.items-space-between,
  759. .vbox.items-space-between,
  760. .card.items-space-between {
  761. justify-content: space-between;
  762. }
  763. .box.horizontal.items-center,
  764. .hbox.items-center,
  765. .vbox.items-center,
  766. .card.items-center {
  767. justify-content: center;
  768. }
  769. .box.horizontal.items-space-around,
  770. .hbox.items-space-around,
  771. .vbox.items-space-around,
  772. .card.items-space-around,
  773. .hbox.space,
  774. .vbox.space {
  775. -webkit-box-pack: justify;
  776. -webkit-justify-content: space-around;
  777. justify-content: space-around;
  778. }
  779. .box.horizontal.items-right,
  780. .hbox.items-right {
  781. justify-content: flex-end;
  782. }
  783. .box.vertical.items-right,
  784. .vbox.items-right {
  785. align-items: flex-end;
  786. }
  787. .box.vertical.items-top,
  788. .vbox.items-top {
  789. justify-content: flex-start;
  790. }
  791. .box.vertical.items-top,
  792. .vbox.items-bottom {
  793. justify-content: flex-end;
  794. }
  795. .box.horizontal.items-left,
  796. .hbox.items-left {
  797. justify-content: flex-start;
  798. }
  799. .box.vertical.items-left,
  800. .vbox.items-left {
  801. align-items: flex-start;
  802. }
  803. .box.vertical.items-center,
  804. .vbox.items-center {
  805. align-items: center;
  806. }
  807. .card {
  808. margin: 4px;
  809. justify-content: flex-start;
  810. }
  811. .card > header {
  812. width: 100%;
  813. flex-grow: 0;
  814. }
  815. @media screen and (min-width: 480px) {
  816. .icon-width {
  817. min-width: 104px;
  818. max-width: 104px;
  819. }
  820. }
  821. @media screen and (max-width: 480px) {
  822. .hbox,
  823. .vbox,
  824. .box,
  825. .card {
  826. flex-wrap: wrap;
  827. height: auto;
  828. }
  829. .v100,
  830. .full-height,
  831. .height-100 {
  832. height: auto;
  833. min-height: 100vh;
  834. }
  835. .card > .box.horizontal,
  836. .card > .hbox {
  837. margin-top: 1em;
  838. margin-bottom: 1em;
  839. }
  840. .hbox.nowrap,
  841. .box.nowrap,
  842. .card.nowrap {
  843. flex-wrap: nowrap;
  844. }
  845. }
  846. @media screen and (min-width: 320px) and (max-width: 480px) {
  847. .shrink-phone,
  848. .phone-width {
  849. flex-basis: 320px !important;
  850. }
  851. .icon-width {
  852. min-width: 52px;
  853. max-width: 52px;
  854. }
  855. [data-type="image"].icon-width > img {
  856. width: 3em !important;
  857. height: 3em !important;
  858. }
  859. }
  860. .lift {
  861. box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12), 0px 3px 1px -2px rgba(0, 0, 0, 0.2);
  862. }
  863. .align-center {
  864. align-self: center;
  865. }
  866. /* End Flexbox layout */
  867. /* responsive menu */
  868. .menu ~ main > .page {
  869. padding-left: 180px;
  870. width: auto;
  871. }
  872. *:not(.circlemenu-wrapper) > .menu {
  873. background: #1D1F20;
  874. height: 100vh;
  875. width: 180px;
  876. position: fixed;
  877. top: 0;
  878. left: 0;
  879. z-index: 5;
  880. outline: none;
  881. }
  882. .menu ul {
  883. list-style: none;
  884. padding: 2em 0;
  885. margin: 0;
  886. }
  887. .menu header {
  888. text-align: center;
  889. margin-top: 0.7em;
  890. }
  891. .menu ul li {
  892. padding: 0.5em 1em 0.5em 1em;
  893. font-size: 0.95em;
  894. text-align: initial;
  895. transition: all 0.15s linear;
  896. cursor: pointer;
  897. }
  898. .menu ul li span {
  899. padding: 0.2em 0.5em;
  900. font-size: 0.9em;
  901. }
  902. .menu ul li div[data-type="link"] {
  903. text-align: left;
  904. }
  905. .menu ul li:hover {
  906. background-color: rgba(0, 0, 0, 0.1);
  907. }
  908. .menu ul li:focus {
  909. outline: none;
  910. }
  911. @media screen and (max-width: 900px) and (min-width: 480px) {
  912. .menu ~ main > .page {
  913. padding-left: 90px;
  914. }
  915. .menu {
  916. width: 90px;
  917. }
  918. .menu ul li {
  919. height: 60px;
  920. position: relative;
  921. padding: 0.5em 1em 0.5em 2.1em;
  922. }
  923. .menu ul li span {
  924. opacity: 0;
  925. position: absolute;
  926. background: rgba(0, 0, 0, 0.5);
  927. padding: 0.2em 0.5em;
  928. border-radius: 4px;
  929. top: 50%;
  930. left: 80px;
  931. transform: translate3d(-1em, -50%, 0);
  932. -webkit-transform: translate3d(-1em, -50%, 0);
  933. transition: all 0.15s ease-in-out;
  934. }
  935. .menu ul li span:before {
  936. content: '';
  937. width: 0;
  938. height: 0;
  939. position: absolute;
  940. top: 50%;
  941. left: -5px;
  942. border-top: 5px solid transparent;
  943. border-bottom: 5px solid transparent;
  944. border-right: 5px solid rgba(0, 0, 0, 0.5);
  945. transform: translateY(-50%);
  946. }
  947. .menu ul li:hover span {
  948. opacity: 1;
  949. transform: translate3d(0px, -50%, 0);
  950. -webkit-transform: translate3d(0px, -50%, 0);
  951. }
  952. }
  953. @media screen and (max-width: 480px) {
  954. .menu ~ main > .page {
  955. padding-left: 0px;
  956. }
  957. .menu {
  958. width: 230px !important;
  959. box-shadow: 0 0 0 100em rgba(0, 0, 0, 0);
  960. transform: translate3d(-230px, 0, 0);
  961. -webkit-transform: translate3d(-230px, 0, 0);
  962. transition: all 0.3s ease-in-out;
  963. }
  964. .menu .menu-trigger {
  965. width: 40px;
  966. height: 40px;
  967. position: absolute;
  968. left: 100%;
  969. background: #1D1F20;
  970. }
  971. .menu .menu-trigger:before,
  972. .menu .menu-trigger:after {
  973. content: '';
  974. width: 50%;
  975. height: 2px;
  976. background: #fff;
  977. border-radius: 10px;
  978. position: absolute;
  979. top: 45%;
  980. left: 50%;
  981. transform: translate3d(-50%, -50%, 0);
  982. -webkit-transform: translate3d(-50%, -50%, 0);
  983. }
  984. .menu .menu-trigger:after {
  985. top: 55%;
  986. transform: translate3d(-50%, -50%, 0);
  987. -webkit-transform: translate3d(-50%, -50%, 0);
  988. }
  989. .menu.show {
  990. transform: translate3d(0, 0, 0);
  991. -webkit-transform: translate3d(0, 0, 0);
  992. box-shadow: 0 0 0 100em rgba(0, 0, 0, 0.6);
  993. }
  994. }
  995. /* End responsive menu */
  996. .bg-gray,
  997. .btn-gray {
  998. background-color: #393939 !important;
  999. }
  1000. .bg-gray-trans,
  1001. .btn-gray {
  1002. background-color: rgba(40, 40, 40, 0.5) !important;
  1003. }
  1004. .bg-lightgray,
  1005. .btn-lightgray {
  1006. background-color: #777777 !important;
  1007. }
  1008. .bg-orange,
  1009. .btn-orange {
  1010. background-color: #aa6900 !important;
  1011. }
  1012. .bg-red,
  1013. .btn-red {
  1014. background-color: #ad3333 !important;
  1015. }
  1016. .bg-green,
  1017. .btn-green {
  1018. background-color: #32a054 !important;
  1019. }
  1020. .bg-mint,
  1021. .btn-mint {
  1022. background-color: #5bc995 !important;
  1023. }
  1024. .bg-ligthblue,
  1025. .btn-ligthblue {
  1026. background-color: #6699FF !important;
  1027. }
  1028. .bg-blue,
  1029. .btn-blue {
  1030. background-color: #436D8D !important;
  1031. }
  1032. .bg-white,
  1033. .btn-white {
  1034. background-color: #ffffff !important;
  1035. }
  1036. .bg-black,
  1037. .btn-black {
  1038. background-color: #111111 !important;
  1039. }
  1040. .bg-yellow,
  1041. .btn-yellow {
  1042. background-color: #ffe066 !important;
  1043. }
  1044. .bg-transparent,
  1045. .btn-transparent {
  1046. background-color: transparent !important;
  1047. }
  1048. /* Toolbar */
  1049. footer {
  1050. position: absolute;
  1051. left: 0;
  1052. bottom: 0;
  1053. background: #f7f7f8;
  1054. height: 67px;
  1055. width: 100%;
  1056. box-sizing: border-box;
  1057. margin: 0;
  1058. z-index: 500;
  1059. -webkit-backface-visibility: hidden;
  1060. backface-visibility: hidden;
  1061. }
  1062. footer::before {
  1063. content: '';
  1064. position: absolute;
  1065. left: 0;
  1066. top: 0;
  1067. bottom: auto;
  1068. right: auto;
  1069. height: 1px;
  1070. width: 100%;
  1071. background-color: #c4c4c4;
  1072. display: block;
  1073. z-index: 15;
  1074. -webkit-transform-origin: 50% 0;
  1075. transform-origin: 50% 0;
  1076. }
  1077. .tab-bar {
  1078. position: absolute;
  1079. left: 0;
  1080. top: 0;
  1081. width: 100%;
  1082. height: 100%;
  1083. padding: 0 8px;
  1084. box-sizing: border-box;
  1085. display: -webkit-box;
  1086. display: -ms-flexbox;
  1087. display: -webkit-flex;
  1088. display: flex;
  1089. -webkit-box-pack: justify;
  1090. -ms-flex-pack: justify;
  1091. -webkit-justify-content: space-between;
  1092. justify-content: space-between;
  1093. -webkit-box-align: center;
  1094. -ms-flex-align: center;
  1095. -webkit-align-items: center;
  1096. align-items: center;
  1097. }
  1098. @media screen and (min-width: 768px) {
  1099. .tab-bar {
  1100. -webkit-box-pack: center;
  1101. -ms-flex-pack: center;
  1102. -webkit-justify-content: center;
  1103. justify-content: center;
  1104. }
  1105. }
  1106. @media screen and (min-width: 768px) {
  1107. .tab-bar .tab-link {
  1108. width: auto;
  1109. min-width: 105px;
  1110. }
  1111. }
  1112. .tab-link {
  1113. height: 100%;
  1114. width: 100%;
  1115. box-sizing: border-box;
  1116. display: -webkit-box;
  1117. display: -ms-flexbox;
  1118. display: -webkit-flex;
  1119. display: flex;
  1120. -webkit-box-pack: center;
  1121. -ms-flex-pack: center;
  1122. -webkit-justify-content: center;
  1123. justify-content: center;
  1124. -webkit-box-align: center;
  1125. -ms-flex-align: center;
  1126. -webkit-align-items: center;
  1127. align-items: center;
  1128. overflow: visible;
  1129. -webkit-box-flex: 1;
  1130. -ms-flex: 1;
  1131. -webkit-box-orient: vertical;
  1132. -moz-box-orient: vertical;
  1133. -ms-flex-direction: column;
  1134. -webkit-flex-direction: column;
  1135. flex-direction: column;
  1136. }
  1137. .tab-labels,
  1138. span.tab-label {
  1139. line-height: 1.7em;
  1140. display: block;
  1141. margin: 0;
  1142. letter-spacing: .01em;
  1143. font-size: 85%;
  1144. position: relative;
  1145. text-overflow: ellipsis;
  1146. white-space: nowrap;
  1147. }
  1148. @media screen and (min-width: 768px) {
  1149. .tab-labels,
  1150. span.tab-label {
  1151. font-size: 100%;
  1152. }
  1153. }
  1154. .tab-link > .fa-stack {
  1155. width: 1em !important;
  1156. height: 1em !important;
  1157. line-height: 1em !important;
  1158. }
  1159. div[data-type="link"] > div.fa {
  1160. font-size: 2em;
  1161. line-height: 1em;
  1162. }
  1163. /*end toolbar */
  1164. /* ancient crap !! dont use that !! */
  1165. .left {
  1166. float: left;
  1167. width: auto;
  1168. left: 0;
  1169. }
  1170. .right {
  1171. float: right;
  1172. right: 0;
  1173. }
  1174. *:not([class*=row]) > .cell {
  1175. margin: 10px 10px !important;
  1176. width: auto;
  1177. text-align: center;
  1178. vertical-align: middle;
  1179. }
  1180. .centered {
  1181. margin-left: auto !important;
  1182. margin-right: auto !important;
  1183. display: block;
  1184. }
  1185. /* CSS tables */
  1186. [class*=sheet] {
  1187. display: table;
  1188. width: 100%;
  1189. height: 100%;
  1190. }
  1191. /* auto height of sheets */
  1192. .sheet:first-child:nth-last-child(2),
  1193. .sheet:first-child:nth-last-child(2) ~ .sheet {
  1194. height: 50%;
  1195. }
  1196. .sheet:first-child:nth-last-child(3),
  1197. .sheet:first-child:nth-last-child(3) ~ .sheet {
  1198. height: 33.3333%;
  1199. }
  1200. .sheet:first-child:nth-last-child(4),
  1201. .sheet:first-child:nth-last-child(4) ~ .sheet {
  1202. height: 25%;
  1203. }
  1204. .sheet:first-child:nth-last-child(5),
  1205. .sheet:first-child:nth-last-child(5) ~ .sheet {
  1206. height: 20%;
  1207. }
  1208. .sheet:first-child:nth-last-child(6),
  1209. .sheet:first-child:nth-last-child(6) ~ .sheet {
  1210. height: 16.6666%;
  1211. }
  1212. .sheet:first-child:nth-last-child(7),
  1213. .sheet:first-child:nth-last-child(7) ~ .sheet {
  1214. height: 14.2857%;
  1215. }
  1216. .sheet:first-child:nth-last-child(8),
  1217. .sheet:first-child:nth-last-child(8) ~ .sheet {
  1218. height: 12.5%;
  1219. }
  1220. .sheet:first-child:nth-last-child(9),
  1221. .sheet:first-child:nth-last-child(9) ~ .sheet {
  1222. height: 11.1111%;
  1223. }
  1224. .sheet:first-child:nth-last-child(10),
  1225. .sheet:first-child:nth-last-child(10) ~ .sheet {
  1226. height: 10%;
  1227. }
  1228. .sheet:first-child:nth-last-child(11),
  1229. .sheet:first-child:nth-last-child(11) ~ .sheet {
  1230. height: 9.0909%;
  1231. }
  1232. .sheet:first-child:nth-last-child(12),
  1233. .sheet:first-child:nth-last-child(12) ~ .sheet {
  1234. height: 8.3333%;
  1235. }
  1236. /* manual height of sheets */
  1237. .sheet-8,
  1238. .sheet-1-12 {
  1239. height: 8.3%;
  1240. }
  1241. .sheet-12,
  1242. .sheet-1-8 {
  1243. height: 12.5%;
  1244. }
  1245. .sheet-20,
  1246. .sheet-1-5 {
  1247. height: 20%;
  1248. }
  1249. .sheet-25,
  1250. .sheet-1-4 {
  1251. height: 25%;
  1252. }
  1253. .sheet-33,
  1254. .sheet-1-3 {
  1255. height: 33%;
  1256. }
  1257. .sheet-40,
  1258. .sheet-2-5 {
  1259. height: 40%;
  1260. }
  1261. .sheet-50,
  1262. .sheet-1-2 {
  1263. height: 50%;
  1264. }
  1265. .sheet-60,
  1266. .sheet-3-5 {
  1267. height: 60%;
  1268. }
  1269. .sheet-66,
  1270. .sheet-2-3 {
  1271. height: 66%;
  1272. }
  1273. .sheet-75,
  1274. .sheet-1-12 {
  1275. height: 75%;
  1276. }
  1277. .sheet-80,
  1278. .sheet-4-5 {
  1279. height: 80%;
  1280. }
  1281. .sheet-90 {
  1282. height: 90%;
  1283. }
  1284. .sheet-100,
  1285. .sheet-1-1 {
  1286. height: 100%;
  1287. }
  1288. [class*=sheet] > [class*=row] {
  1289. display: table-row;
  1290. width: 100%;
  1291. }
  1292. .row-8,
  1293. .row-1-12 {
  1294. height: 8.3% !important;
  1295. }
  1296. .row-5,
  1297. .row-1-20 {
  1298. height: 5% !important;
  1299. }
  1300. .row-10,
  1301. .row-1-10 {
  1302. height: 10% !important;
  1303. }
  1304. .row-15 {
  1305. height: 15% !important;
  1306. }
  1307. .row-12,
  1308. .row-1-8 {
  1309. height: 12.5% !important;
  1310. }
  1311. .row-20,
  1312. .row-1-5 {
  1313. height: 20% !important;
  1314. }
  1315. .row-25,
  1316. .row-1-4,
  1317. .row-2-8 {
  1318. height: 25% !important;
  1319. }
  1320. .row-33,
  1321. .row-1-3 {
  1322. height: 33% !important;
  1323. }
  1324. .row-30 {
  1325. height: 30% !important;
  1326. }
  1327. .row-35 {
  1328. height: 35%;
  1329. }
  1330. .row-40,
  1331. .row-2-5 {
  1332. height: 40%;
  1333. }
  1334. .row-45 {
  1335. height: 45%;
  1336. }
  1337. .row-50,
  1338. .row-1-2,
  1339. .row-2-4 {
  1340. height: 50% !important;
  1341. }
  1342. .row-55 {
  1343. height: 55%;
  1344. }
  1345. .row-60,
  1346. .row-3-5 {
  1347. height: 60% !important;
  1348. }
  1349. .row-65 {
  1350. height: 65% !important;
  1351. }
  1352. .row-66,
  1353. .row-2-3 {
  1354. height: 66% !important;
  1355. }
  1356. .row-70 {
  1357. height: 70% !important;
  1358. }
  1359. .row-75,
  1360. .row-1-12 {
  1361. height: 75% !important;
  1362. }
  1363. .row-80,
  1364. .row-4-5 {
  1365. height: 80% !important;
  1366. }
  1367. .row-85 {
  1368. height: 85% !important;
  1369. }
  1370. .row-90,
  1371. .row-4-5 {
  1372. height: 80% !important;
  1373. }
  1374. .row-95 {
  1375. height: 95% !important;
  1376. }
  1377. .row-100,
  1378. .row-1-1,
  1379. .row-3-3 {
  1380. height: 100% !important;
  1381. }
  1382. [class*=row] > [class*=cell] {
  1383. display: table-cell;
  1384. vertical-align: middle;
  1385. }
  1386. [class*=row] > .cell:first-of-type:nth-last-of-type(1) {
  1387. width: 100%;
  1388. }
  1389. [class*=row] > .cell:first-child:nth-last-child(2),
  1390. [class*=row] > .cell:first-child:nth-last-child(2) ~ .cell {
  1391. width: 50%;
  1392. }
  1393. [class*=row] > .cell:first-child:nth-last-child(3),
  1394. [class*=row] > .cell:first-child:nth-last-child(3) ~ .cell {
  1395. width: 33.3333%;
  1396. }
  1397. [class*=row] > .cell:first-child:nth-last-child(4),
  1398. [class*=row] > .cell:first-child:nth-last-child(4) ~ .cell {
  1399. width: 25%;
  1400. }
  1401. [class*=row] > .row:first-child:nth-last-child(5),
  1402. [class*=row] > .row:first-child:nth-last-child(5) ~ .cell {
  1403. width: 20%;
  1404. }
  1405. [class*=row] > .row:first-child:nth-last-child(6),
  1406. [class*=row] > .row:first-child:nth-last-child(6) ~ .cell {
  1407. width: 16.6666%;
  1408. }
  1409. [class*=row] > .row:first-child:nth-last-child(7),
  1410. [class*=row] > .row:first-child:nth-last-child(7) ~ .cell {
  1411. width: 14.2857%;
  1412. }
  1413. [class*=row] > .row:first-child:nth-last-child(8),
  1414. [class*=row] > .row:first-child:nth-last-child(8) ~ .cell {
  1415. width: 12.5%
  1416. }
  1417. [class*=row] > .row:first-child:nth-last-child(9),
  1418. [class*=row] > .row:first-child:nth-last-child(9) ~ .cell {
  1419. width: 11.1111%;
  1420. }
  1421. [class*=row] > .row:first-child:nth-last-child(10),
  1422. [class*=row] > .row:first-child:nth-last-child(10) ~ .cell {
  1423. width: 10%;
  1424. }
  1425. [class*=row] > .row:first-child:nth-last-child(11),
  1426. [class*=row] > .row:first-child:nth-last-child(11) ~ .cell {
  1427. width: 9.0909%;
  1428. }
  1429. [class*=row] > .row:first-child:nth-last-child(12),
  1430. [class*=row] > .row:first-child:nth-last-child(12) ~ .cell {
  1431. width: 8.3333%;
  1432. }
  1433. .cell-8,
  1434. .cell-1-12 {
  1435. width: 8.3333%;
  1436. }
  1437. .cell-10,
  1438. .cell-1-10 {
  1439. width: 10%;
  1440. }
  1441. .cell-12,
  1442. .cell-1-8 {
  1443. width: 12.5%;
  1444. }
  1445. .cell-20,
  1446. .cell-1-5 {
  1447. width: 20%;
  1448. }
  1449. .cell-25,
  1450. .cell-1-4 {
  1451. width: 25%;
  1452. }
  1453. .cell-30 {
  1454. width: 33%;
  1455. }
  1456. .cell-33,
  1457. .cell-1-3 {
  1458. width: 33.333%;
  1459. }
  1460. .cell-40,
  1461. .cell-2-5 {
  1462. width: 40%;
  1463. }
  1464. .cell-50,
  1465. .cell-1-2 {
  1466. width: 50%;
  1467. }
  1468. .cell-60,
  1469. .cell-3-5 {
  1470. width: 60%;
  1471. }
  1472. .cell-66,
  1473. .cell-2-3 {
  1474. width: 66%;
  1475. }
  1476. .cell-70 {
  1477. width: 70%;
  1478. }
  1479. .cell-75,
  1480. .cell-1-12 {
  1481. width: 75%;
  1482. }
  1483. .cell-80,
  1484. .cell-4-5 {
  1485. width: 80%;
  1486. }
  1487. .cell-90 {
  1488. width: 90%;
  1489. }
  1490. .cell-100,
  1491. .cell-1-1 {
  1492. width: 100%;
  1493. }
  1494. .left-align {
  1495. text-align: left;
  1496. }
  1497. .right-align {
  1498. text-align: right;
  1499. }
  1500. .center-align,
  1501. .middle {
  1502. text-align: center;
  1503. }
  1504. .top-align {
  1505. vertical-align: top !important;
  1506. }
  1507. .bottom-align {
  1508. vertical-align: bottom !important;
  1509. }
  1510. /* end CSS tables */
  1511. .inline {
  1512. display: inline-block;
  1513. margin: 0px 5px 0px 0px !important;
  1514. }
  1515. .inline.narrow.link {
  1516. margin: 0px -4px 0px -4px !important;
  1517. }
  1518. .newline {
  1519. display: block !important;
  1520. }
  1521. .circlemenu-wrapper {
  1522. min-height: 4em;
  1523. min-width: 4em;
  1524. margin-bottom: 0px;
  1525. display: inline-block;
  1526. vertical-align: middle;
  1527. position: relative;
  1528. }
  1529. .dialog {
  1530. display: none;
  1531. position: fixed;
  1532. z-index: 2000;
  1533. width: 98%;
  1534. border-bottom: 1px solid #aaa;
  1535. border-radius: 4px;
  1536. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  1537. border: 1px solid rgba(0, 0, 0, 0.1);
  1538. background-color: #2A2A2A;
  1539. background-clip: padding-box;
  1540. overflow: auto;
  1541. }
  1542. .dialog-close {
  1543. line-height: 1;
  1544. font-size: 1.5em;
  1545. position: absolute;
  1546. top: 1px;
  1547. right: 2%;
  1548. text-decoration: none;
  1549. color: #bbb;
  1550. cursor: pointer;
  1551. }
  1552. .dialog-close:hover {
  1553. color: #aa6900;
  1554. -webkit-transition: color 1s ease;
  1555. -moz-transition: color 1s ease;
  1556. transition: color 1s ease;
  1557. }
  1558. .dialog-starter {}
  1559. .events {
  1560. width: 90%;
  1561. height: 90%;
  1562. text-align: left;
  1563. margin-left: 20px;
  1564. overflow: auto;
  1565. }
  1566. [data-type]:not([data-type="label"]):not(.readonly):not([data-type="symbol"]):not([data-type="spinner"]):not([data-type="switch"]):not([data-type="button"]):not([data-type="pagebutton"]):not([data-type="pagetab"]):not([data-type="dimmer"]):not([data-type="multistatebutton"]):not([data-type="push"]):not([data-type="playstream"]),
  1567. [onclick] {
  1568. cursor: pointer;
  1569. }
  1570. [data-type="switch"] > .famultibutton,
  1571. [data-type="button"] > .famultibutton,
  1572. [data-type="pagebutton"] > .famultibutton,
  1573. [data-type="pagetab"] > .famultibutton,
  1574. [data-type="dimmer"] > .famultibutton,
  1575. [data-type="multistatebutton"] > .famultibutton,
  1576. [data-type="push"] > .famultibutton,
  1577. [data-type="playstream"] > .famultibutton {
  1578. cursor: pointer;
  1579. }
  1580. .label-unit {
  1581. font-size: 50%;
  1582. }
  1583. .unit-top .label-unit {
  1584. font-size: 50%;
  1585. vertical-align: super;
  1586. }
  1587. .aftercomma-top .label-aftercomma {
  1588. font-size: 50%;
  1589. vertical-align: super;
  1590. }
  1591. .truncate,
  1592. .nowrap {
  1593. white-space: nowrap;
  1594. overflow: hidden;
  1595. text-overflow: ellipsis;
  1596. }
  1597. .wordwrap {
  1598. white-space: pre-wrap;
  1599. /* CSS3 */
  1600. white-space: -moz-pre-wrap;
  1601. /* Firefox */
  1602. white-space: -pre-wrap;
  1603. /* Opera <7 */
  1604. white-space: -o-pre-wrap;
  1605. /* Opera 7 */
  1606. word-wrap: break-word;
  1607. /* IE */
  1608. }
  1609. .narrow {
  1610. margin: -5px 5px -6px 5px !important;
  1611. width: auto;
  1612. text-align: center;
  1613. }
  1614. [data-type="symbol"].width-narrow > .famultibutton,
  1615. [data-type="multistatebutton"].width-narrow > .famultibutton,
  1616. [data-type="switch"].width-narrow > .famultibutton,
  1617. [data-type="button"].width-narrow > .famultibutton,
  1618. [data-type="push"].width-narrow > .famultibutton,
  1619. [data-type="pagebutton"].width-narrow > .famultibutton {
  1620. width: 1.35em;
  1621. }
  1622. [data-type="symbol"].height-narrow > .famultibutton,
  1623. [data-type="multistatebutton"].height-narrow > .famultibutton,
  1624. [data-type="switch"].height-narrow > .famultibutton,
  1625. [data-type="button"].height-narrow > .famultibutton,
  1626. [data-type="push"].height-narrow > .famultibutton,
  1627. [data-type="pagebutton"].height-narrow > .famultibutton {
  1628. height: 1.4em;
  1629. line-height: 1.4em;
  1630. }
  1631. .compressed > .famultibutton,
  1632. .compress > .famultibutton {
  1633. width: 1em !important;
  1634. height: 1em !important;
  1635. line-height: 1em !important;
  1636. }
  1637. .height-50 > .famultibutton {
  1638. height: 1.75em !important;
  1639. }
  1640. .height-150 > .famultibutton {
  1641. height: 3em !important;
  1642. }
  1643. .compressed-50 > .famultibutton,
  1644. .compress-50 > .famultibutton {
  1645. width: 1.5em !important;
  1646. height: 1.5em !important;
  1647. line-height: 1.5em !important;
  1648. }
  1649. .famultibutton .famultibutton {
  1650. font-size: 1em !important;
  1651. }
  1652. /* label in fa-multibutton */
  1653. .famultibutton div {
  1654. margin-top: -0.03em;
  1655. }
  1656. .wider {
  1657. margin: 1em 1em 1em 1em !important;
  1658. width: auto;
  1659. text-align: center;
  1660. }
  1661. .top-narrow-10 {
  1662. margin-top: -10px !important;
  1663. }
  1664. .top-narrow-50 {
  1665. margin-top: -0.5em !important;
  1666. }
  1667. .top-narrow,
  1668. .top-narrow-100 {
  1669. margin-top: -1em !important;
  1670. }
  1671. .top-narrow-150 {
  1672. margin-top: -1.5em !important;
  1673. }
  1674. .top-narrow-2x,
  1675. .top-narrow-2,
  1676. .top-narrow-200 {
  1677. margin-top: -2em !important;
  1678. }
  1679. .top-narrow-250 {
  1680. margin-top: -2.5em !important;
  1681. }
  1682. .top-narrow-3x,
  1683. .top-narrow-3,
  1684. .top-narrow-300 {
  1685. margin-top: -3em !important;
  1686. }
  1687. .top-narrow-350 {
  1688. margin-top: -3.5em !important;
  1689. }
  1690. .top-narrow-4x,
  1691. .top-narrow-4,
  1692. .top-narrow-400 {
  1693. margin-top: -4em !important;
  1694. }
  1695. .left-narrow-10 {
  1696. margin-left: -10px !important;
  1697. }
  1698. .left-narrow {
  1699. margin-left: -1em !important;
  1700. }
  1701. .left-narrow-2x,
  1702. .left-narrow-2 {
  1703. margin-left: -2em !important;
  1704. }
  1705. .left-narrow-3x,
  1706. .left-narrow-3 {
  1707. margin-left: -3em !important;
  1708. }
  1709. .left-narrow-4x,
  1710. .left-narrow-4 {
  1711. margin-left: -4em !important;
  1712. }
  1713. .right-narrow-10 {
  1714. margin-right: -10px !important;
  1715. }
  1716. .right-narrow {
  1717. margin-right: -1em !important;
  1718. }
  1719. .right-narrow-2x,
  1720. .right-narrow-2 {
  1721. margin-right: -2em !important;
  1722. }
  1723. .right-narrow-3x,
  1724. .right-narrow-3 {
  1725. margin-right: -3em !important;
  1726. }
  1727. .right-narrow-4x,
  1728. .right-narrow-4 {
  1729. margin-right: -4em !important;
  1730. }
  1731. .mt,
  1732. .mt-1,
  1733. .top-space,
  1734. .top-space-50 {
  1735. margin-top: 1em !important;
  1736. }
  1737. .mt-2,
  1738. .top-space-2x,
  1739. .top-space-2,
  1740. .top-space-100 {
  1741. margin-top: 2em !important;
  1742. }
  1743. .mt-3,
  1744. .top-space-3x,
  1745. .top-space-3,
  1746. .top-space-150 {
  1747. margin-top: 3em !important;
  1748. }
  1749. .mt-4,
  1750. .top-space-4x,
  1751. .top-space-4,
  1752. .top-space-200 {
  1753. margin-top: 4em !important;
  1754. }
  1755. .ml,
  1756. .ml-1,
  1757. .left-space {
  1758. margin-left: 1em !important;
  1759. }
  1760. .ml-2,
  1761. .left-space-2x,
  1762. .left-space-2 {
  1763. margin-left: 2em !important;
  1764. }
  1765. .ml-3,
  1766. .left-space-3x,
  1767. .left-space-3 {
  1768. margin-left: 3em !important;
  1769. }
  1770. .ml-4,
  1771. .left-space-4x,
  1772. .left-space-4 {
  1773. margin-left: 4em !important;
  1774. }
  1775. .mr,
  1776. .mr-1,
  1777. .right-space {
  1778. margin-right: 1em !important;
  1779. }
  1780. .mr-2,
  1781. .right-space-2x,
  1782. .right-space-2 {
  1783. margin-right: 2em !important;
  1784. }
  1785. .mr-3,
  1786. .right-space-3x,
  1787. .right-space-3 {
  1788. margin-right: 3em !important;
  1789. }
  1790. .mr-4,
  1791. .right-space-4x,
  1792. .right-space-4 {
  1793. margin-right: 4em !important;
  1794. }
  1795. .mb,
  1796. .mb-1,
  1797. .bottom-space {
  1798. margin-bottom: 1em !important;
  1799. }
  1800. .mb-2,
  1801. .bottom-space-2x,
  1802. .bottom-space-2 {
  1803. margin-bottom: 2em !important;
  1804. }
  1805. .mb-3,
  1806. .bottom-space-3x,
  1807. .bottom-space-3 {
  1808. margin-bottom: 3em !important;
  1809. }
  1810. .mb-4,
  1811. .bottom-space-4x,
  1812. .bottom-space-4 {
  1813. margin-bottom: 4em !important;
  1814. }
  1815. .bottom-narrow {
  1816. margin-bottom: -1em !important;
  1817. }
  1818. .bottom-narrow-2x,
  1819. .bottom-narrow-2 {
  1820. margin-bottom: -2em !important;
  1821. }
  1822. .bottom-narrow-3x,
  1823. .bottom-narrow-3 {
  1824. margin-bottom: -3em !important;
  1825. }
  1826. .bottom-narrow-4x,
  1827. .bottom-narrow-4 {
  1828. margin-bottom: -4em !important;
  1829. }
  1830. .row > .cell.top-space,
  1831. .row > [class*='cell-'].top-space,
  1832. .row > [class*='col-'].top-space,
  1833. .row > .col.top-space,
  1834. [class*='row-'] > .cell.top-space,
  1835. [class*='row-'] > [class*='cell-'].top-space,
  1836. [class*='row-'] > .col.top-space,
  1837. [class*='row-'] > [class*='col-'].top-space {
  1838. padding-top: 1em !important;
  1839. margin-top: 0em !important;
  1840. }
  1841. .row > .cell[class*='top-space-2'],
  1842. .row > [class*='cell-'][class*='top-space-2'],
  1843. .row > [class*='col-'][class*='top-space-2'],
  1844. .row > .col[class*='top-space-2'],
  1845. [class*='row-'] > .cell[class*='top-space-2'],
  1846. [class*='row-'] > [class*='cell-'][class*='top-space-2'],
  1847. [class*='row-'] > .col[class*='top-space-2'],
  1848. [class*='row-'] > [class*='col-'][class*='top-space-2'] {
  1849. padding-top: 2em !important;
  1850. margin-top: 0em !important;
  1851. }
  1852. .row > .cell[class*='top-space-3'],
  1853. .row > [class*='cell-'][class*='top-space-3'],
  1854. .row > [class*='col-'][class*='top-space-3'],
  1855. .row > .col[class*='top-space-3'],
  1856. [class*='row-'] > .cell[class*='top-space-3'],
  1857. [class*='row-'] > [class*='cell-'][class*='top-space-3'],
  1858. [class*='row-'] > .col[class*='top-space-3'],
  1859. [class*='row-'] > [class*='col-'][class*='top-space-3'] {
  1860. padding-top: 3em !important;
  1861. margin-top: 0em !important;
  1862. }
  1863. .row > .cell[class*='top-space-4'],
  1864. .row > [class*='cell-'][class*='top-space-4'],
  1865. .row > [class*='col-'][class*='top-space-4'],
  1866. .row > .col[class*='top-space-4'],
  1867. [class*='row-'] > .cell[class*='top-space-4'],
  1868. [class*='row-'] > [class*='cell-'][class*='top-space-4'],
  1869. [class*='row-'] > .col[class*='top-space-4'],
  1870. [class*='row-'] > [class*='col-'][class*='top-space-4'] {
  1871. padding-top: 4em !important;
  1872. margin-top: 0em !important;
  1873. }
  1874. .row > .cell.top-space-3x,
  1875. .row > .cell.top-space-3,
  1876. .row > [class*='col-'].top-space-3x,
  1877. .row > [class='col'].top-space-3x,
  1878. .row > [class*='col-'].top-space-3,
  1879. .row > [class='col'].top-space-3 {
  1880. padding-top: 3em !important;
  1881. }
  1882. section > [class*='col-'].left-space,
  1883. .row > .cell.left-space,
  1884. .row > [class*='cell-'].left-space,
  1885. .row > [class*='col-'].left-space,
  1886. .row > .col.left-space,
  1887. [class*='row-'] > .cell.left-space,
  1888. [class*='row-'] > [class*='cell-'].left-space,
  1889. [class*='row-'] > .col.left-space,
  1890. [class*='row-'] > [class*='col-'].left-space {
  1891. padding-left: 1em !important;
  1892. margin-left: 0em !important;
  1893. }
  1894. section > [class*='col-'][class*='left-space-2'],
  1895. .row > .cell[class*='left-space-2'],
  1896. .row > [class*='cell-'][class*='left-space-2'],
  1897. .row > [class*='col-'][class*='left-space-2'],
  1898. .row > .col[class*='left-space-2'],
  1899. [class*='row-'] > .cell[class*='left-space-2'],
  1900. [class*='row-'] > [class*='cell-'][class*='left-space-2'],
  1901. [class*='row-'] > .col[class*='left-space-2'],
  1902. [class*='row-'] > [class*='col-'][class*='left-space-2'] {
  1903. padding-left: 2em !important;
  1904. margin-left: 0em !important;
  1905. }
  1906. section > [class*='col-'][class*='left-space-3'],
  1907. .row > .cell[class*='left-space-3'],
  1908. .row > [class*='cell-'][class*='left-space-3'],
  1909. .row > [class*='col-'][class*='left-space-3'],
  1910. .row > .col[class*='left-space-3'],
  1911. [class*='row-'] > .cell[class*='left-space-3'],
  1912. [class*='row-'] > [class*='cell-'][class*='left-space-3'],
  1913. [class*='row-'] > .col[class*='left-space-3'],
  1914. [class*='row-'] > [class*='col-'][class*='left-space-3'] {
  1915. padding-left: 3em !important;
  1916. margin-left: 0em !important;
  1917. }
  1918. section > [class*='col-'][class*='left-space-4'],
  1919. .row > .cell[class*='left-space-4'],
  1920. .row > [class*='cell-'][class*='left-space-4'],
  1921. .row > [class*='col-'][class*='left-space-4'],
  1922. .row > .col[class*='left-space-4'],
  1923. [class*='row-'] > .cell[class*='left-space-4'],
  1924. [class*='row-'] > [class*='cell-'][class*='left-space-4'],
  1925. [class*='row-'] > .col[class*='left-space-4'],
  1926. [class*='row-'] > [class*='col-'][class*='left-space-4'] {
  1927. padding-left: 4em !important;
  1928. margin-left: 0em !important;
  1929. }
  1930. section > [class*='col-'].right-space,
  1931. .row > .cell.right-space,
  1932. .row > [class*='cell-'].right-space,
  1933. .row > [class*='col-'].right-space,
  1934. .row > .col.right-space,
  1935. [class*='row-'] > .cell.right-space,
  1936. [class*='row-'] > [class*='cell-'].right-space,
  1937. [class*='row-'] > .col.right-space,
  1938. [class*='row-'] > [class*='col-'].right-space {
  1939. padding-right: 1em !important;
  1940. margin-right: 0em !important;
  1941. }
  1942. section > [class*='col-'][class*='right-space-2'],
  1943. .row > .cell[class*='right-space-2'],
  1944. .row > [class*='cell-'][class*='right-space-2'],
  1945. .row > [class*='col-'][class*='right-space-2'],
  1946. .row > .col[class*='right-space-2'],
  1947. [class*='row-'] > .cell[class*='right-space-2'],
  1948. [class*='row-'] > [class*='cell-'][class*='right-space-2'],
  1949. [class*='row-'] > .col[class*='right-space-2'],
  1950. [class*='row-'] > [class*='col-'][class*='right-space-2'] {
  1951. padding-right: 2em !important;
  1952. margin-right: 0em !important;
  1953. }
  1954. section > [class*='col-'][class*='right-space-3'],
  1955. .row > .cell[class*='right-space-3'],
  1956. .row > [class*='cell-'][class*='right-space-3'],
  1957. .row > [class*='col-'][class*='right-space-3'],
  1958. .row > .col[class*='right-space-3'],
  1959. [class*='row-'] > .cell[class*='right-space-3'],
  1960. [class*='row-'] > [class*='cell-'][class*='right-space-3'],
  1961. [class*='row-'] > .col[class*='right-space-3'],
  1962. [class*='row-'] > [class*='col-'][class*='right-space-3'] {
  1963. padding-right: 3em !important;
  1964. margin-right: 0em !important;
  1965. }
  1966. section > [class*='col-'][class*='right-space-4'],
  1967. .row > .cell[class*='right-space-4'],
  1968. .row > [class*='cell-'][class*='right-space-4'],
  1969. .row > [class*='col-'][class*='right-space-4'],
  1970. .row > .col[class*='right-space-4'],
  1971. [class*='row-'] > .cell[class*='right-space-4'],
  1972. [class*='row-'] > [class*='cell-'][class*='right-space-4'],
  1973. [class*='row-'] > .col[class*='right-space-4'],
  1974. [class*='row-'] > [class*='col-'][class*='right-space-4'] {
  1975. padding-right: 4em !important;
  1976. margin-right: 0em !important;
  1977. }
  1978. .row > .cell.bottom-space,
  1979. .row > [class*='cell-'].bottom-space,
  1980. .row > [class*='col-'].bottom-space,
  1981. .row > .col.bottom-space,
  1982. [class*='row-'] > .cell.bottom-space,
  1983. [class*='row-'] > [class*='cell-'].bottom-space,
  1984. [class*='row-'] > .col.bottom-space,
  1985. [class*='row-'] > [class*='col-'].bottom-space {
  1986. padding-bottom: 1em !important;
  1987. margin-bottom: 0em !important;
  1988. }
  1989. .row > .cell[class*='bottom-space-2'],
  1990. .row > [class*='cell-'][class*='bottom-space-2'],
  1991. .row > [class*='col-'][class*='bottom-space-2'],
  1992. .row > .col[class*='bottom-space-2'],
  1993. [class*='row-'] > .cell[class*='bottom-space-2'],
  1994. [class*='row-'] > [class*='cell-'][class*='bottom-space-2'],
  1995. [class*='row-'] > .col[class*='bottom-space-2'],
  1996. [class*='row-'] > [class*='col-'][class*='bottom-space-2'] {
  1997. padding-bottom: 2em !important;
  1998. margin-bottom: 0em !important;
  1999. }
  2000. .row > .cell[class*='bottom-space-3'],
  2001. .row > [class*='cell-'][class*='bottom-space-3'],
  2002. .row > [class*='col-'][class*='bottom-space-3'],
  2003. .row > .col[class*='bottom-space-3'],
  2004. [class*='row-'] > .cell[class*='bottom-space-3'],
  2005. [class*='row-'] > [class*='cell-'][class*='bottom-space-3'],
  2006. [class*='row-'] > .col[class*='bottom-space-3'],
  2007. [class*='row-'] > [class*='col-'][class*='bottom-space-3'] {
  2008. padding-bottom: 3em !important;
  2009. margin-bottom: 0em !important;
  2010. }
  2011. .row > .cell[class*='bottom-space-4'],
  2012. .row > [class*='cell-'][class*='bottom-space-4'],
  2013. .row > [class*='col-'][class*='bottom-space-4'],
  2014. .row > .col[class*='bottom-space-4'],
  2015. [class*='row-'] > .cell[class*='bottom-space-4'],
  2016. [class*='row-'] > [class*='cell-'][class*='bottom-space-4'],
  2017. [class*='row-'] > .col[class*='bottom-space-4'],
  2018. [class*='row-'] > [class*='col-'][class*='bottom-space-4'] {
  2019. padding-bottom: 4em !important;
  2020. margin-bottom: 0em !important;
  2021. }
  2022. .darker {
  2023. color: #8C8C8C;
  2024. }
  2025. .thin {
  2026. font-weight: 100;
  2027. }
  2028. .grande.thin {
  2029. font-family: robotothin, sans-serif;
  2030. }
  2031. .great.thin,
  2032. .tall.thin {
  2033. font-family: robotothin, sans-serif;
  2034. font-weight: normal !important;
  2035. }
  2036. .gigantic {
  2037. font-size: 144px !important;
  2038. font-family: robotothin, sans-serif;
  2039. line-height: 120px;
  2040. }
  2041. .grande {
  2042. font-size: 600% !important;
  2043. }
  2044. .huge {
  2045. font-size: 500% !important;
  2046. }
  2047. .great {
  2048. font-size: 450% !important;
  2049. }
  2050. .tall {
  2051. font-size: 350% !important;
  2052. }
  2053. .xxxxl {
  2054. font-size: 300% !important;
  2055. }
  2056. .bigger,
  2057. .xxxl {
  2058. font-size: 200% !important;
  2059. }
  2060. .xxl {
  2061. font-size: 175% !important;
  2062. }
  2063. .big,
  2064. .xl {
  2065. font-size: 150% !important;
  2066. }
  2067. .smallicon > .famultibutton > #fg {
  2068. font-size: 70% !important;
  2069. }
  2070. .large.thin {
  2071. letter-spacing: 1.1px;
  2072. }
  2073. .large,
  2074. .l {
  2075. font-size: 125% !important;
  2076. }
  2077. .normal {
  2078. font-size: 100% !important;
  2079. }
  2080. .small {
  2081. font-size: 80% !important;
  2082. }
  2083. .tiny {
  2084. font-size: 60% !important;
  2085. }
  2086. .mini {
  2087. font-size: 50% !important;
  2088. }
  2089. .line-grande,
  2090. .line-600,
  2091. .row-600 {
  2092. line-height: 600% !important;
  2093. }
  2094. .line-550,
  2095. .row-550 {
  2096. line-height: 550% !important;
  2097. }
  2098. .line-500,
  2099. .row-500 {
  2100. line-height: 500% !important;
  2101. }
  2102. .line-great,
  2103. .line-450,
  2104. .row-450 {
  2105. line-height: 450% !important;
  2106. }
  2107. .line-400,
  2108. .row-400 {
  2109. line-height: 400% !important;
  2110. }
  2111. .line-tall,
  2112. .line-350,
  2113. .row-350 {
  2114. line-height: 350% !important;
  2115. }
  2116. .line-300,
  2117. .row-300 {
  2118. line-height: 300% !important;
  2119. }
  2120. .line-250,
  2121. .row-250 {
  2122. line-height: 250% !important;
  2123. }
  2124. .line-bigger,
  2125. .line-200,
  2126. .row-200 {
  2127. line-height: 200% !important;
  2128. }
  2129. .line-big,
  2130. .line-150,
  2131. .row-150 {
  2132. line-height: 150% !important;
  2133. }
  2134. .line-large,
  2135. .line-125,
  2136. .row-125 {
  2137. line-height: 125% !important;
  2138. }
  2139. .line-normal,
  2140. .line-100,
  2141. .row-100 {
  2142. line-height: 100% !important;
  2143. }
  2144. /* Size for Weather */
  2145. img.gigantic,
  2146. .gigantic > img,
  2147. .gigantic > .weather-icon > img {
  2148. width: 800% !important;
  2149. }
  2150. img.grande,
  2151. .grande > img,
  2152. .grande > .weather-icon > img {
  2153. width: 600% !important;
  2154. }
  2155. img.great,
  2156. .great > img,
  2157. .great > .weather-icon > img {
  2158. width: 450% !important;
  2159. }
  2160. img.big,
  2161. .big > img,
  2162. .big > .weather-icon > img {
  2163. width: 320% !important;
  2164. }
  2165. img.tall,
  2166. .tall > img,
  2167. .tall > .weather-icon > img {
  2168. width: 350% !important;
  2169. }
  2170. img.bigger,
  2171. .bigger > img,
  2172. .bigger > .weather-icon > img {
  2173. width: 200% !important;
  2174. }
  2175. img.big,
  2176. .big > img,
  2177. .big > .weather-icon > img {
  2178. width: 150% !important;
  2179. }
  2180. img.large,
  2181. .large > img,
  2182. .large > .weather-icon > img {
  2183. width: 125% !important;
  2184. }
  2185. img.normal,
  2186. .normal > img,
  2187. .normal > .weather-icon > img {
  2188. width: 100% !important;
  2189. }
  2190. img.small,
  2191. .small > img,
  2192. .small > .weather-icon > img {
  2193. width: 80% !important;
  2194. }
  2195. img.tiny,
  2196. .tiny > img,
  2197. .tiny > .weather-icon > img {
  2198. width: 60% !important;
  2199. }
  2200. img.mini,
  2201. .mini > img,
  2202. .mini > .weather-icon > img {
  2203. width: 50% !important;
  2204. }
  2205. .top {
  2206. vertical-align: super;
  2207. top: 0;
  2208. }
  2209. .bottom {
  2210. vertical-align: baseline;
  2211. bottom: 0;
  2212. }
  2213. .maxw40 {
  2214. max-width: 40px;
  2215. }
  2216. .verticalLine {
  2217. border-right-style: outset;
  2218. }
  2219. .horizontalLine {
  2220. border-top: 1px solid;
  2221. opacity: 0.7;
  2222. }
  2223. [data-type="pagetab"] .label {
  2224. font-size: 50% !important;
  2225. white-space: nowrap;
  2226. padding-top: 2em;
  2227. color: #8C8C8C;
  2228. }
  2229. .labelright[data-type="pagetab"] .label {
  2230. padding-top: 0px;
  2231. padding-left: 52px;
  2232. }
  2233. .badge {
  2234. position: absolute;
  2235. min-width: 1.5em;
  2236. padding: 0.25em 0.3em;
  2237. font-weight: 300;
  2238. font-style: normal;
  2239. line-height: 1;
  2240. color: #fff;
  2241. text-align: center;
  2242. white-space: nowrap;
  2243. vertical-align: middle;
  2244. background-color: #aa2200;
  2245. border-radius: 1em;
  2246. }
  2247. .famultibutton #warn,
  2248. .weather #warn {
  2249. position: absolute;
  2250. top: -0.3em;
  2251. right: -0.3em;
  2252. min-width: 1.5em;
  2253. padding: 0.25em 0.3em;
  2254. font-size: 0.5em;
  2255. font-weight: 300;
  2256. font-style: normal;
  2257. line-height: 1;
  2258. color: #fff;
  2259. text-align: center;
  2260. white-space: nowrap;
  2261. vertical-align: middle;
  2262. background-color: #aa2200;
  2263. border-radius: 1em;
  2264. }
  2265. #warn.digits2 {
  2266. right: -0.6em;
  2267. }
  2268. #warn.digits3 {
  2269. right: -0.9em;
  2270. }
  2271. #warn.digits4 {
  2272. right: -1.2em;
  2273. }
  2274. .doublebox-v {
  2275. height: 7.2em;
  2276. }
  2277. .doublebox-h {
  2278. width: 6em;
  2279. white-space: nowrap;
  2280. }
  2281. .triplebox-v {
  2282. height: 9em;
  2283. }
  2284. .triplebox-h {
  2285. width: 9em;
  2286. white-space: nowrap;
  2287. }
  2288. .doublebox-v [data-type] {
  2289. height: 3.3em;
  2290. }
  2291. .doublebox-h [data-type] {
  2292. width: 3em;
  2293. display: inline-block;
  2294. }
  2295. .triplebox-v [data-type] {
  2296. height: 3.3em;
  2297. }
  2298. .triplebox-h [data-type] {
  2299. width: 3em;
  2300. display: inline-block;
  2301. }
  2302. /* FA 5.* circle is bigger */
  2303. .famultibutton .fa-stack-2x:not(.fa-v5) {
  2304. font-size: 1.92em;
  2305. margin-top: 0.02em;
  2306. }
  2307. .famultibutton [class^="fa fa-stack-1x fa-"]:not(.fa-v5) {
  2308. font-size: 0.95em;
  2309. }
  2310. /* FA 5.* normal and inverted */
  2311. .famultibutton .fa-stack-1x.invert {
  2312. font-weight: 100;
  2313. }
  2314. /* Correction for fa-square-o which is smaller then fa-square */
  2315. i#bg.fa.fa-stack-2x.fa-square-o {
  2316. font-size: 1.9em;
  2317. }
  2318. * {
  2319. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  2320. }
  2321. canvas#progress {
  2322. z-index: 100;
  2323. position: relative;
  2324. }
  2325. [data-type] input {
  2326. visibility: hidden;
  2327. }
  2328. .contentSpacing {
  2329. padding: 1em;
  2330. margin: 0 auto;
  2331. overflow: scroll;
  2332. }
  2333. .page:not(.active) {
  2334. display: none;
  2335. }
  2336. .jq-toast-wrap {
  2337. z-index: 100;
  2338. }
  2339. ul,
  2340. ol {
  2341. list-style: none;
  2342. }
  2343. ul,
  2344. li {
  2345. margin: 0;
  2346. padding: 0;
  2347. }
  2348. .hw-accelerate {
  2349. transform: translateZ(0);
  2350. will-change: transform;
  2351. }
  2352. .weather > .weather-icon.meteocons:before {
  2353. font-family: 'MeteoconsRegular';
  2354. content: attr(data-icon);
  2355. font-size: 250%;
  2356. }
  2357. .weather > .weather-icon.weathericons:before {
  2358. font-family: 'weathericons';
  2359. font-size: 250%;
  2360. }
  2361. .weather {
  2362. position: relative;
  2363. }
  2364. .menu li:first-child {}
  2365. /* Circlemenu Widget */
  2366. div[data-type="circlemenu"] > .circlemenu-wrapper > .circlemenu > li {
  2367. background-color: #2A2A2A;
  2368. }
  2369. div[data-type="circlemenu"] > .circlemenu-wrapper > .circlemenu li div[data-type="push"] {
  2370. color: #555;
  2371. }
  2372. div[data-type="circlemenu"] > .circlemenu-wrapper > .circlemenu,
  2373. .absolute {
  2374. position: absolute;
  2375. }
  2376. .circleMenu-closed {
  2377. z-index: 1000 !important;
  2378. width: 0px !important;
  2379. }
  2380. .circleMenu-open {
  2381. z-index: 1001 !important;
  2382. }
  2383. div[data-type="link"] {
  2384. text-align: center;
  2385. margin-left: auto;
  2386. margin-right: auto
  2387. }
  2388. div[data-type="label"] {
  2389. vertical-align: middle;
  2390. }
  2391. div[data-type="label"].icon,
  2392. .hbox.icon {
  2393. height: 4em;
  2394. width: 4em;
  2395. }
  2396. div[data-type="label"].icon {
  2397. line-height: 4em;
  2398. }
  2399. .icon.round,
  2400. div[data-type="image"].round > img {
  2401. border-radius: 50% !important;
  2402. }
  2403. .bg-square {
  2404. border-radius: 10px !important;
  2405. width: -moz-min-content;
  2406. width: -webkit-min-content;
  2407. width: min-content;
  2408. height: -moz-min-content;
  2409. height: -webkit-min-content;
  2410. height: min-content;
  2411. }
  2412. .icon.square,
  2413. .squareborder {
  2414. border-radius: 10px !important;
  2415. border: 2px solid #aaa;
  2416. width: -moz-min-content;
  2417. width: -webkit-min-content;
  2418. width: min-content;
  2419. height: -moz-min-content;
  2420. height: -webkit-min-content;
  2421. height: min-content;
  2422. }
  2423. .circleborder,
  2424. .icon.round {
  2425. border-radius: 50% !important;
  2426. }
  2427. .circleborder {
  2428. border: 2px solid #bbb;
  2429. }
  2430. div[data-type="circlemenu"] div.circleborder {
  2431. line-height: 3em;
  2432. border: 4px solid transparent !important;
  2433. box-shadow: 0px 0px 0px 2px #bbb inset;
  2434. height: 100%;
  2435. width: 100%;
  2436. }
  2437. .ontop {
  2438. position: absolute;
  2439. z-index: 1003;
  2440. top: 10px;
  2441. left: 10px;
  2442. }
  2443. .led {
  2444. height: 2em;
  2445. width: 2em;
  2446. }
  2447. .led:after {
  2448. content: " ";
  2449. }
  2450. .led.square {
  2451. height: 1em;
  2452. width: 2em;
  2453. border-radius: 3px;
  2454. }
  2455. #shade {
  2456. position: absolute;
  2457. z-index: 1001;
  2458. background-color: #000000;
  2459. opacity: 0.5;
  2460. height: 100%;
  2461. width: 100%;
  2462. top: 0px;
  2463. left: 0px;
  2464. }
  2465. @keyframes blink {
  2466. 0% {
  2467. opacity: 1.0;
  2468. }
  2469. 50% {
  2470. opacity: 0.0;
  2471. }
  2472. 100% {
  2473. opacity: 1.0;
  2474. }
  2475. }
  2476. @-webkit-keyframes blink {
  2477. 0% {
  2478. opacity: 1.0;
  2479. }
  2480. 50% {
  2481. opacity: 0.0;
  2482. }
  2483. 100% {
  2484. opacity: 1.0;
  2485. }
  2486. }
  2487. .blink {
  2488. animation: blink 1s step-start 0s infinite;
  2489. -webkit-animation: blink 1s step-start 0s infinite;
  2490. }
  2491. .fa-blink {
  2492. animation: blink 1s step-start 0s infinite;
  2493. -webkit-animation: blink 1s step-start 0s infinite;
  2494. }
  2495. option {
  2496. background-color: #2a2a2a;
  2497. }
  2498. select,
  2499. input.textinput {
  2500. border-radius: 10px;
  2501. border: 2px solid #8C8C8C;
  2502. background: transparent;
  2503. width: 100%;
  2504. padding: 6px !important;
  2505. padding-right: 2em !important;
  2506. -webkit-appearance: none;
  2507. -moz-appearance: none;
  2508. appearance: none;
  2509. font-size: 1em;
  2510. color: #eeeeee;
  2511. }
  2512. select::-ms-expand {
  2513. display: none;
  2514. }
  2515. .large > select {
  2516. font-size: 120%;
  2517. }
  2518. .big > select {
  2519. font-size: 150%;
  2520. }
  2521. [data-type="input"].w3x {
  2522. min-width: 160px;
  2523. max-width: 160px;
  2524. width: 160px;
  2525. }
  2526. .w2x .famultibutton {
  2527. width: 4em;
  2528. }
  2529. .w3x select,
  2530. [data-type="label"].w3x,
  2531. [data-type="input"].w3x {
  2532. min-width: 160px;
  2533. max-width: 160px;
  2534. width: 160px;
  2535. }
  2536. .w2x select,
  2537. [data-type="label"].w2x,
  2538. [data-type="input"].w2x {
  2539. min-width: 110px;
  2540. max-width: 110px;
  2541. width: 110px;
  2542. }
  2543. .w1x select,
  2544. [data-type="label"].w1x,
  2545. [data-type="input"].w1x {
  2546. min-width: 70px;
  2547. max-width: 70px;
  2548. width: 70px;
  2549. }
  2550. .w-60 {
  2551. padding-left: 20%;
  2552. padding-right: 20%
  2553. }
  2554. .w-75 {
  2555. padding-left: 17%;
  2556. padding-right: 17%
  2557. }
  2558. .w-70 {
  2559. padding-left: 15%;
  2560. padding-right: 15%
  2561. }
  2562. .w-80 {
  2563. padding-left: 10%;
  2564. padding-right: 10%
  2565. }
  2566. .w-85 {
  2567. padding-left: 7%;
  2568. padding-right: 7%
  2569. }
  2570. .w-90 {
  2571. padding-left: 5%;
  2572. padding-right: 5%
  2573. }
  2574. .w-95 {
  2575. padding-left: 2%;
  2576. padding-right: 2%
  2577. }
  2578. [data-type="select"],
  2579. [data-type="input"] > input {}
  2580. [class*='col-'] > .select {
  2581. width: 90%;
  2582. }
  2583. [data-type="select"].select {
  2584. height: auto;
  2585. }
  2586. [class*='col-'][data-type="select"].select,
  2587. [data-type="select"].select.col {
  2588. height: 100%;
  2589. }
  2590. .select {
  2591. display: inline-block;
  2592. vertical-align: middle;
  2593. position: relative;
  2594. }
  2595. .select_wrapper {
  2596. position: relative;
  2597. }
  2598. .select_wrapper:after {
  2599. position: absolute;
  2600. right: 6px;
  2601. content: "\f107";
  2602. font-family: "Font Awesome 5 Free";
  2603. font-style: normal;
  2604. font-weight: 900;
  2605. text-decoration: inherit;
  2606. font-size: 150%;
  2607. top: 50%;
  2608. transform: translate(-50%, -50%);
  2609. pointer-events: none;
  2610. }
  2611. [data-type="readingsgroup"] svg {
  2612. height: 2em;
  2613. width: 2em;
  2614. }
  2615. .unreachable {
  2616. opacity: .5 !important;
  2617. pointer-events: none;
  2618. position: relative
  2619. }
  2620. .unreachable #fg:before {
  2621. content: '?';
  2622. font-size: 100%;
  2623. color: beige;
  2624. }
  2625. .unreachable[data-type="knob"] > .overlay:before,
  2626. .unreachable[data-type="volume"] > .overlay:before,
  2627. .unreachable[data-type="thermostat"] > .overlay:before,
  2628. .unreachable[data-type="spinner"] > .overlay:before {
  2629. content: "\f128";
  2630. font-family: "Font Awesome 5 Free";
  2631. font-size: 4em;
  2632. color: beige;
  2633. }
  2634. .unreachable[data-type="knob"] > .overlay,
  2635. .unreachable[data-type="volume"] > .overlay,
  2636. .unreachable[data-type="thermostat"] > .overlay,
  2637. .unreachable[data-type="spinner"] > .overlay {
  2638. position: absolute;
  2639. top: 1%;
  2640. left: 35%;
  2641. }
  2642. [data-type="knob"],
  2643. [data-type="volume"],
  2644. [data-type="thermostat"] {
  2645. position: relative;
  2646. }
  2647. .blurry {
  2648. color: transparent !important;
  2649. text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  2650. }
  2651. .half-transparent {
  2652. opacity: .5 !important;
  2653. }
  2654. .transparent {
  2655. opacity: 0;
  2656. }
  2657. img.faded {
  2658. -webkit-filter: grayscale(100%);
  2659. filter: grayscale(100%);
  2660. opacity: .2 !important;
  2661. }
  2662. .autohide.invalid,
  2663. .hide,
  2664. .widget-hide {
  2665. display: none !important;
  2666. }
  2667. .shake {
  2668. animation: shake 100ms ease-in-out infinite;
  2669. }
  2670. .fail-shake {
  2671. -webkit-animation: fail-shake .5s linear;
  2672. animation: fail-shake .5s linear;
  2673. }
  2674. .rotor .rotor-wrapper {
  2675. position: relative;
  2676. height: 100%;
  2677. width: 100%;
  2678. }
  2679. .rotor li {
  2680. position: absolute;
  2681. left: 0;
  2682. right: 0;
  2683. margin-left: auto;
  2684. margin-right: auto;
  2685. display: inline-block;
  2686. }
  2687. .rotor li.is-visible {
  2688. opacity: 1;
  2689. }
  2690. .rotor li.is-hidden {
  2691. opacity: 0;
  2692. }
  2693. .rotor.fade li.is-visible {
  2694. animation: fade-in 2.2s;
  2695. }
  2696. .rotor.fade li.is-hidden {
  2697. animation: fade-out 2.2s;
  2698. }
  2699. @keyframes fade-in {
  2700. 0% {
  2701. opacity: 0;
  2702. }
  2703. 100% {
  2704. opacity: 1;
  2705. }
  2706. }
  2707. @keyframes fade-out {
  2708. 0% {
  2709. opacity: 1;
  2710. }
  2711. 100% {
  2712. opacity: 0;
  2713. }
  2714. }
  2715. .rotor.rotate li {
  2716. transform-origin: 50% 100%;
  2717. transform: rotateX(180deg);
  2718. }
  2719. .rotor.rotate li.is-visible {
  2720. transform: rotateX(0deg);
  2721. animation: rotate-in 1.2s;
  2722. }
  2723. .rotor.rotate li.is-hidden {
  2724. transform: rotateX(180deg);
  2725. animation: rotate-out 1.2s;
  2726. }
  2727. @keyframes rotate-in {
  2728. 0% {
  2729. transform: rotateX(180deg);
  2730. opacity: 0;
  2731. }
  2732. 35% {
  2733. transform: rotateX(120deg);
  2734. opacity: 0;
  2735. }
  2736. 65% {
  2737. opacity: 0;
  2738. }
  2739. 100% {
  2740. transform: rotateX(360deg);
  2741. opacity: 1;
  2742. }
  2743. }
  2744. @keyframes rotate-out {
  2745. 0% {
  2746. transform: rotateX(0deg);
  2747. opacity: 1;
  2748. }
  2749. 35% {
  2750. transform: rotateX(-40deg);
  2751. opacity: 1;
  2752. }
  2753. 65% {
  2754. opacity: 0;
  2755. }
  2756. 100% {
  2757. transform: rotateX(180deg);
  2758. opacity: 0;
  2759. }
  2760. }
  2761. .rotate-90 {
  2762. -webkit-transform: rotate(90deg);
  2763. -moz-transform: rotate(90deg);
  2764. -o-transform: rotate(90deg);
  2765. -ms-transform: rotate(90deg);
  2766. transform: rotate(90deg);
  2767. }
  2768. @-webkit-keyframes marquee {
  2769. 0% {
  2770. text-indent: 100%
  2771. }
  2772. 100% {
  2773. text-indent: 0%
  2774. }
  2775. }
  2776. @keyframes marquee {
  2777. 0% {
  2778. text-indent: 100%
  2779. }
  2780. 100% {
  2781. text-indent: 0%
  2782. }
  2783. }
  2784. @keyframes shake {
  2785. 2% {
  2786. transform: translate(1.5px, 2.5px) rotate(-0.5deg);
  2787. }
  2788. 4% {
  2789. transform: translate(1.5px, -1.5px) rotate(0.5deg);
  2790. }
  2791. 6% {
  2792. transform: translate(1.5px, -1.5px) rotate(-0.5deg);
  2793. }
  2794. 8% {
  2795. transform: translate(0.5px, 2.5px) rotate(0.5deg);
  2796. }
  2797. 10% {
  2798. transform: translate(-0.5px, -0.5px) rotate(1.5deg);
  2799. }
  2800. 12% {
  2801. transform: translate(-0.5px, -0.5px) rotate(-0.5deg);
  2802. }
  2803. 14% {
  2804. transform: translate(2.5px, 0.5px) rotate(-0.5deg);
  2805. }
  2806. 16% {
  2807. transform: translate(-1.5px, 1.5px) rotate(0.5deg);
  2808. }
  2809. 18% {
  2810. transform: translate(2.5px, 0.5px) rotate(-0.5deg);
  2811. }
  2812. 20% {
  2813. transform: translate(-1.5px, 0.5px) rotate(-0.5deg);
  2814. }
  2815. 22% {
  2816. transform: translate(2.5px, -1.5px) rotate(-0.5deg);
  2817. }
  2818. 24% {
  2819. transform: translate(1.5px, 2.5px) rotate(1.5deg);
  2820. }
  2821. 26% {
  2822. transform: translate(-1.5px, -0.5px) rotate(0.5deg);
  2823. }
  2824. 28% {
  2825. transform: translate(1.5px, 1.5px) rotate(-0.5deg);
  2826. }
  2827. 30% {
  2828. transform: translate(2.5px, -1.5px) rotate(-0.5deg);
  2829. }
  2830. 32% {
  2831. transform: translate(0.5px, 2.5px) rotate(-0.5deg);
  2832. }
  2833. 34% {
  2834. transform: translate(-0.5px, 1.5px) rotate(1.5deg);
  2835. }
  2836. 36% {
  2837. transform: translate(0.5px, 1.5px) rotate(1.5deg);
  2838. }
  2839. 38% {
  2840. transform: translate(1.5px, 1.5px) rotate(0.5deg);
  2841. }
  2842. 40% {
  2843. transform: translate(-0.5px, 1.5px) rotate(0.5deg);
  2844. }
  2845. 42% {
  2846. transform: translate(-0.5px, 0.5px) rotate(1.5deg);
  2847. }
  2848. 44% {
  2849. transform: translate(-1.5px, -1.5px) rotate(1.5deg);
  2850. }
  2851. 46% {
  2852. transform: translate(0.5px, -0.5px) rotate(0.5deg);
  2853. }
  2854. 48% {
  2855. transform: translate(-0.5px, 1.5px) rotate(-0.5deg);
  2856. }
  2857. 50% {
  2858. transform: translate(2.5px, -0.5px) rotate(-0.5deg);
  2859. }
  2860. 52% {
  2861. transform: translate(0.5px, -1.5px) rotate(0.5deg);
  2862. }
  2863. 54% {
  2864. transform: translate(2.5px, -1.5px) rotate(0.5deg);
  2865. }
  2866. 56% {
  2867. transform: translate(-1.5px, -0.5px) rotate(0.5deg);
  2868. }
  2869. 58% {
  2870. transform: translate(-1.5px, 2.5px) rotate(1.5deg);
  2871. }
  2872. 60% {
  2873. transform: translate(0.5px, -1.5px) rotate(0.5deg);
  2874. }
  2875. 62% {
  2876. transform: translate(-0.5px, 2.5px) rotate(1.5deg);
  2877. }
  2878. 64% {
  2879. transform: translate(0.5px, 0.5px) rotate(-0.5deg);
  2880. }
  2881. 66% {
  2882. transform: translate(1.5px, -0.5px) rotate(1.5deg);
  2883. }
  2884. 68% {
  2885. transform: translate(-1.5px, -0.5px) rotate(0.5deg);
  2886. }
  2887. 70% {
  2888. transform: translate(-0.5px, 2.5px) rotate(1.5deg);
  2889. }
  2890. 72% {
  2891. transform: translate(1.5px, 0.5px) rotate(0.5deg);
  2892. }
  2893. 74% {
  2894. transform: translate(0.5px, -1.5px) rotate(0.5deg);
  2895. }
  2896. 76% {
  2897. transform: translate(1.5px, 1.5px) rotate(-0.5deg);
  2898. }
  2899. 78% {
  2900. transform: translate(2.5px, -1.5px) rotate(0.5deg);
  2901. }
  2902. 80% {
  2903. transform: translate(-1.5px, 1.5px) rotate(0.5deg);
  2904. }
  2905. 82% {
  2906. transform: translate(-0.5px, 2.5px) rotate(1.5deg);
  2907. }
  2908. 84% {
  2909. transform: translate(1.5px, 1.5px) rotate(-0.5deg);
  2910. }
  2911. 86% {
  2912. transform: translate(2.5px, 0.5px) rotate(1.5deg);
  2913. }
  2914. 88% {
  2915. transform: translate(-0.5px, -1.5px) rotate(-0.5deg);
  2916. }
  2917. 90% {
  2918. transform: translate(1.5px, -0.5px) rotate(-0.5deg);
  2919. }
  2920. 92% {
  2921. transform: translate(0.5px, -1.5px) rotate(1.5deg);
  2922. }
  2923. 94% {
  2924. transform: translate(-0.5px, -0.5px) rotate(0.5deg);
  2925. }
  2926. 96% {
  2927. transform: translate(-0.5px, -1.5px) rotate(-0.5deg);
  2928. }
  2929. 98% {
  2930. transform: translate(-0.5px, -1.5px) rotate(1.5deg);
  2931. }
  2932. 0%,
  2933. 100% {
  2934. transform: translate(0, 0) rotate(0);
  2935. }
  2936. }
  2937. @-webkit-keyframes fail-shake {
  2938. 8%,
  2939. 41% {
  2940. -webkit-transform: translateX(-10px);
  2941. }
  2942. 25%,
  2943. 58% {
  2944. -webkit-transform: translateX(10px);
  2945. }
  2946. 75% {
  2947. -webkit-transform: translateX(-5px);
  2948. }
  2949. 92% {
  2950. -webkit-transform: translateX(5px);
  2951. }
  2952. 0%,
  2953. 100% {
  2954. -webkit-transform: translateX(0);
  2955. }
  2956. }
  2957. @keyframes fail-shake {
  2958. 8%,
  2959. 41% {
  2960. transform: translateX(-10px);
  2961. }
  2962. 25%,
  2963. 58% {
  2964. transform: translateX(10px);
  2965. }
  2966. 75% {
  2967. transform: translateX(-5px);
  2968. }
  2969. 92% {
  2970. transform: translateX(5px);
  2971. }
  2972. 0%,
  2973. 100% {
  2974. transform: translateX(0);
  2975. }
  2976. }
  2977. .flashNow {
  2978. animation-name: flash;
  2979. animation-timing-function: ease-out;
  2980. animation-duration: .4s;
  2981. }
  2982. @keyframes flash {
  2983. 0% {
  2984. background: white;
  2985. }
  2986. 100% {
  2987. background: none;
  2988. }
  2989. }
  2990. .marquee {
  2991. width: 100%;
  2992. margin: auto;
  2993. padding: 2px;
  2994. overflow: hidden;
  2995. white-space: nowrap;
  2996. animation: marquee 10s linear infinite;
  2997. -webkit-animation: marquee 10s linear infinite;
  2998. }
  2999. .drop-hover {
  3000. border: 3px dotted #3a7999;
  3001. color: #3a7999;
  3002. background: rgba(0, 0, 0, 0);
  3003. }
  3004. .drag {
  3005. transition: all 0.15s ease-out;
  3006. cursor: move;
  3007. }
  3008. .drag:hover {
  3009. -webkit-transform: scale(1.3);
  3010. -ms-transform: scale(1.3);
  3011. transform: scale(1.3);
  3012. }
  3013. /* theme colors */
  3014. .gray {
  3015. color: #6a6a6a;
  3016. }
  3017. .green {
  3018. color: #6DE08E;
  3019. }
  3020. .cold {
  3021. color: #6DE08E;
  3022. }
  3023. .warm {
  3024. color: #aa6900;
  3025. }
  3026. /* color theme classes for widgets */
  3027. /* Slider colors */
  3028. .range-handle {
  3029. background-color: #bcbcbc !important;
  3030. }
  3031. [data-type="slider"]:not([data-background-color]) .range-bar {
  3032. background-color: #404040 !important;
  3033. }
  3034. [data-type="slider"]:not([data-color]) .range-quantity {
  3035. background-color: #aa6900 !important;
  3036. }
  3037. /* label widget */
  3038. [data-type="label"].active {
  3039. color: #aa6900 !important;
  3040. }
  3041. /* symbol widget */
  3042. /* foreground on */
  3043. [data-type="symbol"]:not([data-colors]):not([data-on-color]) .active i#fg {
  3044. color: #aa6900 !important;
  3045. }
  3046. /* switch widget */
  3047. /* background on */
  3048. [data-type="switch"]:not([data-background-colors]):not([data-on-background-color]) .active i#bg {
  3049. color: #aa6900 !important;
  3050. }
  3051. /* switch widget invert */
  3052. /* foreground on */
  3053. [data-type="switch"]:not([data-colors]):not([data-on-color]).invert .active i#fg {
  3054. color: #aa6900 !important;
  3055. }
  3056. /* pseudo classes for canvas painted widgets
  3057. read by ftui.getStyle() in init and reinit function */
  3058. .checkbox.on {
  3059. color: #bfbfbf;
  3060. background-color: #aa6900;
  3061. }
  3062. .checkbox.off {
  3063. color: #bfbfbf;
  3064. background-color: #505050;
  3065. }
  3066. .slider {
  3067. color: #aa6900;
  3068. }
  3069. .homestatus {
  3070. background-color: #666;
  3071. color: #aa6900;
  3072. }
  3073. .homestatus.icon {
  3074. background-color: #777;
  3075. color: #222;
  3076. }
  3077. .volume.handle {
  3078. color: #aa6900;
  3079. }
  3080. .volume {
  3081. background-color: #2A2A2A;
  3082. color: #555;
  3083. }
  3084. .wind_direction.handle {
  3085. color: #aa6900;
  3086. }
  3087. .wind_direction {
  3088. background-color: #2A2A2A;
  3089. color: #555;
  3090. }
  3091. .thermostat {
  3092. background-color: #222;
  3093. color: #7a7a7a;
  3094. }
  3095. .thermostat.actual {
  3096. color: #eee;
  3097. }
  3098. .thermostat.nominal {
  3099. color: #eee;
  3100. }
  3101. .progress.value {
  3102. font-size: 70% !important;
  3103. color: #aaa !important;
  3104. font-family: sans-serif;
  3105. letter-spacing: -1px;
  3106. z-index: 1000;
  3107. }