styles.css 75 KB

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