default.css 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065
  1. /* ==========================================================================
  2. Define Exo font family
  3. Primary font used throughout the user interface
  4. ========================================================================== */
  5. /* exo-300 - latin-ext_latin */
  6. @font-face {
  7. font-family: 'Exo';
  8. font-style: normal;
  9. font-weight: 300;
  10. src: local('Exo Light'), local('Exo-Light'),
  11. url('../../webfonts/exo-v8-latin-ext_latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  12. url('../../webfonts/exo-v8-latin-ext_latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  13. font-display: swap;
  14. }
  15. /* exo-300italic - latin-ext_latin */
  16. @font-face {
  17. font-family: 'Exo';
  18. font-style: italic;
  19. font-weight: 300;
  20. src: local('Exo Light Italic'), local('Exo-LightItalic'),
  21. url('../../webfonts/exo-v8-latin-ext_latin-300italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  22. url('../../webfonts/exo-v8-latin-ext_latin-300italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  23. font-display: swap;
  24. }
  25. /* exo-regular - latin-ext_latin */
  26. @font-face {
  27. font-family: 'Exo';
  28. font-style: normal;
  29. font-weight: 400;
  30. src: local('Exo Regular'), local('Exo-Regular'),
  31. url('../../webfonts/exo-v8-latin-ext_latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  32. url('../../webfonts/exo-v8-latin-ext_latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  33. font-display: swap;
  34. }
  35. /* exo-italic - latin-ext_latin */
  36. @font-face {
  37. font-family: 'Exo';
  38. font-style: italic;
  39. font-weight: 400;
  40. src: local('Exo Italic'), local('Exo-Italic'),
  41. url('../../webfonts/exo-v8-latin-ext_latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  42. url('../../webfonts/exo-v8-latin-ext_latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  43. font-display: swap;
  44. }
  45. /* exo-500 - latin-ext_latin */
  46. @font-face {
  47. font-family: 'Exo';
  48. font-style: normal;
  49. font-weight: 500;
  50. src: local('Exo Medium'), local('Exo-Medium'),
  51. url('../../webfonts/exo-v8-latin-ext_latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  52. url('../../webfonts/exo-v8-latin-ext_latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  53. font-display: swap;
  54. }
  55. /* exo-500italic - latin-ext_latin */
  56. @font-face {
  57. font-family: 'Exo';
  58. font-style: italic;
  59. font-weight: 500;
  60. src: local('Exo Medium Italic'), local('Exo-MediumItalic'),
  61. url('../../webfonts/exo-v8-latin-ext_latin-500italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  62. url('../../webfonts/exo-v8-latin-ext_latin-500italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  63. font-display: swap;
  64. }
  65. /* exo-600 - latin-ext_latin */
  66. @font-face {
  67. font-family: 'Exo';
  68. font-style: normal;
  69. font-weight: 600;
  70. src: local('Exo SemiBold'), local('Exo-SemiBold'),
  71. url('../../webfonts/exo-v8-latin-ext_latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  72. url('../../webfonts/exo-v8-latin-ext_latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  73. font-display: swap;
  74. }
  75. /* exo-600italic - latin-ext_latin */
  76. @font-face {
  77. font-family: 'Exo';
  78. font-style: italic;
  79. font-weight: 600;
  80. src: local('Exo SemiBold Italic'), local('Exo-SemiBoldItalic'),
  81. url('../../webfonts/exo-v8-latin-ext_latin-600italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  82. url('../../webfonts/exo-v8-latin-ext_latin-600italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  83. font-display: swap;
  84. }
  85. /* exo-700 - latin-ext_latin */
  86. @font-face {
  87. font-family: 'Exo';
  88. font-style: normal;
  89. font-weight: 700;
  90. src: local('Exo Bold'), local('Exo-Bold'),
  91. url('../../webfonts/exo-v8-latin-ext_latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  92. url('../../webfonts/exo-v8-latin-ext_latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  93. font-display: swap;
  94. }
  95. /* exo-700italic - latin-ext_latin */
  96. @font-face {
  97. font-family: 'Exo';
  98. font-style: italic;
  99. font-weight: 700;
  100. src: local('Exo Bold Italic'), local('Exo-BoldItalic'),
  101. url('../../webfonts/exo-v8-latin-ext_latin-700italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  102. url('../../webfonts/exo-v8-latin-ext_latin-700italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  103. font-display: swap;
  104. }
  105. /* ==========================================================================
  106. Define Inconsolata font family
  107. Console font
  108. ========================================================================== */
  109. /* Inconsolata-bold - latin */
  110. @font-face {
  111. font-family: 'Inconsolata';
  112. src: local('Inconsolata Bold'), local('Inconsolata-Bold'),
  113. url('../../webfonts/Inconsolata-Bold.woff2') format('woff2'),
  114. url('../../webfonts/Inconsolata-Bold.woff') format('woff');
  115. font-weight: bold;
  116. font-style: normal;
  117. font-display: swap;
  118. }
  119. /* Inconsolata - latin */
  120. @font-face {
  121. font-family: 'Inconsolata';
  122. src: local('Inconsolata Regular'), local('Inconsolata-Regular'),
  123. url('../../webfonts/Inconsolata-Regular.woff2') format('woff2'),
  124. url('../../webfonts/Inconsolata-Regular.woff') format('woff');
  125. font-weight: normal;
  126. font-style: normal;
  127. font-display: swap;
  128. }
  129. /* Base
  130. ========================================================================== */
  131. /**
  132. * 1. Set default font family to sans-serif.
  133. * 2. Prevent iOS text size adjust after orientation change, without disabling
  134. * user zoom.
  135. * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
  136. * `em` units.
  137. */
  138. html {
  139. font-family: sans-serif;
  140. /* 1 */
  141. -ms-text-size-adjust: 100%;
  142. /* 2 */
  143. -webkit-text-size-adjust: 100%;
  144. /* 2 */
  145. }
  146. /**
  147. * Remove default margin.
  148. */
  149. body {
  150. margin: 0;
  151. background-color: #fff;
  152. }
  153. /* HTML5 display definitions
  154. ========================================================================== */
  155. /**
  156. * Correct `block` display not defined for any HTML5 element in IE 8/9.
  157. * Correct `block` display not defined for `details` or `summary` in IE 10/11
  158. * and Firefox.
  159. * Correct `block` display not defined for `main` in IE 11.
  160. */
  161. article,
  162. aside,
  163. details,
  164. figcaption,
  165. figure,
  166. footer,
  167. header,
  168. hgroup,
  169. main,
  170. menu,
  171. nav,
  172. section,
  173. summary {
  174. display: block;
  175. }
  176. /**
  177. * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
  178. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  179. */
  180. audio,
  181. canvas,
  182. progress,
  183. video {
  184. display: inline-block;
  185. /* 1 */
  186. vertical-align: baseline;
  187. /* 2 */
  188. }
  189. /**
  190. * Prevents modern browsers from displaying `audio` without controls.
  191. * Remove excess height in iOS 5 devices.
  192. */
  193. audio:not([controls]) {
  194. display: none;
  195. height: 0;
  196. }
  197. /**
  198. * Address `[hidden]` styling not present in IE 8/9/10.
  199. * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
  200. */
  201. [hidden],
  202. template {
  203. display: none;
  204. }
  205. .hidden {
  206. display: none;
  207. }
  208. /* Links
  209. ========================================================================== */
  210. /**
  211. * Remove the gray background color from active links in IE 10.
  212. */
  213. a {
  214. background-color: transparent;
  215. }
  216. /**
  217. * Improve readability when focused and also mouse hovered in all browsers.
  218. */
  219. a:active, a:hover {
  220. outline: 0;
  221. }
  222. /* Text-level semantics
  223. ========================================================================== */
  224. /**
  225. * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
  226. */
  227. abbr[title] {
  228. border-bottom: 1px dotted;
  229. }
  230. /**
  231. * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
  232. */
  233. b,
  234. strong {
  235. font-weight: 600;
  236. color: #5f5f5f;
  237. }
  238. /**
  239. * Address styling not present in Safari and Chrome.
  240. */
  241. dfn {
  242. font-style: italic;
  243. }
  244. /**
  245. * Address variable `h1` font-size and margin within `section` and `article`
  246. * contexts in Firefox 4+, Safari, and Chrome.
  247. */
  248. h1 {
  249. font-size: 2em;
  250. margin: 0.67em 0;
  251. }
  252. /**
  253. * Addresses styling not present in IE 8/9.
  254. */
  255. mark {
  256. background: #ff0;
  257. color: #000;
  258. }
  259. /**
  260. * Address inconsistent and variable font size in all browsers.
  261. */
  262. small {
  263. font-size: 80%;
  264. }
  265. /**
  266. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  267. */
  268. sub,
  269. sup {
  270. font-size: 75%;
  271. line-height: 0;
  272. position: relative;
  273. vertical-align: baseline;
  274. }
  275. sup {
  276. top: -0.5em;
  277. }
  278. sub {
  279. bottom: -0.25em;
  280. }
  281. /* Embedded content
  282. ========================================================================== */
  283. /**
  284. * 1. Remove border when inside `a` element in IE 8/9/10.
  285. * 2. Improves image quality when scaled in IE 7.
  286. */
  287. img {
  288. border: 0;
  289. }
  290. /**
  291. * Correct overflow not hidden in IE 9/10/11.
  292. */
  293. svg:not(:root) {
  294. overflow: hidden;
  295. }
  296. /* Grouping content
  297. ========================================================================== */
  298. /**
  299. * Address margin not present in IE 8/9 and Safari.
  300. */
  301. figure {
  302. margin: 1em 40px;
  303. }
  304. /**
  305. * Address differences between Firefox and other browsers.
  306. */
  307. hr {
  308. box-sizing: content-box;
  309. height: 0;
  310. }
  311. /**
  312. * Contain overflow in all browsers.
  313. */
  314. pre {
  315. overflow: auto;
  316. }
  317. /**
  318. * Address odd `em`-unit font size rendering in all browsers.
  319. * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
  320. */
  321. code,
  322. kbd,
  323. pre,
  324. samp {
  325. font-family: monospace, monospace;
  326. font-size: 1em;
  327. }
  328. /* Forms
  329. ========================================================================== */
  330. /**
  331. * Known limitation: by default, Chrome and Safari on OS X allow very limited
  332. * styling of `select`, unless a `border` property is set.
  333. */
  334. /**
  335. * 1. Correct color not being inherited.
  336. * Known issue: affects color of disabled elements.
  337. * 2. Correct font properties not being inherited.
  338. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
  339. * 4. Improves appearance and consistency in all browsers.
  340. */
  341. button,
  342. input,
  343. optgroup,
  344. select,
  345. textarea {
  346. color: inherit;
  347. /* 1 */
  348. font: inherit;
  349. /* 2 */
  350. margin: 0;
  351. /* 3 */
  352. }
  353. /**
  354. * Address `overflow` set to `hidden` in IE 8/9/10/11.
  355. */
  356. button {
  357. overflow: visible;
  358. }
  359. /**
  360. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  361. * All other form control elements do not inherit `text-transform` values.
  362. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
  363. * Correct `select` style inheritance in Firefox.
  364. */
  365. button,
  366. select {
  367. text-transform: none;
  368. /*color: transparent !important;*/
  369. text-shadow: 0 0 0 #4b4b4b !important;
  370. }
  371. /**
  372. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  373. * and `video` controls.
  374. * 2. Correct inability to style clickable `input` types in iOS.
  375. * 3. Improve usability and consistency of cursor style between image-type
  376. * `input` and others.
  377. * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
  378. * Known issue: inner spacing remains in IE 6.
  379. */
  380. button,
  381. html input[type="button"],
  382. input[type="reset"],
  383. input[type="submit"] {
  384. -webkit-appearance: button;
  385. /* 2 */
  386. cursor: pointer;
  387. /* 3 */
  388. }
  389. /**
  390. * Re-set default cursor for disabled elements.
  391. */
  392. button[disabled],
  393. html input[disabled] {
  394. cursor: default;
  395. }
  396. /**
  397. * Remove inner padding and border in Firefox 4+.
  398. */
  399. button::-moz-focus-inner,
  400. input::-moz-focus-inner {
  401. border: 0;
  402. padding: 0;
  403. }
  404. /**
  405. * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  406. * the UA stylesheet.
  407. */
  408. input {
  409. line-height: normal;
  410. }
  411. /**
  412. * 1. Address box sizing set to `content-box` in IE 8/9/10.
  413. * 2. Remove excess padding in IE 8/9/10.
  414. * Known issue: excess padding remains in IE 6.
  415. */
  416. input[type="checkbox"],
  417. input[type="radio"] {
  418. box-sizing: border-box;
  419. /* 1 */
  420. padding: 0;
  421. /* 2 */
  422. margin-left: 0px;
  423. margin-right: 8px;
  424. margin-top: 2px;
  425. }
  426. /**
  427. * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  428. * `font-size` values of the `input`, it causes the cursor style of the
  429. * decrement button to change from `default` to `text`.
  430. */
  431. input[type="number"]::-webkit-inner-spin-button,
  432. input[type="number"]::-webkit-outer-spin-button {
  433. height: auto;
  434. }
  435. /**
  436. * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
  437. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
  438. * (include `-moz` to future-proof).
  439. */
  440. input[type="search"] {
  441. -webkit-appearance: textfield;
  442. /* 1 */
  443. /* 2 */
  444. box-sizing: content-box;
  445. }
  446. /**
  447. * Remove inner padding and search cancel button in Safari and Chrome on OS X.
  448. * Safari (but not Chrome) clips the cancel button when the search input has
  449. * padding (and `textfield` appearance).
  450. */
  451. input[type="search"]::-webkit-search-cancel-button,
  452. input[type="search"]::-webkit-search-decoration {
  453. -webkit-appearance: none;
  454. }
  455. /**
  456. * Define consistent border, margin, and padding.
  457. */
  458. fieldset {
  459. border: 1px solid #c0c0c0;
  460. margin: 0 2px;
  461. padding: 0.35em 0.625em 0.75em;
  462. }
  463. /**
  464. * 1. Correct `color` not being inherited in IE 8/9/10/11.
  465. * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  466. * 3. Corrects text not wrapping in Firefox 3.
  467. * 4. Corrects alignment displayed oddly in IE 6/7.
  468. */
  469. legend {
  470. border: 0;
  471. /* 1 */
  472. padding: 0;
  473. /* 2 */
  474. }
  475. /**
  476. * Remove default vertical scrollbar in IE 8/9/10/11.
  477. */
  478. textarea {
  479. overflow: auto;
  480. }
  481. /**
  482. * Don't inherit the `font-weight` (applied by a rule above).
  483. * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
  484. */
  485. optgroup {
  486. font-weight: 600;
  487. }
  488. /* Tables
  489. ========================================================================== */
  490. /**
  491. * Remove most spacing between table cells.
  492. */
  493. table {
  494. border-collapse: collapse;
  495. border-spacing: 0;
  496. }
  497. td,
  498. th {
  499. padding: 0;
  500. }
  501. * {
  502. -webkit-tap-highlight-color: transparent;
  503. }
  504. body {
  505. /* -webkit-touch-callout: none;
  506. -webkit-text-size-adjust: none;
  507. -webkit-user-select: none; */
  508. }
  509. html,
  510. input,
  511. textarea,
  512. select,
  513. button {
  514. -webkit-font-smoothing: antialiased;
  515. -moz-osx-font-smoothing: grayscale;
  516. }
  517. html {
  518. height: 100%;
  519. }
  520. body {
  521. font-family: 'Exo', Arial;
  522. overflow-x: hidden;
  523. font-size: 0.9rem;
  524. height: 100%;
  525. color: #7c7c7c;
  526. }
  527. .body-login, .body-reset {
  528. height: auto;
  529. padding-top: 10%;
  530. background: rgb(102,158,231) !important;
  531. background: radial-gradient(circle, rgba(102,158,231,1) 0%, rgba(43,86,177,1) 100%) !important;
  532. }
  533. a {
  534. text-decoration: none;
  535. color: #7c7c7c;
  536. }
  537. .disabled {
  538. text-decoration: line-through;
  539. }
  540. .clearfix:before,
  541. .clearfix:after {
  542. content: '';
  543. display: table;
  544. }
  545. .clearfix:after {
  546. clear: both;
  547. }
  548. .text-right {
  549. text-align: right;
  550. }
  551. .text-center {
  552. text-align: center;
  553. }
  554. .text-small {
  555. font-size: 0.85em;
  556. }
  557. .check-label {
  558. display: inline-block;
  559. cursor: pointer;
  560. position: relative;
  561. line-height: 16px;
  562. padding-left: 26px;
  563. }
  564. .check-label:before {
  565. content: '';
  566. width: 16px;
  567. height: 16px;
  568. position: absolute;
  569. left: 0;
  570. top: 0;
  571. display: inline-block;
  572. z-index: 99;
  573. }
  574. .clicked-on.check-label:before,
  575. .selected .check-label:before {
  576. content: '';
  577. display: inline-block;
  578. width: 27px;
  579. height: 27px;
  580. background-position: -225px -42px;
  581. left: -6px;
  582. top: -6px;
  583. }
  584. .l-center {
  585. margin: 0 auto;
  586. max-width: 1020px;
  587. min-width: 1020px;
  588. }
  589. .l-logo {
  590. background-image: url("/images/logo-header.svg");
  591. background-repeat: no-repeat;
  592. float: left;
  593. height: 28px;
  594. margin-top: 5px;
  595. width: 54px
  596. }
  597. .l-header {
  598. background: linear-gradient(to bottom, rgba(104,145,196,1) 0%,rgba(69,114,181,1) 50%,rgba(65,90,149,1) 100%);
  599. background-color: #5070a6;
  600. border-bottom: 1px solid rgba(255,255,255,0.95);
  601. overflow: hidden;
  602. position: fixed;
  603. width: 100%;
  604. z-index: 900;
  605. height: 38px;
  606. text-shadow: 1px 1px rgba(0,0,0,0.25);
  607. box-shadow: 0px 4px 10px rgba(100,100,100,0.4);
  608. border-bottom: 1px solid #fff;
  609. }
  610. .l-header a {
  611. font-size: 0.8rem;
  612. }
  613. .l-menu__item--active {
  614. /*background-color: #fff;*/
  615. }
  616. .l-menu__item.l-menu__item--active a {
  617. color: #4686b8;
  618. font-size: 0.8rem;
  619. background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%,rgba(255,255,255,0.75) 30%,rgba(255,255,255,1) 95%);
  620. text-shadow: 0px 1px rgba(255,255,255,0.8);
  621. border-left: 1px solid rgba(255,255,255,0.98);
  622. border-right: 1px solid rgba(255,255,255,0.98);
  623. }
  624. .l-menu__item.l-menu__item--active:hover {
  625. box-shadow: none;
  626. }
  627. .l-menu {
  628. float: left;
  629. position: fixed;
  630. margin-left: 70px;
  631. }
  632. .l-menu__item {
  633. float: left;
  634. font-weight: 600;
  635. }
  636. .l-menu__item a {
  637. color: #f7f7f7;
  638. position: relative;
  639. line-height: 39px;
  640. padding: 11px 10px;
  641. border-left: 1px solid transparent;
  642. border-right: 1px solid transparent;
  643. }
  644. .l-menu__item a:hover {
  645. color: #3b9de8 !important;
  646. border: 0;
  647. box-shadow: inset 0px 0px 6px rgba(255,255,255,0.6) !important;
  648. transition: 0.2s;
  649. border-left: 1px solid rgba(0,0,0,0.1);
  650. border-right: 1px solid rgba(0,0,0,0.1);
  651. color: #4686b8 !important;
  652. background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%,rgba(255,255,255,0.75) 30%,rgba(255,255,255,1) 95%);
  653. text-shadow: 0px 1px rgba(255,255,255,0.8);
  654. }
  655. .l-menu__item a:active {
  656. border: 0;
  657. background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.6) 30%,rgba(255,255,255,0.95) 95%);
  658. color: #046c98 !important;
  659. text-shadow: 0px -1px 1px rgba(255,255,255,0.5) !important;
  660. box-shadow: inset 0px 0px 1px #fff,
  661. inset -1px -1px 4px rgba(220,220,220,0.4) !important;
  662. transition: 0.2s;
  663. border-left: 1px solid rgba(0,0,0,0.15);
  664. border-right: 1px solid rgba(0,0,0,0.15);
  665. }
  666. .l-menu.active .l-menu__item.focus a {
  667. text-decoration: underline;
  668. color: #5edad0;
  669. }
  670. .l-menu.active .l-menu__item.focus a:hover {
  671. background-color: #f79b44;
  672. color: #fff;
  673. }
  674. .panel-icon {
  675. font-size: 1rem;
  676. vertical-align: middle;
  677. margin-top: -4px;
  678. margin-right: 8px;
  679. }
  680. .l-profile {
  681. overflow: hidden;
  682. float: right;
  683. }
  684. .l-profile__username, .l-profile__logout,
  685. .l-profile__help, .l-profile__serversettings {
  686. font-size: 1.1rem !important;
  687. }
  688. .l-profile__logout {
  689. color: #dbf94e !important;
  690. }
  691. .l-profile__server {
  692. color: #ceefff;
  693. margin-top: 10px;
  694. float: left;
  695. }
  696. .l-profile__notifications {
  697. color: #fff;
  698. cursor: pointer;
  699. font-weight: 600;
  700. padding: 10px 5px 0;
  701. font-size: 1.2rem !important;
  702. line-height: 0.95rem;
  703. }
  704. .l-profile__notifications.active.l-profile__notifications.updates:active {
  705. background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%,rgba(255,255,255,0.75) 30%,rgba(255,255,255,1) 95%) !important;
  706. color: #046c98 !important;
  707. text-shadow: 0px -1px 1px rgba(255,255,255,0.5) !important;
  708. box-shadow: 0px 1px 3px rgba(0,0,0,0.15),
  709. inset 0px 0px 1px #fff,
  710. inset -1px -1px 4px rgba(220,220,220,0.4) !important;
  711. transition: 0.2s;
  712. }
  713. .l-profile__notifications:hover,.l-profile__notifications.updates:hover {
  714. color: #3b9de8 !important;
  715. text-shadow: 1px 1px rgba(255,255,255,0.5) !important;
  716. background: linear-gradient(to bottom, rgba(255,255,255,0.75) 0%,rgba(255,255,255,0.87) 30%,rgba(255,255,255,1) 95%) !important;
  717. transition: 0.2s;
  718. }
  719. .notification-container {
  720. background-color: rgba(255,255,255,0.95);
  721. box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.4);
  722. list-style-type: none;
  723. margin: 0 18px;
  724. max-height: 90%;
  725. overflow-y: auto;
  726. padding-left: 0;
  727. position: fixed;
  728. top: 34px;
  729. width: 390px;
  730. z-index: 300;
  731. font-size: 0.8rem;
  732. padding: 0;
  733. color: #6f6f6f;
  734. border-bottom-left-radius: 6px;
  735. border-bottom-right-radius: 6px;
  736. border: 1px solid #fff;
  737. border-top: none;
  738. }
  739. .notification-container .empty {
  740. text-align: center;
  741. font-size: 1.2rem;
  742. font-weight: normal;
  743. padding: 4rem;
  744. }
  745. .notification-container .empty .status-icon {
  746. color: #54a6e5;
  747. }
  748. .notification-container .unseen {
  749. color: #6f6f6f;
  750. }
  751. .notification-container li {
  752. border-bottom: 1px solid #e9e4e4;
  753. padding: 1rem;
  754. }
  755. .notification-container li:last-child {
  756. border-bottom: none;
  757. }
  758. .notification-container .mark-seen {
  759. background-color: #cc3366;
  760. border: 1px solid #c41650;
  761. border-radius: 10px;
  762. cursor: pointer;
  763. display: none;
  764. float: right;
  765. height: 7px;
  766. margin-right: -5px;
  767. margin-top: 9px;
  768. width: 7px;
  769. }
  770. .notification-container .mark-seen:hover {
  771. background-color: #fff;
  772. border-color: #e83b75;
  773. }
  774. .notification-container .mark-seen:active {
  775. background-color: #777;
  776. border-color: #777;
  777. }
  778. .notification-container .unseen .mark-seen{
  779. display: inline-block;
  780. }
  781. .notification-container .title {
  782. color: #9e9e9e;
  783. font-weight: 600;
  784. line-height: 30px;
  785. padding: 0;
  786. text-transform: none;
  787. float: none;
  788. display: block;
  789. }
  790. .notification-container .title a {
  791. color: #9e9e9e;
  792. }
  793. .notification-container .unseen .title a,
  794. .notification-container .unseen .title {
  795. color: #cc3366;
  796. }
  797. .notification-container .unseen .title a:hover {
  798. color: #e83b75;
  799. }
  800. .notification-container .unseen .title a:active {
  801. color: #e83b75;
  802. }
  803. .notification-container a {
  804. font-weight: 600;
  805. color: #1a4492;/* #eee;*/
  806. }
  807. .notification-container a:hover {
  808. color: #4a87fb;
  809. }
  810. .notification-container a:active {
  811. color: #1a4492;
  812. }
  813. .notification-container .icon {
  814. display: inline-block;
  815. width: 0;
  816. }
  817. .notification-container .icon.starred {
  818. display: inline-block;
  819. width: 21px;
  820. }
  821. .notification-container .time {
  822. font-size: 0.9em;
  823. display: block;
  824. text-align: right;
  825. padding-top: 0.6rem;
  826. }
  827. .alert {
  828. border-radius: 4px;
  829. box-sizing: border-box;
  830. display: block;
  831. font-size: 0.8rem;
  832. font-weight: 400;
  833. padding: 0.8rem;
  834. position: relative;
  835. text-align: left;
  836. box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
  837. text-shadow: 0px 1px rgba(0,0,0,0.45);
  838. border: 1px solid #fff;
  839. }
  840. .alert i.fas {
  841. border-radius: 1rem;
  842. font-size: 1.4rem;
  843. font-weight: 600;
  844. height: 2rem;
  845. left: 0.6rem;
  846. line-height: 2rem;
  847. position: absolute;
  848. text-align: center;
  849. top: 0.8rem;
  850. width: 2rem;
  851. }
  852. .alert.alert-with-icon {
  853. padding-left: 3.2rem;
  854. min-height: 3.5rem;
  855. }
  856. .alert.alert-info {
  857. color: #fff;
  858. background-color: #618ecc;
  859. }
  860. .alert.alert-info i.fas {
  861. color: #618ecc;
  862. background-color: white;
  863. }
  864. .alert.alert-danger {
  865. color: #fff;
  866. background-color: #ec6c6c;
  867. }
  868. .alert.alert-danger i.fas {
  869. color: #ec6c6c;
  870. background-color: white;
  871. }
  872. .alert.alert-success {
  873. color: #fff;
  874. background-color: #5ea64c;
  875. }
  876. .alert.alert-success i.fas {
  877. color: #5ea64c;
  878. background-color: white;
  879. }
  880. .alert a {
  881. font-weight: bold;
  882. color: #fff;
  883. }
  884. form#vstobjects .alert {
  885. width: 380px;
  886. }
  887. .app-list.cards {
  888. display: flex;
  889. flex-wrap: wrap;
  890. justify-content: center;
  891. }
  892. .app-form {
  893. padding: 2em 1em 2em 9rem;
  894. }
  895. .app-form label {
  896. font-size: 0.85rem;
  897. padding-bottom: 3px;
  898. font-weight: 600;
  899. cursor: default;
  900. }
  901. .card {
  902. float:left;
  903. overflow: hidden;
  904. background-color: #f5f5f5;
  905. border:1px solid #d3d3d3;
  906. box-sizing: border-box;
  907. width:200px;
  908. min-height:260px;
  909. margin:1em;
  910. padding-bottom: 0.5em;
  911. box-shadow: 0px 1px 4px rgba(0,0,0,0.2);
  912. color: #353535;
  913. border-radius: 4px;
  914. text-align: center;
  915. }
  916. .card.disable {
  917. color: #b6b6b6;
  918. }
  919. .card.disable .card-thumb {
  920. filter: grayscale(100%);
  921. opacity: 0.3;
  922. }
  923. .card .card-details {
  924. font-size: 0.8rem;
  925. padding: 0.5em 0.8em;
  926. border-top: 1px solid #e6e6e6;
  927. text-align: center;
  928. }
  929. .card .card-details p {
  930. margin: 0 0 0.3em 0;
  931. font-size: 1em;
  932. }
  933. .card p.card-title {
  934. font-size: 1.1em;
  935. font-weight: 600;
  936. }
  937. .card .card-thumb {
  938. background-color: #fff;
  939. display: block;
  940. height: 180px;
  941. width: 200px;
  942. text-align: center;
  943. }
  944. .card .card-thumb img {
  945. max-height: 180px;
  946. max-width: 200px;
  947. height: auto;
  948. width: auto;
  949. }
  950. .card button {
  951. margin-top: 0.5em;
  952. margin:0.3em;
  953. }
  954. .l-stat {
  955. margin: 34px auto;
  956. position: fixed;
  957. background-color: #fff;
  958. z-index: 100;
  959. padding-top: 36px;
  960. overflow: hidden;
  961. text-align: center;
  962. display: flex;
  963. width: 100%;
  964. max-width: 1020px;
  965. }
  966. .l-stat__col {
  967. display: inline-block;
  968. vertical-align: top;
  969. flex: 1;
  970. }
  971. .l-stat__col a {
  972. display: inline-block;
  973. padding-bottom: 36px;
  974. min-height: 70px;
  975. width: 136px;
  976. border-bottom: 4px solid #fff;
  977. overflow: hidden;
  978. background-color: #fff;
  979. padding-top: 3px;
  980. margin-top: -3px;
  981. padding-left: 5px;
  982. }
  983. .l-stat__col a:hover {
  984. border-bottom: 4px solid #e83b75;
  985. transition: 0.3s;
  986. }
  987. .l-stat__col a:active {
  988. border-bottom: 4px solid #d53067;
  989. }
  990. .l-stat__col--active a {
  991. border-bottom: 4px solid #cc3366;
  992. }
  993. .l-stat.active .l-stat__col.focus a {
  994. border-bottom: 4px solid #5edad0;
  995. }
  996. .l-stat.active .l-stat__col.focus a .l-stat__col-title {
  997. color: #36B3A9;
  998. }
  999. .l-stat__col a:hover .l-stat__col-title {
  1000. color: #e83b75;
  1001. }
  1002. .l-stat__col a:active .l-stat__col-title {
  1003. color: #d53067;
  1004. }
  1005. .l-stat__col ul {
  1006. list-style-type: none;
  1007. font-size: 0.8rem;
  1008. padding-left: 0;
  1009. line-height: 14px;
  1010. }
  1011. .l-stat__col li {
  1012. color: #7b7b7b;
  1013. margin-bottom: 8px;
  1014. text-transform: lowercase;
  1015. }
  1016. .l-stat__col-title {
  1017. text-transform: uppercase;
  1018. font-weight: 600;
  1019. color: #5b5b5b;
  1020. min-height: 21px;
  1021. font-size: 16px;
  1022. }
  1023. .l-stat__col--active .l-stat__col-title {
  1024. color: #cc3366;
  1025. font-size: 16px;
  1026. }
  1027. .l-stat__col .fas {
  1028. color: #999999;
  1029. padding: 4px;
  1030. }
  1031. .l-stat__col--active .fas {
  1032. color: #cc3366;
  1033. }
  1034. .l-separator.selected,
  1035. .l-separator {
  1036. height: 1px;
  1037. border-top: 1px solid #ddd;
  1038. }
  1039. div.l-content > div.l-separator:nth-of-type(2) {
  1040. margin-top: 180px;
  1041. width: 100%;
  1042. position: fixed;
  1043. z-index: 120;
  1044. }
  1045. div.l-content > div.l-separator:nth-of-type(4) {
  1046. margin-top: 225px;
  1047. width: 100%;
  1048. position: fixed;
  1049. z-index: 110;
  1050. border-top: none;
  1051. border-bottom: 1px solid #ddd;
  1052. }
  1053. .l-sort {
  1054. position: fixed;
  1055. width: 100%;
  1056. max-width: 1020px;
  1057. background-color: #fff;
  1058. z-index: 120;
  1059. margin-top: 181px;
  1060. height: 44px;
  1061. }
  1062. .l-sort__create-btn {
  1063. background-position: -331px -107px;
  1064. background-repeat: no-repeat;
  1065. bottom: -23px;
  1066. display: inline-block;
  1067. height: 45px;
  1068. left: 30px;
  1069. position: absolute;
  1070. width: 45px;
  1071. z-index: 3;
  1072. }
  1073. .l-sort__create-btn:hover {
  1074. background-position: -378px -107px;
  1075. }
  1076. .l-sort__create-btn:active {
  1077. background-position: -425px -107px;
  1078. }
  1079. .l-sort__create-btn--active {
  1080. background-position: -425px -107px;
  1081. }
  1082. .l-sort__create-btn.restore {
  1083. background-position: -331px -250px;
  1084. bottom: -22px;
  1085. }
  1086. .l-sort__create-btn.restore:hover {
  1087. background-position: -331px -250px;
  1088. }
  1089. .l-sort__create-btn.restore:active {
  1090. background-position: -331px -250px;
  1091. }
  1092. .l-sort__create-btn.edit {
  1093. background-position: -331px -154px;
  1094. bottom: -22px;
  1095. }
  1096. .l-sort__create-btn.edit:hover {
  1097. background-position: -378px -154px;
  1098. }
  1099. .l-sort__create-btn.edit:active {
  1100. background-position: -425px -154px;
  1101. }
  1102. .context-menu.sort-order {
  1103. display: inline-block;
  1104. position: absolute;
  1105. z-index: 3;
  1106. left: 397px;
  1107. margin: 0;
  1108. overflow: hidden;
  1109. top: 42px;
  1110. background-color: rgba(255,255,255,0.95);
  1111. list-style-type: none;
  1112. box-shadow: 0 2px 14px 0 rgba(20, 20, 20, 0.35);
  1113. border-radius: 4px;
  1114. border: 1px solid rgba(255,255,255,1);
  1115. padding: 0px;
  1116. }
  1117. .context-menu.sort-order li {
  1118. padding: 0;
  1119. }
  1120. .context-menu li {
  1121. border-bottom: 1px solid #ddd;
  1122. color: #2e2e2e;
  1123. cursor: pointer;
  1124. font-size: 0.8rem;
  1125. padding: 12px;
  1126. }
  1127. .context-menu.sort-order span.name {
  1128. display: inline-block;
  1129. padding: 12px;
  1130. width: 117px;
  1131. font-weight: 500;
  1132. }
  1133. .context-menu.sort-order span.up {
  1134. display: inline-block;
  1135. padding: 12px 14px;
  1136. width: 16px;
  1137. }
  1138. .context-menu.sort-order span.active {
  1139. background-color: #4f8bbc !important;
  1140. color: #4686b8;
  1141. font-size: 0.8rem;
  1142. background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%,rgba(255,255,255,0.75) 50%,rgba(255,255,255,0.95) 95%);
  1143. text-shadow: 0px 1px rgba(255,255,255,0.8);
  1144. }
  1145. .context-menu.sort-order span:hover {
  1146. color: #3b9de8;
  1147. text-shadow: 1px 1px rgba(255,255,255,0.5);
  1148. background: linear-gradient(to bottom, rgba(241,248,253,1) 0%,rgba(218,236,250,1) 50%,rgba(190,221,246,1) 51%,rgba(227,240,251,1) 100%);
  1149. box-shadow: inset 0px 0px 1px #fff,
  1150. inset 0px 0px 6px rgba(255,255,255,0.6);
  1151. transition: 0.2s;
  1152. }
  1153. .context-menu.sort-order span:active,.context-menu.sort-order span:focus {
  1154. background: linear-gradient(to bottom, rgba(210,232,250,1) 0%,rgba(187,220,247,1) 50%,rgba(162,207,244,1) 51%,rgba(194,224,248,1) 100%);
  1155. color: #046c98;
  1156. text-shadow: 0px -1px 1px rgba(255,255,255,0.5);
  1157. box-shadow: inset 0px 0px 1px #fff,
  1158. inset -1px -1px 4px rgba(220,220,220,0.4);
  1159. }
  1160. .context-menu.sort-order span.name i.fas.fa-sort-amount-down {
  1161. float: right;
  1162. margin-top: 2px;
  1163. }
  1164. .context-menu.sort-order li:last-child {
  1165. border-bottom: none;
  1166. }
  1167. .l-sort-toolbar {
  1168. float: right;
  1169. padding: 7px 0 7px 0;
  1170. text-transform: uppercase;
  1171. font-size: 0.8rem;
  1172. }
  1173. .l-sort-toolbar table{
  1174. float: right;
  1175. }
  1176. .l-sort-toolbar td.toggle-all {
  1177. padding-top: 7px;
  1178. padding-right: 10px;
  1179. }
  1180. .l-sort-toolbar .sort-by {
  1181. cursor: pointer;
  1182. padding-top: 7px;
  1183. padding-left: 10px;
  1184. }
  1185. .l-sort-toolbar .sort-by:hover {
  1186. color: #4b4b4b;
  1187. }
  1188. .l-sort-toolbar .sort-by:hover b {
  1189. color: #4b4b4b;
  1190. }
  1191. .l-sort-toolbar .sort-by:active {
  1192. color: #3b9de8;
  1193. }
  1194. .l-sort-toolbar .sort-by:active b {
  1195. color: #3b9de8;
  1196. }
  1197. .l-sort-toolbar .sort-by b {
  1198. text-transform: uppercase;
  1199. padding-left: 3px;
  1200. font-size: 0.8rem;
  1201. }
  1202. .l-sort-toolbar .toggle-all:hover {
  1203. color: #4b4b4b;
  1204. }
  1205. .l-sort-toolbar .toggle-all:active {
  1206. color: #3b9de8;
  1207. }
  1208. .l-sort-toolbar .l-select {
  1209. float: left;
  1210. }
  1211. .l-sort-toolbar td {
  1212. vertical-align: middle;
  1213. }
  1214. .l-sort-toolbar.subtitle {
  1215. padding-left: 96px;
  1216. }
  1217. .l-sort-toolbar td.step-right:first-of-type {
  1218. padding-right: 20px;
  1219. }
  1220. .l-sort-toolbar td:nth-of-type(2) {
  1221. /* /// padding-right: 60px;*/
  1222. }
  1223. .l-sort-toolbar td:last-of-type {
  1224. /* /// padding-left: 40px; */
  1225. }
  1226. .l-sort-toolbar__filter-apply {
  1227. float: left;
  1228. width: 32px;
  1229. height: 30px;
  1230. border: 1px solid #ddd;
  1231. background-color: rgba(255,255,255,0.90);
  1232. text-shadow: 0px 1px rgba(255,255,255,0.95);
  1233. border-radius: 4px;
  1234. border-bottom-left-radius: 0px;
  1235. border-top-left-radius: 0px;
  1236. border-left: 0px;
  1237. box-shadow: inset 0px 0px 1px rgba(41,90,152,0.1), inset 0 0px 2px rgba(255,255,255,1);
  1238. text-shadow: 1px 1px rgba(255,255,255,0.9);
  1239. color: #006699;
  1240. padding: 0;
  1241. font-size: 0.9em;
  1242. }
  1243. .l-sort-toolbar__filter-apply:hover {
  1244. color: #3399cc;
  1245. background-color: #fff;
  1246. }
  1247. .l-sort-toolbar__filter-apply:active {
  1248. color: #409fd5;
  1249. box-shadow: inset 1px 1px 0px rgba(0,0,0,0.1);
  1250. }
  1251. .l-sort-toolbar__search {
  1252. float: left;
  1253. width: 25px;
  1254. height: 25px;
  1255. background-position: -333px -37px;
  1256. border: none;
  1257. }
  1258. .l-sort-toolbar__search:hover {
  1259. background-position: -368px -37px;
  1260. border-color: #afafac;
  1261. }
  1262. .l-sort-toolbar__search:active {
  1263. background-position: -404px -37px;
  1264. border-color: #50bdb5;
  1265. }
  1266. .l-sort-toolbar__search--active {
  1267. background-position: -404px -37px;
  1268. border-color: #50bdb5;
  1269. }
  1270. .l-sort-toolbar .vst {
  1271. padding: 0 12px;
  1272. color: #777;
  1273. text-transform: uppercase;
  1274. font-size: 0.8rem;
  1275. font-weight: 600;
  1276. line-height: 30px;
  1277. }
  1278. .l-sort-toolbar .vst:hover {
  1279. color: #cc3366;
  1280. }
  1281. .l-sort-toolbar .vst:active {
  1282. color: #3b9de8;
  1283. }
  1284. .l-sort-toolbar .vst.selected {
  1285. color: #cc3366;
  1286. }
  1287. .l-unit-toolbar__buttonstrip {
  1288. margin-top: 12px;
  1289. display: inline-block;
  1290. font-size: 0.9em;
  1291. }
  1292. .l-unit-toolbar__buttonstrip a {
  1293. padding-left: 10px !important;
  1294. padding-right: 10px !important;
  1295. margin-right: 5px;
  1296. }
  1297. .l-unit-toolbar__buttonstrip .fas {
  1298. padding-right: 6px;
  1299. }
  1300. .subtitle {
  1301. color: #cc3366;
  1302. font-size: 0.8rem;
  1303. font-weight: 600;
  1304. margin: 20px 0 18px 129px;
  1305. text-transform: uppercase;
  1306. }
  1307. .l-select {
  1308. width: 178px;
  1309. border: 1px solid #ddd;
  1310. border-top-left-radius: 4px;
  1311. border-bottom-left-radius: 4px;
  1312. overflow-x: hidden;
  1313. position: relative;
  1314. display: inline-block;
  1315. border-style: solid none solid solid;
  1316. font-weight: 400;
  1317. }
  1318. .body-firewall.lang-bg .l-select {
  1319. width: 120px;
  1320. }
  1321. .body-firewall.lang-el .l-select {
  1322. max-width: 90px;
  1323. }
  1324. .body-mail.lang-el .l-select {
  1325. max-width: 80px;
  1326. }
  1327. .body-mail.lang-el td.l-sort-toolbar__search-box {
  1328. display: none;
  1329. }
  1330. .body-cron.lang-el .search-input {
  1331. max-width: 80px;
  1332. }
  1333. .body-cron.lang-el .l-select {
  1334. max-width: 120px;
  1335. }
  1336. .lang-ru .l-select {
  1337. width: 170px;
  1338. }
  1339. .body-firewall.lang-ru .l-select {
  1340. max-width: 125px;
  1341. }
  1342. .body-firewall.lang-ru .l-select {
  1343. max-width: 125px;
  1344. }
  1345. .body-firewall.lang-es .l-select {
  1346. max-width: 135px;
  1347. }
  1348. .lang-bg .l-stat__col-title {
  1349. font-size: 0.75rem;
  1350. font-weight: bold;
  1351. }
  1352. .lang-bg .l-stat__col .fas,
  1353. .lang-bg .l-stat__col--active .fas {
  1354. font-size: 0.85rem;
  1355. }
  1356. .l-select:after {
  1357. pointer-events: none;
  1358. width: 7px;
  1359. height: 4px;
  1360. margin-top: -2px;
  1361. content: '';
  1362. position: absolute;
  1363. right: 10px;
  1364. top: 50%;
  1365. }
  1366. .l-select select {
  1367. border: 0;
  1368. background-color: transparent;
  1369. height: 28px;
  1370. min-width: 175px;
  1371. padding-left: 10px;
  1372. background-image: url("/images/arrow.png");
  1373. background-position: 160px;
  1374. background-repeat: no-repeat;
  1375. appearance: none;
  1376. -moz-appearance: none;
  1377. -webkit-appearance: none;
  1378. }
  1379. .l-select select:focus {
  1380. border: 0;
  1381. outline: 0;
  1382. }
  1383. .lang-ru .l-select select {
  1384. min-width: 215px;
  1385. }
  1386. .l-select select option {
  1387. padding: 7px;
  1388. }
  1389. .l-sort-toolbar .l-select {
  1390. float: left;
  1391. border: 1px solid #ddd;
  1392. background-color: rgba(255,255,255,0.90);
  1393. text-shadow: 0px 1px rgba(255,255,255,0.95);
  1394. border-radius: 4px;
  1395. border-bottom-right-radius: 0px;
  1396. border-top-right-radius: 0px;
  1397. border-right: 0px;
  1398. text-shadow: 1px 1px rgba(255,255,255,0.9);
  1399. }
  1400. .l-unit {
  1401. color: #707070;
  1402. padding: 0 0 0 14px;
  1403. overflow: hidden;
  1404. font-size: 0.8rem;
  1405. border-radius: 0;
  1406. border-left: 1px solid transparent;
  1407. border-right: 1px solid transparent;
  1408. }
  1409. .table-header {
  1410. font-size: 0.95em !important;
  1411. background: linear-gradient(to bottom, rgba(247,247,247,1) 0%,rgba(255,255,255,1) 100%) !important;
  1412. background-color: #fff;
  1413. border-left: 1px solid #d0d0d0 !important;
  1414. border-right: 1px solid #d0d0d0 !important;
  1415. border-bottom: 1px solid #d0d0d0 !important;
  1416. border-top: 1px solid #d0d0d0 !important;
  1417. text-shadow: 0px 1px rgba(255,255,255,1);
  1418. box-shadow: inset 0 1px 1px rgba(255,255,255,1),inset 0 0 1px rgba(255,255,255,1),inset 0 0 4px rgba(255,255,255,.8),0 1px 4px rgba(140,140,140,.35)!important;
  1419. border-top-left-radius: 0px;
  1420. border-top-right-radius: 0px;
  1421. border-bottom-left-radius: 6px;
  1422. border-bottom-right-radius: 6px;
  1423. min-height: 28px;
  1424. color: #707070;
  1425. padding: 0 0 0 14px;
  1426. overflow: hidden;
  1427. line-height: 1rem;
  1428. margin-top: 1px;
  1429. position: sticky;
  1430. top: 145px;
  1431. z-index: 100;
  1432. padding-top: 4px;
  1433. padding-bottom: 4px;
  1434. }
  1435. .table-header:hover {
  1436. background-color: linear-gradient(to bottom, rgba(247,247,247,1) 0%,rgba(255,255,255,1) 100%) !important;
  1437. border-left: 1px solid #d0d0d0 !important;
  1438. border-right: 1px solid #d0d0d0 !important;
  1439. }
  1440. .table-header .fas {
  1441. font-size: 1rem;
  1442. }
  1443. .units .l-unit {
  1444. border-bottom: 1px solid #ddd;
  1445. border-left: 1px solid transparent;
  1446. border-right: 1px solid transparent;
  1447. }
  1448. .l-unit:hover, .units .l-unit:hover {
  1449. box-shadow: 0px 2px 10px rgba(150,150,150,0.20);
  1450. background-color: #f8f8f8;
  1451. text-shadow: 0px 1px rgba(255,255,255,0.5);
  1452. border-left: 1px solid #ddd;
  1453. border-right: 1px solid #ddd;
  1454. }
  1455. .units .l-unit.l-unit--starred {
  1456. border-left: 2px solid #cc3366;
  1457. }
  1458. .units.active .l-unit.focus {
  1459. border-left: 2px solid #5edad0;
  1460. background-color: #eff5fc;
  1461. }
  1462. .units.active .l-unit.focus .l-unit__name {
  1463. color: #36b3a9;
  1464. }
  1465. .units.active .l-unit.focus .l-unit-toolbar__col--right {
  1466. display: block;
  1467. }
  1468. .units > div:last-child {
  1469. border-bottom: none;
  1470. }
  1471. .l-unit-ft {
  1472. color: #7c7c7c;
  1473. padding: 0 0 0 15px;
  1474. }
  1475. .l-unit:hover .l-unit-toolbar__col--right {
  1476. display: block;
  1477. }
  1478. .l-unit--blue {
  1479. border-left: 2px solid #3b9de8;
  1480. }
  1481. .l-unit--suspended {
  1482. background-color: #eaeaea !important;
  1483. color: #c0c0c0;
  1484. }
  1485. .l-unit--suspended a {
  1486. color: #c0c0c0 !important;
  1487. }
  1488. .units .l-unit.l-unit--outdated {
  1489. background-color: #ffcaca;
  1490. color: #4b4b4b;
  1491. }
  1492. .body-updates .units .l-unit.l-unit--outdated .fas.fa-box-open {
  1493. color: #da1010;
  1494. }
  1495. .l-unit--suspended .l-unit__name,
  1496. .l-unit--suspended b,
  1497. .l-unit--outdated .l-unit__name,
  1498. .l-unit--outdated b {
  1499. color: #c0c0c0;
  1500. }
  1501. .l-unit--outdated .l-unit__name {
  1502. color: #333;
  1503. }
  1504. .l-unit--outdated b {
  1505. color: #4b4b4b;
  1506. }
  1507. .l-unit--suspended .l-percent {
  1508. border-color: #fff;
  1509. }
  1510. .l-unit--suspended .l-percent__fill {
  1511. background-color: #fff;
  1512. }
  1513. .l-unit--suspended .l-unit__name,
  1514. .l-unit--suspended .l-unit__name span {
  1515. color: #ADADAD;
  1516. }
  1517. .l-unit--suspended.selected .l-unit__name,
  1518. .l-unit--suspended.selected .l-unit__name span {
  1519. color: #777;
  1520. }
  1521. .l-unit--suspended.selected {
  1522. background-color: #f2eab8 !important;
  1523. color: #b2ac87 !important;
  1524. }
  1525. .l-unit--outdated.selected {
  1526. background: #ff9494 !important;
  1527. color: #333 !important;
  1528. text-shadow: none !important;
  1529. }
  1530. .l-unit--suspended.selected .l-unit__name,
  1531. .l-unit--suspended.selected b,
  1532. .l-unit--outdated.selected .l-unit__name,
  1533. .l-unit--outdated.selected b,
  1534. .l-unit--suspended.selected .l-percent,
  1535. .l-unit--suspended.selected .l-percent__fill,
  1536. .l-unit--suspended.selected .l-unit__name,
  1537. .l-unit--suspended.selected .l-unit__name span {
  1538. color: #333 !important;
  1539. }
  1540. .l-unit.selected .l-percent {
  1541. border-bottom: 1px dotted #777;
  1542. }
  1543. .l-unit--selected {
  1544. background-color: #d1eddc;
  1545. }
  1546. .l-unit-toolbar{
  1547. display: none;
  1548. }
  1549. .l-unit label {
  1550. margin-bottom: 20px;
  1551. }
  1552. .l-unit__columns {
  1553. display: table;
  1554. width: 100%;
  1555. }
  1556. .l-unit__col {
  1557. display: table-cell;
  1558. padding-top: 12px;
  1559. vertical-align: top;
  1560. padding-bottom: 10px;
  1561. cursor: default;
  1562. }
  1563. .l-unit__col--left {
  1564. width: 100px;
  1565. padding-right: 10px;
  1566. }
  1567. .units.compact .l-unit__col--left {
  1568. vertical-align: top;
  1569. }
  1570. .l-unit__col--left.step-left {
  1571. padding-left: 30px;
  1572. }
  1573. .l-unit__col--right.total {
  1574. padding-left: 16px;
  1575. }
  1576. .l-unit__col--right.back {
  1577. padding-left: 78px
  1578. }
  1579. .l-sort-toolbar .step-left {
  1580. padding-left: 40px;
  1581. }
  1582. .step-right {
  1583. padding-right: 40px;
  1584. }
  1585. .l-unit__date {
  1586. font-size: 11px;
  1587. margin-top: 10px;
  1588. padding-bottom: 30px;
  1589. text-transform: uppercase;
  1590. }
  1591. .l-unit__suspended {
  1592. display: none;
  1593. font-size: 0.8rem;
  1594. font-weight: 600;
  1595. margin-top: 36px;
  1596. text-transform: uppercase;
  1597. margin-bottom: 14px;
  1598. }
  1599. .units.compact .l-unit__suspended {
  1600. margin-top: 1px;
  1601. }
  1602. .l-unit--outdated .l-unit__suspended,
  1603. .l-unit--suspended .l-unit__suspended {
  1604. display: block;
  1605. }
  1606. .l-unit-ft .subtitle,
  1607. .l-unit .subtitle {
  1608. color: #cc3366;
  1609. font-size: 0.8rem;
  1610. font-weight: 600;
  1611. margin: 20px 0 18px 129px;
  1612. text-transform: uppercase;
  1613. }
  1614. .l-unit.l-unit--outdated .l-unit__date {
  1615. color: #d24c4c;
  1616. font-size: 10px;
  1617. text-transform: uppercase;
  1618. font-weight: 600;
  1619. }
  1620. .l-unit__name {
  1621. color: #414141;
  1622. font-size: 22px;
  1623. margin-top: 10px;
  1624. margin-bottom: 10px;
  1625. font-weight: 500;
  1626. letter-spacing: -0.02em;
  1627. }
  1628. .l-unit__servername {
  1629. color: #414141;
  1630. font-size: 28px;
  1631. margin-bottom: 10px;
  1632. font-weight: 300;
  1633. letter-spacing: -0.02em;
  1634. }
  1635. .l-unit__stats.separate,
  1636. .l-unit__name.separate {
  1637. padding-bottom: 15px;
  1638. }
  1639. .l-unit__name.small {
  1640. font-size: 16px;
  1641. }
  1642. .l-unit__name.small-2 {
  1643. font-size: 20px;
  1644. }
  1645. .l-unit__name span {
  1646. color: #999;
  1647. margin-left: 30px;
  1648. font-size: 0.85rem;
  1649. font-style: italic;
  1650. }
  1651. .l-unit__name span:first-of-type {
  1652. margin-left: 39px;
  1653. }
  1654. .l-unit__name b {
  1655. font-weight: normal;
  1656. font-style: italic;
  1657. }
  1658. .l-unit__ip {
  1659. margin-bottom: 26px;
  1660. font-size: 0.8rem;
  1661. color: #383838;
  1662. }
  1663. .l-unit__ip span {
  1664. padding-left: 3px;
  1665. padding-right: 3px;
  1666. }
  1667. .display-ip {
  1668. font-size: 0.8rem;
  1669. }
  1670. .display-ip span {
  1671. padding-left: 3px;
  1672. padding-right: 3px;
  1673. }
  1674. .l-unit__stats {
  1675. margin-bottom: 10px;
  1676. margin-left: 12%;
  1677. }
  1678. .l-unit__stats:hover {
  1679. border-left: 1px solid transparent !important;
  1680. border-right: 1px solid transparent !important;
  1681. box-shadow: none !important;
  1682. background: none !important;
  1683. }
  1684. .l-unit__stats table {
  1685. width: 100%;
  1686. table-layout: fixed;
  1687. }
  1688. .l-unit__stats td {
  1689. height: 22px;
  1690. padding-bottom: 3px;
  1691. vertical-align: top;
  1692. }
  1693. .l-unit__stat-col--left a, .l-unit__stat-col--left a:visited {
  1694. color: #353535;
  1695. }
  1696. .l-unit__stat-col--left a:hover {
  1697. color: #4c8bbe;
  1698. }
  1699. .l-unit__stat-col--left {
  1700. float: left;
  1701. width: 110px;
  1702. }
  1703. .l-unit__stat-col--left.border {
  1704. border-left: 1px solid #ebebeb;
  1705. }
  1706. .l-unit__stat-col--left.border-clear {
  1707. border-left: 1px solid transparent;
  1708. }
  1709. .l-unit__stat-col--left.truncate {
  1710. overflow: hidden;
  1711. text-overflow: ellipsis;
  1712. white-space: nowrap;
  1713. }
  1714. .l-unit__stat-col--left.super-compact {
  1715. width: 50px;
  1716. }
  1717. .l-unit__stat-col--left.compact {
  1718. width: 60px;
  1719. }
  1720. .l-unit__stat-col--left.compact-1 {
  1721. width: 70px;
  1722. }
  1723. .l-unit__stat-col--left.compact-2 {
  1724. width: 80px;
  1725. }
  1726. .l-unit__stat-col--left.compact-3 {
  1727. width: 90px;
  1728. }
  1729. .l-unit__stat-col--left.compact-4 {
  1730. width: 130px;
  1731. }
  1732. .l-unit__stat-col--left.compact-5 {
  1733. width: 160px;
  1734. }
  1735. .l-unit__stat-col--left.wide {
  1736. width: 190px;
  1737. }
  1738. .l-unit__stat-col--left.wide-2 {
  1739. width: 230px;
  1740. }
  1741. .l-unit__stat-col--left.wide-3 {
  1742. width: 250px;
  1743. }
  1744. .l-unit__stat-col--left.wide-4 {
  1745. width: 320px;
  1746. }
  1747. .l-unit__stat-col--left.wide-5 {
  1748. width: 350px;
  1749. }
  1750. .l-unit__stat-col--left.wide-6 {
  1751. width: 440px;
  1752. }
  1753. .l-unit__stat-col--left.wide-7 {
  1754. width: 550px;
  1755. }
  1756. .l-unit__stat-col--left.small-2 {
  1757. line-height: 11px;
  1758. }
  1759. .l-unit__stat-col--left.tiny {
  1760. font-size: 0.8rem;
  1761. }
  1762. .l-unit__stat-col--left.tiny b {
  1763. font-size: 18px;
  1764. }
  1765. .l-unit__stat-col--right {
  1766. float: left;
  1767. max-width: 170px;
  1768. }
  1769. .l-unit-toolbar__col--left {
  1770. float: left;
  1771. margin-left: -15px;
  1772. margin-top: 0;
  1773. padding-bottom: 0px;
  1774. padding-left: 15px;
  1775. padding-top: 15px;
  1776. width: 30px;
  1777. cursor: pointer;
  1778. display: none;
  1779. }
  1780. .l-unit-toolbar__col--right {
  1781. float: right;
  1782. }
  1783. body.mobile .l-unit-toolbar__col--right {
  1784. display: block;
  1785. }
  1786. .l-unit-toolbar .shortcut {
  1787. display: none;
  1788. }
  1789. .units.active .l-unit.focus .l-unit-toolbar .shortcut {
  1790. display: block;
  1791. background-color: #69a298;
  1792. border-radius: 13px;
  1793. color: #fff;
  1794. cursor: pointer;
  1795. display: block;
  1796. font-size: 0.8rem;
  1797. font-weight: 600;
  1798. line-height: 25px;
  1799. padding-left: 7px;
  1800. padding-right: 9px;
  1801. position: absolute;
  1802. right: 3px;
  1803. top: 3px;
  1804. }
  1805. .units.active .l-unit.focus .l-unit-toolbar .shortcut.delete {
  1806. font-size: 10px;
  1807. padding-left: 2px;
  1808. padding-right: 5px;
  1809. text-transform: capitalize;
  1810. }
  1811. .units.active .l-unit.focus .l-unit-toolbar .shortcut.enter {
  1812. font-size: 17px;
  1813. padding-left: 1px;
  1814. padding-right: 7px;
  1815. }
  1816. .units.active .l-unit.focus .l-unit-toolbar i {
  1817. background: none;
  1818. }
  1819. .l-unit__stat-col.volume {
  1820. font-size: 0.8rem;
  1821. line-height: 17px;
  1822. float: right;
  1823. }
  1824. .actions-panel {
  1825. line-height: 1.1rem;
  1826. }
  1827. .actions-panel__col {
  1828. display: inline-block;
  1829. min-width: 18px;
  1830. text-transform: uppercase;
  1831. }
  1832. .actions-panel__col a {
  1833. color: #777;
  1834. font-weight: 600;
  1835. font-size: 0.9rem;
  1836. display: inline-block;
  1837. cursor: pointer;
  1838. }
  1839. .lang-ru .actions-panel__col a {
  1840. font-size: 0.9rem;
  1841. padding-top: 1px;
  1842. }
  1843. .lang-tw .actions-panel__col a {
  1844. font-size: 0.9rem;
  1845. font-weight: normal;
  1846. }
  1847. .lang-ar .actions-panel__col a {
  1848. font-size: 0.9rem;
  1849. font-weight: normal;
  1850. }
  1851. .l-unit__col .actions-panel .fas {
  1852. display: none;
  1853. }
  1854. .l-unit__col:hover .actions-panel .fas {
  1855. display: inline-block;
  1856. }
  1857. .icon-pad-left {
  1858. margin-right: 6px;
  1859. }
  1860. .icon-pad-right {
  1861. margin-right: 6px;
  1862. }
  1863. .l-icon-up-arrow, .l-icon-down-arrow, .l-icon-star, .l-icon-to-top, .l-icon-shortcuts, .l-icon-star-orange, .l-icon-star-blue {
  1864. display: inline-block;
  1865. vertical-align: middle;
  1866. }
  1867. .l-icon-down-arrow {
  1868. width: 7px;
  1869. height: 15px;
  1870. background-position: -280px -128px;
  1871. }
  1872. .l-icon-up-arrow {
  1873. width: 7px;
  1874. height: 15px;
  1875. background-position: -299px -129px;
  1876. }
  1877. .l-icon-star {
  1878. width: 36px;
  1879. height: 36px;
  1880. background-position: -216px 560px;
  1881. cursor: pointer;
  1882. visibility: hidden;
  1883. }
  1884. .l-unit--starred .l-icon-star {
  1885. background-position: -174px 560px;
  1886. visibility: visible;
  1887. }
  1888. .selected .l-icon-star {
  1889. filter: contrast(70%);
  1890. -webkit-filter: contrast(70%);
  1891. }
  1892. .units.compact .l-icon-star {
  1893. margin-top: -14px;
  1894. }
  1895. .l-icon-star:hover {
  1896. background-position: 0px 560px;
  1897. }
  1898. .l-icon-star:active {
  1899. -background-position: -174px 560px;
  1900. background-position: -80px 562px;
  1901. }
  1902. .l-unit:hover .l-icon-star {
  1903. visibility: visible;
  1904. }
  1905. .l-icon-to-top {
  1906. width: 35px;
  1907. height: 35px;
  1908. background-position: -330px -68px;
  1909. }
  1910. .l-icon-to-top:hover {
  1911. background-position: -366px -68px;
  1912. }
  1913. .l-icon-to-top:active {
  1914. background-position: -402px -68px;
  1915. }
  1916. .l-icon-shortcuts {
  1917. width: 35px;
  1918. height: 35px;
  1919. background-position: -240px -281px;
  1920. border-radius: 18px;
  1921. }
  1922. .l-icon-shortcuts:hover {
  1923. background-position: -160px -281px;
  1924. }
  1925. .l-icon-shortcuts:active {
  1926. background-position: -198px -281px;
  1927. }
  1928. body.mobile .l-icon-to-top,
  1929. body.mobile .l-icon-shortcuts {
  1930. display: none;
  1931. }
  1932. .l-icon-star-orange {
  1933. width: 13px;
  1934. height: 13px;
  1935. background-position: -178px -97px;
  1936. }
  1937. .l-icon-star-blue {
  1938. width: 13px;
  1939. height: 13px;
  1940. background-position: -134px -97px;
  1941. }
  1942. .media-top {
  1943. vertical-align: top;
  1944. }
  1945. .l-unit__stat-cols {
  1946. padding-right: 10px;
  1947. }
  1948. .l-unit__stat-cols.last {
  1949. padding-right: 0;
  1950. }
  1951. .l-unit__stat-cols.graph {
  1952. width: 200px;
  1953. }
  1954. .l-unit__stat-cols.tiny {
  1955. font-size:11px;
  1956. line-height: 19px;
  1957. }
  1958. .l-percent {
  1959. border-bottom: 1px dotted #ccc;
  1960. margin-top: 1px;
  1961. width: 200px;
  1962. }
  1963. .l-percent__fill {
  1964. background-color: #aacc0d;
  1965. height: 3px;
  1966. position: relative;
  1967. bottom: -1px;
  1968. }
  1969. .to-top {
  1970. display: inline-block;
  1971. position: fixed;
  1972. top: 90%;
  1973. right: 4%;
  1974. border: 1px solid #ddd;
  1975. padding: 8px;
  1976. border-radius: 50%;
  1977. background-color: #eee;
  1978. text-shadow: 1px 1px #fff;
  1979. box-shadow: 0px 2px 4px rgba(120,120,120,0.25),
  1980. inset 0px 0px 1px rgba(255,255,255,0.9);
  1981. z-index: 200;
  1982. width: 16px;
  1983. height: 16px;
  1984. text-align: center;
  1985. }
  1986. .to-shortcuts {
  1987. display: inline-block;
  1988. position: fixed;
  1989. top: 90%;
  1990. right: 8%;
  1991. border: 1px solid #ddd;
  1992. padding: 8px;
  1993. border-radius: 50%;
  1994. background-color: #eee;
  1995. text-shadow: 1px 1px #fff;
  1996. box-shadow: 0px 2px 4px rgba(120,120,120,0.25),
  1997. inset 0px 0px 1px rgba(255,255,255,0.9);
  1998. z-index: 200;
  1999. height: 16px;
  2000. width: 16px;
  2001. text-align: center;
  2002. }
  2003. #vstobjects {
  2004. /* margin-top: -1px; */
  2005. }
  2006. #vstobjects .l-center {
  2007. padding-top: 20px;
  2008. padding-bottom: 30px;
  2009. font-size: 0.8rem;
  2010. }
  2011. .timer-container {
  2012. margin-top: 4px;
  2013. }
  2014. .timer-container .refresh-timer {
  2015. border: 2px solid #9f9f9f;
  2016. border-radius: 14px;
  2017. height: 14px;
  2018. width: 14px;
  2019. float: left;
  2020. margin: 2px 10px 0 0;
  2021. }
  2022. .timer-container .refresh-timer.paused {
  2023. border: 2px solid #9f9f9f;
  2024. }
  2025. .timer-container .refresh-timer.paused .loader-half.right,
  2026. .timer-container .refresh-timer.paused .loader-half.dark {
  2027. background-color: #9d9f9f;
  2028. }
  2029. .timer-container .loader-half {
  2030. border-radius: 0 14px 14px 0;
  2031. height: 14px;
  2032. width: 7px;
  2033. float: left;
  2034. }
  2035. .timer-container .loader-half.left {
  2036. border-radius: 14px 0 0 14px;
  2037. background-color: #fff;
  2038. }
  2039. .timer-container .loader-half.right {
  2040. margin-left: 7px;
  2041. background-color: #9f9f9f;
  2042. }
  2043. .timer-container .loader-half.dark {
  2044. background-color: #9f9f9f;
  2045. }
  2046. .timer-container .movement {
  2047. float: left;
  2048. width: 14px;
  2049. height: 14px;
  2050. position: absolute;
  2051. }
  2052. .timer-container .movement.left {
  2053. z-index: 10;
  2054. }
  2055. .timer-container .movement.right {
  2056. transform: rotate(180deg);
  2057. -webkit-transform: rotate(180deg);
  2058. }
  2059. .timer-container .timer-button {
  2060. cursor: pointer;
  2061. text-decoration: underline;
  2062. margin: 7px 0 0 38px;
  2063. width: 15px;
  2064. float: left;
  2065. height: 10px;
  2066. }
  2067. .timer-container .timer-button.pause {
  2068. background: url(/images/pause.png) no-repeat ;
  2069. }
  2070. .timer-container .timer-button.play {
  2071. background: url(/images/start.png) no-repeat;
  2072. }
  2073. .uppercase {
  2074. text-transform: uppercase;
  2075. }
  2076. .title b,
  2077. .title {
  2078. color: #cc3366;
  2079. font-size: 0.8rem;
  2080. font-weight: 600;
  2081. padding: 0 30px 0px 73px;
  2082. line-height: 30px;
  2083. text-transform: uppercase;
  2084. }
  2085. .title {
  2086. display: inline-block;
  2087. float: left;
  2088. }
  2089. /* form styles */
  2090. .vst-error {
  2091. color: #ff3333;
  2092. font-weight: 600;
  2093. overflow: hidden;
  2094. max-width: 500px;
  2095. text-overflow: ellipsis;
  2096. white-space: nowrap;
  2097. }
  2098. .vst-ok {
  2099. color: #53ba55;
  2100. overflow: hidden;
  2101. max-width: 500px;
  2102. text-overflow: ellipsis;
  2103. white-space: nowrap;
  2104. font-size: 0.8rem;
  2105. }
  2106. .l-unit-toolbar__buttonstrip .vst-ok, .l-unit-toolbar__buttonstrip .vst-error {
  2107. margin-right: 20px;
  2108. }
  2109. .vst-ok a {
  2110. color: #326b9b;
  2111. }
  2112. .vst-ok a:hover {
  2113. color: #cc3366;
  2114. }
  2115. .vst-ok a:active {
  2116. color: #d53067;
  2117. }
  2118. .data {
  2119. margin: 0 0 90px 0;
  2120. }
  2121. .data-col1 {
  2122. width: 148px;
  2123. }
  2124. .data-col1 td {
  2125. padding: 10px 0 0 5px;
  2126. }
  2127. .data-col1 tr:first-child td {
  2128. padding: 59px 0 0 5px;
  2129. }
  2130. .login-box td,
  2131. .data td {
  2132. color: #4b4b4b;
  2133. font-size: 0.85rem;
  2134. padding-bottom: 4px;
  2135. font-weight: 600;
  2136. }
  2137. .input-label {
  2138. padding-top: 6px;
  2139. }
  2140. .data input[type="checkbox"] {
  2141. display: inline;
  2142. cursor: pointer;
  2143. }
  2144. input[type=radio] {
  2145. margin-top: 10px;
  2146. }
  2147. .step-top {
  2148. padding-top: 18px;
  2149. }
  2150. .step-top-small {
  2151. padding-top: 14px;
  2152. }
  2153. .jump-top {
  2154. margin-top: -60px;
  2155. }
  2156. .jump-small-top {
  2157. margin-top: -12px;
  2158. }
  2159. .data a {
  2160. text-decoration: none;
  2161. }
  2162. label {
  2163. cursor: pointer;
  2164. }
  2165. label:hover {
  2166. color: #333;
  2167. }
  2168. .vst-input {
  2169. background-color: #fff;
  2170. border: 1px solid #cfcfcf;
  2171. border-radius: 4px;
  2172. color: #4e4e4e;
  2173. font-family: 'Exo', Arial, Arial, Helvetica, sans-serif;
  2174. font-size: 0.8rem;
  2175. height: 20px;
  2176. margin: 2px 6px 0 0;
  2177. padding: 8px 3px 8px 14px;
  2178. width: 360px;
  2179. font-weight: normal;
  2180. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2181. }
  2182. .vst-input:hover {
  2183. border: 1px solid #94c8f0;
  2184. }
  2185. .vst-input:focus {
  2186. border: 1px solid #008fee;
  2187. background-color: #D7F9FF;
  2188. color: #333;
  2189. }
  2190. .vst-input:disabled,
  2191. .vst-list:disabled,
  2192. .vst-textinput:disabled
  2193. {
  2194. background-color: #e7e7e7;
  2195. text-shadow: 1px 1px rgba(255,255,255,1);
  2196. color: #686868;
  2197. }
  2198. .vst-input:focus:disabled,
  2199. .vst-textinput:disabled {
  2200. border-color: #dedede;
  2201. background-color: #f1f1f1;
  2202. }
  2203. .vst-input:disabled:hover,
  2204. .vst-list:disabled:hover
  2205. .vst-textinput:disabled:hover {
  2206. border-color: #cfcfcf;
  2207. }
  2208. .vst-input.long {
  2209. width: 832px;
  2210. }
  2211. .vst-input.short {
  2212. width: 200px;
  2213. }
  2214. .vst-input.vst-list-editor {
  2215. border: none;
  2216. box-shadow: none;
  2217. position: absolute;
  2218. margin-top:-34px;
  2219. margin-left: 1px;
  2220. display: block;
  2221. width: 340px;
  2222. height: 1rem;
  2223. }
  2224. .vst-input.vst-list-editor:focus {
  2225. background-color: white;
  2226. }
  2227. .vst-list {
  2228. background-color: #fff;
  2229. border: 1px solid #ccc;
  2230. border-radius: 4px;
  2231. color: #4e4e4e;
  2232. font-family: 'Exo', Arial, Helvetica,sans-serif;
  2233. font-size: 0.8rem;
  2234. font-weight: normal;
  2235. height: 36px;
  2236. cursor: pointer;
  2237. margin: 2px 6px 0 0;
  2238. min-width: 380px;
  2239. padding: 4px 1px 4px 10px;
  2240. background-image: url("/images/arrow.png");
  2241. background-position: 360px;
  2242. background-repeat: no-repeat;
  2243. width: 380px;
  2244. appearance:none;
  2245. -moz-appearance:none;
  2246. -webkit-appearance:none;
  2247. text-shadow: 0 0 0 #4b4b4b;
  2248. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2249. }
  2250. select.vst-list:-moz-focusring {
  2251. color:transparent;
  2252. }
  2253. .vst-list.long-2 {
  2254. width: 486px;
  2255. background-position: 465px;
  2256. }
  2257. .vst-list option {
  2258. padding: 6px 1px 6px 15px;
  2259. }
  2260. .vst-list:hover {
  2261. border: 1px solid #94c8f0;
  2262. }
  2263. .vst-list:focus {
  2264. border: 1px solid #008fee;
  2265. color: #333;
  2266. }
  2267. .vst-list.flat {
  2268. border: 1px solid #fff;
  2269. color: #326b9b;
  2270. text-transform: uppercase;
  2271. font-weight: 600;
  2272. font-size: 0.8rem;
  2273. margin-left: -10px;
  2274. text-shadow: none !important;
  2275. box-shadow: none !important;
  2276. }
  2277. .vst-list.flat:hover {
  2278. color: #cc3366;
  2279. }
  2280. .vst-list.flat option {
  2281. color: #4e4e4e;
  2282. }
  2283. .vst-text {
  2284. cursor: default;
  2285. }
  2286. a.vst-text,
  2287. a.vst-text b{
  2288. color: #326b9b;
  2289. }
  2290. a.vst-text:hover,
  2291. a.vst-text:hover b{
  2292. color: #cc3366;
  2293. }
  2294. a.vst-text:active,
  2295. a.vst-text:active b{
  2296. color: #cc3366;
  2297. }
  2298. .advanced-options {
  2299. background: linear-gradient(to bottom, rgba(247,247,247,1) 0%,rgba(255,255,255,1) 100%) !important;
  2300. border: 1px solid #ddd !important;
  2301. text-shadow: 0px 1px rgba(255,255,255,0.95);
  2302. box-shadow: inset 0px 0px 1px rgba(255,255,255,1), inset 0px 0px 4px rgba(255,255,255,0.8), 0px 4px 6px rgba(190,190,190,0.4) !important;
  2303. color: #30659d !important;
  2304. padding: 4px 0px 0px 18px;
  2305. overflow: hidden;
  2306. height: 28px;
  2307. }
  2308. .advanced-options a {
  2309. color: #30659d !important;
  2310. }
  2311. .advanced-options .fas {
  2312. margin-right: 20px;
  2313. width: 14px;
  2314. }
  2315. .vst-textinput {
  2316. background-color: #fff;
  2317. border: 1px solid #cfcfcf;
  2318. border-radius: 4px;
  2319. color: #4e4e4e;
  2320. font-size: 0.8rem;
  2321. padding: 5px;
  2322. width: 560px;
  2323. height: 60px;
  2324. font-family: 'Exo', Arial, Helvetica, sans-serif;
  2325. padding: 7px 1px 3px 14px;
  2326. font-weight: normal;
  2327. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2328. }
  2329. .vst-textinput:hover {
  2330. border: 1px solid #94c8f0;
  2331. }
  2332. .vst-textinput:focus {
  2333. border: 1px solid #008fee;
  2334. background-color: #D7F9FF;
  2335. color: #333;
  2336. }
  2337. .vst-textinput:disabled {
  2338. background-color: #f1f1f1;
  2339. }
  2340. .vst-textinput.console{
  2341. font-size: 0.8rem;
  2342. width: 630px;
  2343. height: 300px;
  2344. font-family: "Inconsolata", "Lucida Console", Monaco, monospace;
  2345. white-space: pre;
  2346. }
  2347. .vst-textinput.short {
  2348. width: 360px;
  2349. }
  2350. #advanced-options .console{
  2351. width: 833px;
  2352. height: 600px;
  2353. }
  2354. .generate {
  2355. color: #326b9b;
  2356. text-decoration: underline;
  2357. cursor: pointer;
  2358. margin-left: -3px;
  2359. padding: 0 3px;
  2360. }
  2361. .generate:hover {
  2362. background-color: #cc3366;
  2363. border-color: #cc3366;
  2364. color: #fff;
  2365. }
  2366. .generate:active {
  2367. background-color: #F7D616;
  2368. border-color: #F7D616;
  2369. }
  2370. .vst-advanced {
  2371. border-bottom: 0px solid #326b9b;
  2372. color: #326b9b;
  2373. font-size: 0.8rem;
  2374. padding: 2px 2px 0;
  2375. text-decoration: none;
  2376. text-transform: none;
  2377. }
  2378. .body-web .vst-advanced:focus {
  2379. background: none !inportant;
  2380. }
  2381. .login-box .vst-advanced:hover {
  2382. color: #cc3366;
  2383. background-color: transparent;
  2384. border-color: transparent;
  2385. font-size: 0.85em !important;
  2386. box-shadow: none !important;
  2387. background: none !important;
  2388. border: none !important
  2389. }
  2390. .vst-advanced:hover {
  2391. color: #fff;
  2392. background-color: #cc3366;
  2393. border-color: #cc3366;
  2394. text-decoration: none;
  2395. }
  2396. .login-box .vst-advanced:active {
  2397. color: #fff;
  2398. background-color: #F7D616;
  2399. border-color: #F7D616;
  2400. text-decoration: none;
  2401. font-size: 0.85em !important;
  2402. box-shadow: none !important;
  2403. background: none !important;
  2404. border: none !important
  2405. }
  2406. .vst-advanced:active {
  2407. font-size: unset;
  2408. }
  2409. .login-box .vst-advanced {
  2410. border-bottom: none;
  2411. color: #326b9b;
  2412. font-size: 10px;
  2413. padding: 2px !important;
  2414. text-decoration: none;
  2415. text-transform: uppercase;
  2416. font-size: 0.85em !important;
  2417. box-shadow: none !important;
  2418. background: none !important;
  2419. border: none !important
  2420. }
  2421. .vst-checkbox {
  2422. font-size: 0.85rem;
  2423. margin: 2px 6px 0 3px;
  2424. padding: 5px;
  2425. }
  2426. .lets-encrypt-note {
  2427. color: #89a40a !important;
  2428. font-style: italic;
  2429. font-weight: normal !important;
  2430. height: 30px;
  2431. padding-top: 10px;
  2432. vertical-align: top;
  2433. }
  2434. .additional-control {
  2435. margin-left: 17px;
  2436. color: #326b9b;
  2437. border-bottom: 0px solid #326b9b;
  2438. font-size: 0.8rem;
  2439. cursor: pointer;
  2440. text-transform: uppercase;
  2441. font-weight: 600;
  2442. padding: 2px 2px 0;
  2443. text-decoration: none;
  2444. }
  2445. .additional-control:hover {
  2446. background-color: #cc3366;
  2447. border-color: #cc3366;
  2448. color: #fff;
  2449. }
  2450. .additional-control:active {
  2451. color: #fff;
  2452. background-color: #aaa;
  2453. }
  2454. .additional-control.ftp-remove-user {
  2455. padding: 2px 0 0 0;
  2456. }
  2457. .additional-control.delete:hover,
  2458. .additional-control.ftp-remove-user:hover {
  2459. background-color: #FF3438;
  2460. border-color: #FF3438;
  2461. }
  2462. .additional-control.delete:active,
  2463. .additional-control.ftp-remove-user:active {
  2464. background-color: #FF5F5F;
  2465. border-color: #FF5F5F;
  2466. }
  2467. .additional-control.add:hover {
  2468. background-color: #3b9de8;
  2469. border-color: #3b9de8;
  2470. }
  2471. .additional-control.add:active{
  2472. background-color: #54a6e5;
  2473. border-color: #54a6e5;
  2474. }
  2475. .additional-control.remove-ns {
  2476. display: none;
  2477. }
  2478. .data .step-left {
  2479. padding-left: 50px;
  2480. }
  2481. .hide-password {
  2482. color: #aaa;
  2483. margin-left: -36px;
  2484. padding-left: 3px;
  2485. z-index: 1;
  2486. }
  2487. .toggle-psw-visibility-icon {
  2488. cursor: pointer;
  2489. opacity: 1;
  2490. margin: -2px;
  2491. }
  2492. .show-passwords-enabled-action {
  2493. opacity: 0.4;
  2494. }
  2495. .ftp-path-value,
  2496. .hint,
  2497. td.hint {
  2498. color: #777;
  2499. font-size: 0.8rem;
  2500. font-style: italic;
  2501. font-weight: normal;
  2502. }
  2503. .ftp-path-prefix { padding-top: 12px; font-size: 0.8rem; color: #555; }
  2504. .ui-dialog .ui-dialog-buttonpane button {
  2505. box-shadow: 0px 1px 4px rgba(0,0,0,0.2),
  2506. inset 0px 0px 1px #fff,
  2507. inset 0px 0px 3px rgba(255,255,255,0.5) !important;
  2508. }
  2509. .ui-dialog .ui-dialog-buttonpane {
  2510. margin-bottom: -6px !important;
  2511. padding: 0 !important;
  2512. }
  2513. .ui-button, .button, .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit, .vst-advanced {
  2514. filter:chroma(color=#000);
  2515. cursor: pointer;
  2516. border-radius: 3px 3px 3px 3px !important;
  2517. font-size: 1.05em !important;
  2518. font-weight: 500 !important;
  2519. padding: 2px 16px 3px 20px !important;
  2520. min-width: 100px !important;
  2521. height: 28px !important;
  2522. color: #30659d !important;
  2523. border: 1px solid #0083db !important;
  2524. background-color: #3b9de8 !important;
  2525. background: linear-gradient(to bottom, rgba(235,243,249,1) 0%,rgba(192,216,236,1) 51%,rgba(223,235,245,1) 100%) !important;
  2526. box-shadow: 0px 1px 3px rgba(0,0,0,0.25),
  2527. inset 0px 0px 1px #fff,
  2528. inset 0px 0px 3px rgba(255,255,255,0.5) !important;
  2529. text-shadow: 0px 1px 1px rgba(255,255,255,0.85) !important;
  2530. }
  2531. .ui-button:hover, .button:hover, .ui-button.cancel:hover, .button.cancel:hover,
  2532. .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit:hover,
  2533. .vst-advanced:hover, .to-top:hover, .to-shortcuts:hover {
  2534. color: #0077c6 !important;
  2535. text-shadow: 1px 1px rgba(255,255,255,0.5) !important;
  2536. border: 1px solid #54a6e5 !important;
  2537. background: linear-gradient(to bottom, rgba(241,248,253,1) 0%,rgba(190,221,246,1) 51%,rgba(227,240,251,1) 100%) !important;
  2538. box-shadow: 0px 1px 3px rgba(0,0,0,0.25),
  2539. inset 0px 0px 1px #fff,
  2540. inset 0px 0px 6px rgba(255,255,255,0.6) !important;
  2541. transition: 0.2s;
  2542. }
  2543. .ui-button:focus,.ui-button:active,
  2544. .button:active,.button:focus,.ui-button.cancel:focus,.ui-button.cancel:active,
  2545. .button.cancel:active,.button.cancel:focus,
  2546. .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit:active,
  2547. .vst-advanced:active,.to-top:focus, .to-shortcuts:focus {
  2548. border: 1px solid #0066b4 !important;
  2549. background: linear-gradient(to bottom, rgba(194,224,248,1) 0%, rgba(162,207,244,1) 51%, rgba(210,232,250,1) 100%) !important;
  2550. color: #517bab !important;
  2551. text-shadow: 0px -1px 2px rgba(255,255,255,0.85) !important;
  2552. box-shadow: 0px 1px 2px rgba(0,0,0,0.2),
  2553. inset 0px 0px 1px #fff,
  2554. inset -1px -1px 4px rgba(220,220,220,0.4) !important;
  2555. }
  2556. .ui-button-text-only {
  2557. border: 0px !important;
  2558. background: transparent !important;
  2559. box-shadow: none !important;
  2560. text-shadow: 0px 1px rgba(255,255,255,0.5);
  2561. }
  2562. .ui-dialog .ui-dialog-buttonpane button span.ui-button-text {
  2563. padding: 2px !important;
  2564. font-size: 0.85rem !important;
  2565. }
  2566. .ui-dialog .ui-button:hover span {
  2567. color: #046c98 !important;
  2568. }
  2569. .ui-button-text-only .selected {
  2570. font-weight: 600 !important;
  2571. }
  2572. .ui-button.cancel,
  2573. .button.cancel,
  2574. .to-top, .to-shortcuts {
  2575. color: #717171 !important;
  2576. border: 1px solid #aaaaaa !important;
  2577. background: linear-gradient(to bottom, rgba(250,250,250,1) 0%,rgba(230,230,230,1) 51%,rgba(242,242,242,1) 100%) !important;
  2578. }
  2579. .ui-button-text {
  2580. padding: 0px !important;
  2581. color: #30659d !important;
  2582. }
  2583. .ui-button.cancel:active,
  2584. .button.cancel:active,
  2585. .to-top:active, .to-shortcuts:active {
  2586. border: 1px solid #378ccd;
  2587. background-color: #378ccd;
  2588. }
  2589. a.button.cancel {
  2590. padding: 8px 38px;
  2591. text-transform: capitalize;
  2592. }
  2593. .ui-dialog button.cancel {
  2594. color: #000;
  2595. border: 1px solid #4b4b4b;
  2596. background-color: #4b4b4b;
  2597. }
  2598. .ui-button.danger:hover, .button.danger:hover {
  2599. background: linear-gradient(to bottom, #fbf2f1 0%,#f6b4ac 51%,#fde6e3 100%) !important;
  2600. color: #F4301A !important;
  2601. text-shadow: 0px 1px rgba(255,255,255,0.5) !important;
  2602. border: 1px solid #F27E71 !important;
  2603. }
  2604. .ui-button.danger:active, .button.danger:active, .ui-button.danger:focus, .button.danger:focus {
  2605. background: linear-gradient(to bottom, #fcd0ca 0%,#f5a69d 50%,#f9e3df 100%) !important;
  2606. color: #ce1500 !important;
  2607. text-shadow: 0px 1px 1px rgba(255,255,255,0.2),
  2608. 0px -1px 1px rgba(255,255,255,0.6) !important;
  2609. border: 1px solid #F4301A !important;
  2610. }
  2611. .ui-button span {
  2612. color: #fff;
  2613. }
  2614. .ui-button:hover span {
  2615. color: #4b4b4b !important;
  2616. }
  2617. .ui-button:active span {
  2618. color: #4b4b4b;
  2619. }
  2620. .ui-button.cancel span {
  2621. color: #777;
  2622. }
  2623. .ui-button:hover span {
  2624. color: #fff;
  2625. }
  2626. .ui-button:active span {
  2627. color: #fff;
  2628. }
  2629. .ui-dialog button.cancel span {
  2630. color: #777 !important;
  2631. }
  2632. .unlim-trigger {
  2633. cursor: pointer;
  2634. position: absolute;
  2635. margin-left: -32px;
  2636. margin-top: 16px;
  2637. z-index: 1;
  2638. font-size: 0.8rem;
  2639. }
  2640. .optional {
  2641. font-size: 0.8rem;
  2642. padding: 0 0 0 6px;
  2643. font-weight: normal;
  2644. }
  2645. .data-active b {
  2646. color: #3b9de8;
  2647. font-size: 0.8rem;
  2648. text-transform: uppercase;
  2649. }
  2650. .data-suspended b {
  2651. color: #A3A3A3;
  2652. font-size: 0.8rem;
  2653. font-weight: 600;
  2654. text-transform: uppercase;
  2655. }
  2656. .data-date {
  2657. font-weight: normal;
  2658. color: #777;
  2659. font-size: 0.8rem;
  2660. line-height: 23px;
  2661. }
  2662. .data-dotted {
  2663. vertical-align: top;
  2664. }
  2665. .mail-infoblock-td {
  2666. vertical-align: top;
  2667. }
  2668. .mail-infoblock {
  2669. font-size: 0.85rem;
  2670. color: #777;
  2671. border: 1px solid #d9d9d9;
  2672. padding: 6px 6px 6px 18px;
  2673. margin-top: 97px;
  2674. min-width: 320px;
  2675. overflow: hidden;
  2676. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2677. border-radius: 4px;
  2678. }
  2679. .mail-infoblock:hover {
  2680. overflow: visible;
  2681. }
  2682. .mail-infoblock td {
  2683. color: #505050;
  2684. font-size: 0.75rem;
  2685. height: 20px;
  2686. font-weight: normal;
  2687. }
  2688. .mail-infoblock td:first-child{
  2689. padding-right: 14px;
  2690. font-weight: 600;
  2691. }
  2692. .mail-infoblock div {
  2693. white-space: nowrap;
  2694. }
  2695. .mail-infoblock a {
  2696. color: #326b9b;
  2697. }
  2698. .mail-infoblock a:hover {
  2699. color: #cc3366;
  2700. }
  2701. .additional-info {
  2702. margin-top: 12px;
  2703. width: 400px;
  2704. }
  2705. .additional-info td {
  2706. font-size: 0.75rem;
  2707. height: 20px;
  2708. font-weight: normal;
  2709. line-height: 0.95rem;
  2710. min-width: 70px
  2711. }
  2712. .additional-info td.details {
  2713. padding-left: 20px !important;
  2714. }
  2715. :focus {outline:none;}
  2716. ::-moz-focus-inner {border:0;}
  2717. .login {
  2718. background-color: rgba(255,255,255,0.7);
  2719. box-shadow: 0px 8px 25px rgba(0,0,0, 0.3),
  2720. inset 0px 0px 2px rgba(255,255,255,1);
  2721. font-family: 'Exo', Tahoma, Arial, Helvetica, sans-serif;
  2722. margin: 0;
  2723. padding: 0;
  2724. text-align: left;
  2725. vertical-align: top;
  2726. width: 500px;
  2727. border-radius: 6px;
  2728. cursor: default;
  2729. }
  2730. .login .vst-input {
  2731. border-color: #5787c8;
  2732. }
  2733. .login .button {
  2734. font-size: 0.8rem !important;
  2735. }
  2736. .login-welcome {
  2737. font-size: 1.05rem !important;
  2738. font-weight: 500 !important;
  2739. padding-bottom: 30px !important;
  2740. font-weight: 600;
  2741. }
  2742. .page-title {
  2743. font-size: 1.4rem!important;
  2744. font-weight: 500!important;
  2745. padding-bottom: 30px!important;
  2746. letter-spacing: -0.01em;
  2747. cursor: default;
  2748. }
  2749. .qr-code {
  2750. border: 1px solid #cfcfcf;
  2751. border-radius: 4px;
  2752. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2753. }
  2754. .password-option {
  2755. margin-top: 15px;
  2756. }
  2757. .login a.error {
  2758. color: #BE5ABF;
  2759. font-size: 0.8rem;
  2760. }
  2761. .hestiacp {
  2762. color: #505050;
  2763. }
  2764. .hestiacp:hover {
  2765. color: #326b9b;
  2766. }
  2767. .hestiacp:active {
  2768. color: #cc3366;
  2769. }
  2770. .login-bottom {
  2771. height: 60px;
  2772. text-align: right;
  2773. vertical-align: top;
  2774. font-size: 0.75rem !important;
  2775. margin-right: 65px;
  2776. }
  2777. .l-unit.selected {
  2778. background-color: #f8f8f8;
  2779. color: #4b4b4b;
  2780. box-shadow: 0px 2px 10px rgba(150,150,150,0.20);
  2781. text-shadow: 0px 1px rgba(255,255,255,0.5);
  2782. border-left: 1px solid #ddd;
  2783. border-right: 1px solid #ddd;
  2784. }
  2785. .l-unit.selected:hover {
  2786. background-color: #fff5ce;
  2787. color: #4b4b4b;
  2788. box-shadow: 0px 2px 14px rgba(150,150,150,0.25);
  2789. text-shadow: 0px 1px rgba(255,255,255,0.6);
  2790. }
  2791. .l-unit.selected b,
  2792. .l-unit.selected strong {
  2793. color: #4b4b4b;
  2794. }
  2795. /* MAIN MENU COLLAPSED */
  2796. .collapsed .l-stat {
  2797. padding-top: 20px;
  2798. }
  2799. .collapsed .l-stat__col a {
  2800. height: 0;
  2801. min-height: 0;
  2802. overflow: hidden;
  2803. }
  2804. .collapsed .l-stat__col-title {
  2805. padding-top: 2px;
  2806. }
  2807. div.l-content.collapsed > div.l-separator:nth-of-type(2) {
  2808. margin-top: 93px;
  2809. position: fixed;
  2810. }
  2811. div.l-content.collapsed > div.l-separator:nth-of-type(4) {
  2812. margin-top: 138px;
  2813. position: fixed;
  2814. }
  2815. div.l-content.collapsed .l-sort {
  2816. margin-top: 94px;
  2817. }
  2818. .l-content > .units.l-center::before {
  2819. content: '';
  2820. display: block;
  2821. height: 225px;
  2822. }
  2823. .console-output {
  2824. font-family: "Inconsolata", "Lucida Console", Monaco, monospace;
  2825. font-size: 0.92rem;
  2826. color: #202020;
  2827. }
  2828. form#vstobjects {
  2829. padding-top: 240px;
  2830. }
  2831. form#vstobjects.suspended {
  2832. background-color: #fff;
  2833. padding-bottom: 30px;
  2834. }
  2835. #add-icon {
  2836. width: 45px;
  2837. height: 45px;
  2838. display: inline-block;
  2839. z-index: 3;
  2840. }
  2841. .l-sort__create-btn.restore #add-icon {
  2842. background-position: -378px -250px;
  2843. }
  2844. .l-sort__create-btn.edit #add-icon {
  2845. background-position: -378px -154px;
  2846. }
  2847. #tooltip {
  2848. background-color: #3b9de8;
  2849. border-radius: 15px;
  2850. bottom: 6px;
  2851. color: #fff;
  2852. font-size: 0.8rem;
  2853. font-weight: 600;
  2854. height: 26px;
  2855. left: 12px;
  2856. letter-spacing: 0;
  2857. line-height: 25px;
  2858. margin-left: 12px;
  2859. margin-top: 7px;
  2860. padding: 3px 14px 3px 27px;
  2861. position: absolute;
  2862. text-transform: uppercase;
  2863. white-space: nowrap;
  2864. word-break: keep-all;
  2865. z-index: -1;
  2866. }
  2867. .l-sort__create-btn:active #add-icon {
  2868. background-position: -425px -107px;
  2869. }
  2870. .l-sort__create-btn.restore:active #add-icon {
  2871. background-position: -425px -250px !important;
  2872. }
  2873. .l-sort__create-btn.edit:active #add-icon {
  2874. background-position: -425px -154px !important;
  2875. }
  2876. .l-sort__create-btn.edit:hover #tooltip {
  2877. background-color: #3b9de8;
  2878. }
  2879. .l-sort__create-btn.edit:active #tooltip {
  2880. background-color: #3BF0E6 !important;
  2881. }
  2882. .l-sort__create-btn:active #tooltip {
  2883. background-color: #54a6e5;
  2884. }
  2885. .pill {
  2886. border-radius: 12px;
  2887. display: inline-block;
  2888. text-shadow: 0px 1px 2px rgba(0,0,0,0.4);
  2889. }
  2890. .pill.usage {
  2891. margin-top: 8px;
  2892. font-size: 0.75rem;
  2893. padding: 4px;
  2894. padding-left: 8px;
  2895. padding-right: 8px;
  2896. margin-right: 10px;
  2897. line-height: 0.75rem;
  2898. box-shadow: 0px 1px 1px rgba(0,0,0,0.2), inset 0px 1px 0px rgba(0,0,0,0.08);
  2899. background-color: rgba(255,255,255,0.75);
  2900. font-weight: 500;
  2901. border: 1px solid rgba(255,255,255,0.75);
  2902. text-shadow: 0px 1px 1px rgba(255,255,255,0.6);
  2903. color: #30659d;
  2904. }
  2905. .pill.usage b { color: #30659d; }
  2906. .badge {
  2907. display: inline-block;
  2908. min-width: 24px;
  2909. min-height: 24px;
  2910. line-height: 24px;
  2911. border-radius: 50%;
  2912. font-weight: 700;
  2913. font-size: 0.75rem;
  2914. box-shadow: 0px 1px 2px rgba(70,70,70,0.5),
  2915. inset 0px 2px 2px #fff;
  2916. text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
  2917. border: 1px solid #b8b8b8 !important;
  2918. }
  2919. .badge.large {
  2920. min-width: 48px;
  2921. min-height: 48px;
  2922. line-height: 48px;
  2923. }
  2924. .badge.raised {
  2925. background: radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.05) 100%);
  2926. }
  2927. .l-unit--suspended .badge {
  2928. background: #eaeaea !important;
  2929. color: #c0c0c0 !important;
  2930. text-shadow: 0px -1px #fafafa !important;
  2931. box-shadow: 0px 1px 2px rgba(120,120,120,0.3) !important;
  2932. }
  2933. .pill.gray, .badge.gray {
  2934. border: 1px solid #fff;
  2935. background-color: #eaeaea;
  2936. color: #6c6c6c;
  2937. text-shadow: 0px 1px #fafafa !important;
  2938. }
  2939. .pill.blue, .badge.blue {
  2940. border: 1px solid #fff;
  2941. background-color: #316198;
  2942. color: #fff;
  2943. }
  2944. .pill.purple, .badge.purple {
  2945. border: 1px solid #fff;
  2946. background-color: #8e2fca;
  2947. color: #fff;
  2948. }
  2949. .pill.teal, .badge.teal {
  2950. border: 1px solid #fff;
  2951. background-color: #33cccc;
  2952. color: #fff;
  2953. }
  2954. .pill.maroon, .badge.maroon {
  2955. border: 1px solid #fff;
  2956. background-color: #cc3366;
  2957. color: #fff;
  2958. }
  2959. .pill.red, .badge.red {
  2960. border: 1px solid #fff;
  2961. background-color: #ff3333;
  2962. color: #fff;
  2963. }
  2964. .pill.orange, .badge.orange {
  2965. border: 1px solid #fff;
  2966. background-color: #f6a800;
  2967. color: #fff;
  2968. }
  2969. .pill.green, .badge.green {
  2970. border: 1px solid #fff;
  2971. background-color: #53ba55;
  2972. color: #fff;
  2973. }
  2974. .pill.lightblue, .badge.lightblue {
  2975. border: 1px solid #fff;
  2976. background-color: #6eb6f0;
  2977. color: #fff;
  2978. }
  2979. .status-icon.large {
  2980. font-size: 1rem;
  2981. }
  2982. .status-icon.yellow, .status-icon.yellow:hover {
  2983. color: #f3e72c;
  2984. }
  2985. .status-icon.teal, .status-icon.teal:hover {
  2986. color: #33cccc;
  2987. }
  2988. .status-icon.purple, .status-icon.purple:hover {
  2989. color: #8e2fca;
  2990. }
  2991. .status-icon.maroon, .status-icon.maroon:hover {
  2992. color: #cc3366;
  2993. }
  2994. .status-icon.red, .status-icon.red:hover {
  2995. color: #ff3333;
  2996. }
  2997. .status-icon.green, .status-icon.green:hover {
  2998. color: #53ba55;
  2999. }
  3000. .status-icon.orange, .status-icon.orange:hover {
  3001. color: #ffc043;
  3002. }
  3003. .status-icon.lightblue, .status-icon.lightblue:hover {
  3004. color: #6eb6f0;
  3005. }
  3006. .status-icon.highlight, .status-icon.highlight:hover {
  3007. color: #323232;
  3008. }
  3009. .status-icon.blue, .status-icon.blue:hover {
  3010. color: #326b9b;
  3011. }
  3012. .status-icon.dim {
  3013. color: #ddd;
  3014. text-shadow: 1px 1px rgba(255,255,255,0.3);
  3015. }
  3016. .status-icon.dim {
  3017. color: #ddd;
  3018. text-shadow: 1px 1px rgba(255,255,255,0.3);
  3019. }
  3020. .l-unit--suspended .status-icon.dim {
  3021. color: #c0c0c0 !important;
  3022. text-shadow: 0px !important;
  3023. }
  3024. .noselect {
  3025. -webkit-touch-callout: none;
  3026. -webkit-user-select: none;
  3027. -khtml-user-select: none;
  3028. -moz-user-select: none;
  3029. -ms-user-select: none;
  3030. -user-select: none;
  3031. }
  3032. .search-input {
  3033. background-color: #fff;
  3034. border: 1px solid #ddd;
  3035. height: 26px;
  3036. line-height: 28px;
  3037. padding-left: 7px;
  3038. float: left;
  3039. width: 120px;
  3040. border-top-left-radius: 4px;
  3041. border-bottom-left-radius: 4px;
  3042. border-right: 0;
  3043. /* visibility: hidden;*/
  3044. -webkit-transition: width .2s ease-out;
  3045. -moz-transition: width .2s ease-out;
  3046. -o-transition: width .2s ease-out;
  3047. transition: width .2s ease-out;
  3048. }
  3049. .lang-ru .search-input{
  3050. width: 74px;
  3051. }
  3052. .lang-ru .search-input.activated{
  3053. width: 70px;
  3054. }
  3055. .search-input.activated{
  3056. width: 120px;
  3057. visibility: visible;
  3058. }
  3059. .search-input:focus {
  3060. /* Adjusts elements of search box when focused/selected */
  3061. }
  3062. .lang-fr .search-input, .lang-de .search-input, .lang-nl .search-input {
  3063. width: 100px;
  3064. }
  3065. .lang-de .l-sort-toolbar .l-select {
  3066. max-width: 140px;
  3067. }
  3068. .float-left {
  3069. float: left;
  3070. }
  3071. .float-right {
  3072. float: right;
  3073. }
  3074. .display-inline-block {
  3075. display: inline-block;
  3076. }
  3077. .width-100p {
  3078. width: 100%;
  3079. }
  3080. .l-sort-toolbar table td {
  3081. float: left;
  3082. margin-left: 10px;
  3083. }
  3084. .l-sort-toolbar__search-box {
  3085. float: right !important;
  3086. padding-right: 0 !important;
  3087. }
  3088. .ui-dialog .ui-dialog-buttonpane button:nth-of-type(2) {
  3089. -background-color: #dfdedd;
  3090. }
  3091. .shortcuts {
  3092. background: rgba(50,50,50,0.93);
  3093. display: inline-block;
  3094. position: fixed;
  3095. left: 50%;
  3096. bottom: 0;
  3097. color: #eee;
  3098. width: 800px;
  3099. border: 1px solid rgba(255,255,255,0.7);
  3100. border-bottom: 0px;
  3101. font-size: 0.8rem;
  3102. z-index: 120;
  3103. transform: translate(-50%, 0);
  3104. border-top-left-radius: 6px;
  3105. border-top-right-radius: 6px;
  3106. box-shadow: 0px 4px 30px rgba(0,0,0,0.5);
  3107. line-height: 0.9rem;
  3108. cursor: default;
  3109. }
  3110. .shortcuts .header {
  3111. border-bottom: 1px solid #606060;
  3112. height: 43px;
  3113. }
  3114. .shortcuts .title {
  3115. text-transform: uppercase;
  3116. color: #ff3478;
  3117. padding: 7px 0 7px 14px;
  3118. float: left;
  3119. font-size: 0.85rem;
  3120. letter-spacing: -0.01em;
  3121. }
  3122. .shortcuts .close {
  3123. cursor: pointer;
  3124. float: right;
  3125. height: 32px;
  3126. padding-top: 11px;
  3127. width: 46px;
  3128. }
  3129. .shortcuts .close:hover {
  3130. color: #db0000;
  3131. }
  3132. .shortcuts .close:active {
  3133. color: #a60000;
  3134. }
  3135. .shortcuts .close .fas {
  3136. font-size: 0.8rem;
  3137. line-height: 1.4rem;
  3138. }
  3139. .shortcuts ul {
  3140. list-style-type: none;
  3141. padding: 30px 20px;
  3142. float: left;
  3143. width: 360px;
  3144. }
  3145. .shortcuts ul li {
  3146. padding: 5px 20px;
  3147. }
  3148. .shortcuts ul li.step-top {
  3149. padding-top: 30px;
  3150. }
  3151. .shortcuts ul li span {
  3152. color: #ff3478;
  3153. display: inline-block;
  3154. font-weight: 600;
  3155. padding: 0 20px 0 0;
  3156. text-align: right;
  3157. }
  3158. .shortcuts ul li span.bigger {
  3159. font-size: 18px;
  3160. }
  3161. .description {
  3162. font-weight: normal;
  3163. line-height: 25px;
  3164. padding-bottom: 45px;
  3165. margin-left: 50px;
  3166. }
  3167. .description ul{
  3168. margin-top: 15px;
  3169. list-style: none;
  3170. padding-left: 0;
  3171. }
  3172. .description li{
  3173. margin: 10px 0;
  3174. }
  3175. .description a {
  3176. line-height: 30px;
  3177. text-decoration: underline;
  3178. color: #326b9b;
  3179. }
  3180. .description a.purchase {
  3181. color: #FFF;
  3182. background-color: #3b9de8;
  3183. border: none;
  3184. border-radius: 3px;
  3185. font-size: 0.8rem;
  3186. font-weight: 600;
  3187. padding: 7px 15px;;
  3188. text-transform: capitalize;
  3189. text-decoration: none;
  3190. }
  3191. .description a.cancel {
  3192. background-color: #999;
  3193. border: none;
  3194. border-radius: 3px;
  3195. color: #fff;
  3196. font-size: 0.8rem;
  3197. font-weight: 600;
  3198. padding: 7px 15px;
  3199. text-transform: capitalize;
  3200. text-decoration: none;
  3201. }
  3202. .description a.cancel:hover {
  3203. background-color: #326b9b;
  3204. }
  3205. .description a.cancel:active {
  3206. background-color: #5f9491;
  3207. }
  3208. .description.cancel-success {
  3209. color: #8fac0a;
  3210. font-weight: 600;
  3211. }
  3212. .description span {
  3213. font-style: italic;
  3214. line-height: 45px;
  3215. padding-top: 20px;
  3216. }
  3217. .description .twoco {
  3218. font-style: italic;
  3219. line-height: 15px;
  3220. font-size: 0.8rem;
  3221. }
  3222. .ui-dialog {
  3223. font-family: 'Exo', Arial, Helvetica, sans-serif !important;
  3224. font-weight: 500 !important;
  3225. background-color: rgba(255,255,255,0.9) !important;
  3226. box-shadow: inset 0px 1px 3px rgba(0,0,0,0.25),
  3227. 0 8px 40px 0 rgba(0, 0, 0, 0.35) !important;
  3228. border-radius: 6px !important;
  3229. border: 1px solid rgba(255,255,255,0.98) !important;
  3230. text-align: center !important;
  3231. }
  3232. .ui-dialog .ui-dialog-content {
  3233. color: #535353 !important;
  3234. padding: 10px 26px 30px !important;
  3235. }
  3236. .ui-dialog .ui-dialog-title {
  3237. margin: 0px !important;
  3238. color: #305ba9 !important;
  3239. font-size: 1.2em !important;
  3240. text-transform: none !important;
  3241. letter-spacing: -0.01em !important;
  3242. text-align: center !important;
  3243. float: none !important;
  3244. font-weight: 500;
  3245. }
  3246. .ui-dialog-buttonpane {
  3247. border-color: #fff!important;
  3248. box-shadow: inset 0px 0px 2px rgba(0,0,0,0.25);
  3249. border-bottom: 1px solid #fff !important;
  3250. background: #e0e0e0;
  3251. margin-top: 0px !important;
  3252. padding-top: 0px !important;
  3253. }
  3254. .ui-widget {
  3255. font-size: 0.85rem !important;
  3256. }
  3257. .ui-widget-overlay {
  3258. opacity: 0.8 !important;
  3259. background: rgba(10,10,10,0.9) !important;
  3260. }
  3261. .helper-container {
  3262. float: right;
  3263. margin-bottom: -450px;
  3264. margin-top: 410px;
  3265. margin-right: 22px;
  3266. padding-top: 0px;
  3267. width: 600px;
  3268. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  3269. border: 1px solid #cfcfcf;
  3270. border-radius: 4px;
  3271. }
  3272. .context-helper {
  3273. text-transform: uppercase;
  3274. color: #777;
  3275. font-size: 0.8rem;
  3276. cursor: pointer;
  3277. font-weight: 600;
  3278. float: right;
  3279. }
  3280. .context-helper:hover {
  3281. color: #3b9de8;
  3282. }
  3283. .context-helper:active {
  3284. color: #cc3366;
  3285. }
  3286. .cron-helper-tabs {
  3287. border: none !important;
  3288. font-family: 'Exo', Arial, Helvetica, sans-serif !important;
  3289. }
  3290. .cron-helper-tabs a {
  3291. color: #777;
  3292. font-size: 0.8rem;
  3293. font-weight: 600;
  3294. line-height: 30px;
  3295. padding: 0 12px;
  3296. text-transform: uppercase;
  3297. }
  3298. .cron-helper-tabs a:hover {
  3299. color: #cc3366;
  3300. }
  3301. .cron-helper-tabs a:active {
  3302. color: #3b9de8;
  3303. }
  3304. .cron-helper-tabs .ui-tabs-selected a {
  3305. color: #cc3366;
  3306. }
  3307. .cron-helper-tabs select.short {
  3308. background-position: -388px -604px;
  3309. min-width: 30px;
  3310. width: 70px;
  3311. }
  3312. .cron-helper-tabs p {
  3313. color: #777;
  3314. font-size: 0.8rem;
  3315. }
  3316. .cron-helper-tabs p span{
  3317. padding-right: 15px;
  3318. padding-left: 25px;
  3319. }
  3320. .cron-helper-tabs p span.first{
  3321. display: inline-block;
  3322. padding-right: 15px;
  3323. width: 100px;
  3324. padding-left: 0;
  3325. }
  3326. .cron-helper-tabs .button {
  3327. width: auto;
  3328. background-color: #3b9de8;
  3329. border: 1px solid #3b9de8;
  3330. text-transform: capitalize;
  3331. }
  3332. .cron-helper-tabs .button:hover {
  3333. background-color: #5BD8CF;
  3334. border: 1px solid #5BD8CF;
  3335. }
  3336. .cron-helper-tabs .button:active {
  3337. background-color: #4FBCB4;
  3338. border: 1px solid #4FBCB4;
  3339. }
  3340. .context-helper-close {
  3341. cursor: pointer;
  3342. float: right;
  3343. height: 32px;
  3344. padding-top: 11px;
  3345. width: 46px;
  3346. filter: contrast(50%);
  3347. }
  3348. .context-helper-close:hover {
  3349. background-color: #aaa;
  3350. filter: none;
  3351. }
  3352. .context-helper-close:active {
  3353. background-color: #999;
  3354. filter: none;
  3355. }
  3356. .server-info {
  3357. /* empty element */
  3358. }
  3359. .server-info-output {
  3360. color: #cc3366;
  3361. padding: 10px 0 20px 20px;
  3362. background: #fff;
  3363. }
  3364. .server-info-data {
  3365. margin-left: 100px;
  3366. margin-top: -20px;
  3367. }
  3368. .server-info-name {
  3369. margin-top: 8px;
  3370. margin-bottom: 24px;
  3371. font-weight: 400;
  3372. }
  3373. .server-info-output {
  3374. color: #cc3366;
  3375. padding: 10px 0 20px 20px;
  3376. background: #fff;
  3377. }
  3378. .icon-server-info {
  3379. font-size: 5.2em;
  3380. float: left;
  3381. margin-right: 32px;
  3382. margin-left: 2px;
  3383. }
  3384. .userlist-email {
  3385. font-size: 0.75rem;
  3386. white-space: nowrap;
  3387. text-overflow: ellipsis;
  3388. }
  3389. .userlist-username {
  3390. font-size: 1.0em;
  3391. margin-top: -2px;
  3392. line-height: 1.2rem;
  3393. }
  3394. .lang-es .userlist-email {
  3395. width: 270px;
  3396. }
  3397. @media screen and (max-width: 950px) {
  3398. .helper-container {
  3399. display: none;
  3400. }
  3401. }
  3402. meter {
  3403. /* Reset the default appearance */
  3404. -webkit-appearance: none;
  3405. -moz-appearance: none;
  3406. appearance: none;
  3407. margin: 0 auto 1em;
  3408. width: 373px;
  3409. background-color: #e7e7e7;
  3410. height: 3px;
  3411. border-bottom-left-radius: 5px;
  3412. border-bottom-right-radius: 5px;
  3413. margin-left: 3px;
  3414. box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
  3415. }
  3416. meter[value="1"] { background: red; }
  3417. meter[value="2"] { background: orange; }
  3418. meter[value="3"] { background: yellow; }
  3419. meter[value="4"] { background: green; }
  3420. /* Webkit based browsers */
  3421. meter[value="1"]::-webkit-meter-optimum-value { background: red; }
  3422. meter[value="2"]::-webkit-meter-optimum-value { background: orange; }
  3423. meter[value="3"]::-webkit-meter-optimum-value { background: yellow; }
  3424. meter[value="4"]::-webkit-meter-optimum-value { background: green; }
  3425. /* Gecko based browsers */
  3426. meter[value="1"]::-moz-meter-bar { background: red; }
  3427. meter[value="2"]::-moz-meter-bar { background: orange; }
  3428. meter[value="3"]::-moz-meter-bar { background: yellow; }
  3429. meter[value="4"]::-moz-meter-bar { background: green; }