styles.min.css 78 KB

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