styles.min.css 81 KB

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