styles.min.css 78 KB

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