styles.min.css 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816
  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. border: 1px solid #fff;
  978. }
  979. .alert i.fas {
  980. border-radius: 1rem;
  981. font-size: 1.4rem;
  982. font-weight: 600;
  983. height: 2rem;
  984. left: 0.6rem;
  985. line-height: 2rem;
  986. position: absolute;
  987. text-align: center;
  988. top: 0.8rem;
  989. width: 2rem;
  990. }
  991. .alert.alert-with-icon {
  992. padding-left: 3.2rem;
  993. min-height: 3.5rem;
  994. }
  995. .alert.alert-info {
  996. color: #fff;
  997. text-shadow: 0px 1px rgba(0,0,0,0.45);
  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 4px 10px 0 rgba(20, 20, 20, 0.3);
  1243. border-radius: 8px;
  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: 28px;
  1711. margin-bottom: 10px;
  1712. font-weight: 500;
  1713. letter-spacing: -0.02em;
  1714. }
  1715. .l-unit__servername {
  1716. color: #414141;
  1717. font-size: 28px;
  1718. margin-bottom: 10px;
  1719. font-weight: 300;
  1720. letter-spacing: -0.02em;
  1721. }
  1722. .l-unit__stats.separate,
  1723. .l-unit__name.separate {
  1724. padding-bottom: 15px;
  1725. }
  1726. .l-unit__name.small {
  1727. font-size: 16px;
  1728. }
  1729. .l-unit__name.small-2 {
  1730. font-size: 20px;
  1731. }
  1732. .l-unit__name span {
  1733. color: #999;
  1734. margin-left: 30px;
  1735. font-size: 0.85rem;
  1736. font-style: italic;
  1737. }
  1738. .l-unit__name span:first-of-type {
  1739. margin-left: 39px;
  1740. }
  1741. .l-unit__name b {
  1742. font-weight: normal;
  1743. font-style: italic;
  1744. }
  1745. .l-unit__ip {
  1746. margin-bottom: 26px;
  1747. font-size: 0.8rem;
  1748. color: #383838;
  1749. }
  1750. .l-unit__ip span {
  1751. padding-left: 3px;
  1752. padding-right: 3px;
  1753. }
  1754. .display-ip {
  1755. font-size: 0.8rem;
  1756. }
  1757. .display-ip span {
  1758. padding-left: 3px;
  1759. padding-right: 3px;
  1760. }
  1761. .l-unit__stats {
  1762. margin-bottom: 10px;
  1763. margin-left: 12%;
  1764. }
  1765. .l-unit__stats:hover {
  1766. border-left: 1px solid transparent !important;
  1767. border-right: 1px solid transparent !important;
  1768. box-shadow: none !important;
  1769. background: none !important;
  1770. }
  1771. .l-unit__stats table {
  1772. width: 100%;
  1773. table-layout: fixed;
  1774. }
  1775. .l-unit__stats td {
  1776. height: 22px;
  1777. padding-bottom: 3px;
  1778. vertical-align: top;
  1779. }
  1780. .l-unit__stat-col--left a, .l-unit__stat-col--left a:visited {
  1781. color: #353535;
  1782. }
  1783. .l-unit__stat-col--left a:hover {
  1784. color: #4c8bbe;
  1785. }
  1786. .l-unit__stat-col--left {
  1787. float: left;
  1788. width: 110px;
  1789. }
  1790. .l-unit__stat-col--left.border {
  1791. border-left: 1px solid #ebebeb;
  1792. }
  1793. .l-unit__stat-col--left.border-clear {
  1794. border-left: 1px solid transparent;
  1795. }
  1796. .l-unit__stat-col--left.super-compact {
  1797. width: 50px;
  1798. }
  1799. .l-unit__stat-col--left.compact {
  1800. width: 60px;
  1801. }
  1802. .l-unit__stat-col--left.compact-1 {
  1803. width: 70px;
  1804. }
  1805. .l-unit__stat-col--left.compact-2 {
  1806. width: 80px;
  1807. }
  1808. .l-unit__stat-col--left.compact-3 {
  1809. width: 90px;
  1810. }
  1811. .l-unit__stat-col--left.compact-4 {
  1812. width: 130px;
  1813. }
  1814. .l-unit__stat-col--left.compact-5 {
  1815. width: 160px;
  1816. }
  1817. .l-unit__stat-col--left.wide {
  1818. width: 190px;
  1819. }
  1820. .l-unit__stat-col--left.wide-2 {
  1821. width: 230px;
  1822. }
  1823. .l-unit__stat-col--left.wide-3 {
  1824. width: 250px;
  1825. }
  1826. .l-unit__stat-col--left.wide-4 {
  1827. width: 320px;
  1828. }
  1829. .l-unit__stat-col--left.wide-5 {
  1830. width: 350px;
  1831. }
  1832. .l-unit__stat-col--left.wide-6 {
  1833. width: 440px;
  1834. }
  1835. .l-unit__stat-col--left.wide-7 {
  1836. width: 550px;
  1837. }
  1838. .l-unit__stat-col--left.small-2 {
  1839. line-height: 11px;
  1840. }
  1841. .l-unit__stat-col--left.tiny {
  1842. font-size: 0.8rem;
  1843. }
  1844. .l-unit__stat-col--left.tiny b {
  1845. font-size: 18px;
  1846. }
  1847. .l-unit__stat-col--right {
  1848. float: left;
  1849. max-width: 152px;
  1850. }
  1851. .l-unit-toolbar__col--left {
  1852. float: left;
  1853. margin-left: -15px;
  1854. margin-top: 0;
  1855. padding-bottom: 0px;/* 8px */
  1856. padding-left: 15px;
  1857. padding-top: 15px;
  1858. width: 30px;
  1859. cursor: pointer;
  1860. display: none;
  1861. }
  1862. .l-unit-toolbar__col--right {
  1863. float: right;
  1864. }
  1865. body.mobile .l-unit-toolbar__col--right {
  1866. display: block;
  1867. }
  1868. .l-unit-toolbar .shortcut {
  1869. display: none;
  1870. }
  1871. .units.active .l-unit.focus .l-unit-toolbar .shortcut {
  1872. display: block;
  1873. background-color: #69a298;
  1874. border-radius: 13px;
  1875. color: #fff;
  1876. cursor: pointer;
  1877. display: block;
  1878. font-size: 0.8rem;
  1879. font-weight: 600;
  1880. line-height: 25px;
  1881. padding-left: 7px;
  1882. padding-right: 9px;
  1883. position: absolute;
  1884. right: 3px;
  1885. top: 3px;
  1886. }
  1887. .units.active .l-unit.focus .l-unit-toolbar .shortcut.delete {
  1888. font-size: 10px;
  1889. padding-left: 2px;
  1890. padding-right: 5px;
  1891. text-transform: capitalize;
  1892. }
  1893. .units.active .l-unit.focus .l-unit-toolbar .shortcut.enter {
  1894. font-size: 17px;
  1895. padding-left: 1px;
  1896. padding-right: 7px;
  1897. }
  1898. .units.active .l-unit.focus .l-unit-toolbar i {
  1899. background: none;
  1900. }
  1901. .l-unit__stat-col.volume {
  1902. font-size: 0.8rem;
  1903. line-height: 17px;
  1904. float: right;
  1905. }
  1906. .actions-panel__col {
  1907. display: inline-block;
  1908. min-width: 18px;
  1909. text-transform: uppercase;
  1910. }
  1911. .actions-panel__col a {
  1912. color: #777;
  1913. font-weight: 600;
  1914. font-size: 0.9rem;
  1915. display: inline-block;
  1916. cursor: pointer;
  1917. }
  1918. .lang-ru .actions-panel__col a {
  1919. font-size: 0.9rem;
  1920. padding-top: 1px;
  1921. }
  1922. .lang-tw .actions-panel__col a {
  1923. font-size: 0.9rem;
  1924. font-weight: normal;
  1925. line-height: 29px;
  1926. }
  1927. .lang-ar .actions-panel__col a {
  1928. font-size: 0.9rem;
  1929. font-weight: normal;
  1930. line-height: 31px;
  1931. }
  1932. .icon-pad-right {
  1933. margin-right: 5px;
  1934. }
  1935. .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 {
  1936. display: inline-block;
  1937. vertical-align: middle;
  1938. }
  1939. .l-icon-down-arrow {
  1940. width: 7px;
  1941. height: 15px;
  1942. background-position: -280px -128px;
  1943. }
  1944. .l-icon-up-arrow {
  1945. width: 7px;
  1946. height: 15px;
  1947. background-position: -299px -129px;
  1948. }
  1949. .l-icon-star {
  1950. width: 36px;
  1951. height: 36px;
  1952. background-position: -216px 560px;
  1953. cursor: pointer;
  1954. visibility: hidden;
  1955. }
  1956. .l-unit--starred .l-icon-star {
  1957. background-position: -174px 560px;
  1958. visibility: visible;
  1959. }
  1960. .selected .l-icon-star {
  1961. filter: contrast(70%);
  1962. -webkit-filter: contrast(70%);
  1963. }
  1964. .units.compact .l-icon-star {
  1965. margin-top: -14px;
  1966. }
  1967. .l-icon-star:hover {
  1968. background-position: 0px 560px;
  1969. }
  1970. .l-icon-star:active {
  1971. -background-position: -174px 560px;
  1972. background-position: -80px 562px;
  1973. }
  1974. .l-unit:hover .l-icon-star {
  1975. visibility: visible;
  1976. }
  1977. .l-icon-to-top {
  1978. width: 35px;
  1979. height: 35px;
  1980. background-position: -330px -68px;
  1981. }
  1982. .l-icon-to-top:hover {
  1983. background-position: -366px -68px;
  1984. }
  1985. .l-icon-to-top:active {
  1986. background-position: -402px -68px;
  1987. }
  1988. .l-icon-shortcuts {
  1989. width: 35px;
  1990. height: 35px;
  1991. background-position: -240px -281px;
  1992. border-radius: 18px;
  1993. }
  1994. .l-icon-shortcuts:hover {
  1995. background-position: -160px -281px;
  1996. }
  1997. .l-icon-shortcuts:active {
  1998. background-position: -198px -281px;
  1999. }
  2000. body.mobile .l-icon-to-top,
  2001. body.mobile .l-icon-shortcuts {
  2002. display: none;
  2003. }
  2004. .l-icon-star-orange {
  2005. width: 13px;
  2006. height: 13px;
  2007. background-position: -178px -97px;
  2008. }
  2009. .l-icon-star-blue {
  2010. width: 13px;
  2011. height: 13px;
  2012. background-position: -134px -97px;
  2013. }
  2014. .media-top {
  2015. vertical-align: top;
  2016. }
  2017. .l-unit__stat-cols {
  2018. padding-right: 10px;
  2019. }
  2020. .l-unit__stat-cols.last {
  2021. padding-right: 0;
  2022. }
  2023. .l-unit__stat-cols.graph {
  2024. width: 200px;
  2025. }
  2026. .l-unit__stat-cols.tiny {
  2027. font-size:11px;
  2028. line-height: 19px;
  2029. }
  2030. .l-percent {
  2031. border-bottom: 1px dotted #ccc;
  2032. margin-top: 1px;
  2033. width: 200px;
  2034. }
  2035. .l-percent__fill {
  2036. background-color: #aacc0d;
  2037. height: 3px;
  2038. position: relative;
  2039. bottom: -1px;
  2040. }
  2041. .to-top {
  2042. display: inline-block;
  2043. position: fixed;
  2044. top: 90%;
  2045. right: 4%;
  2046. border: 1px solid #ddd;
  2047. padding: 8px;
  2048. border-radius: 50%;
  2049. background-color: #eee;
  2050. text-shadow: 1px 1px #fff;
  2051. box-shadow: 0px 2px 4px rgba(120,120,120,0.25),
  2052. inset 0px 0px 1px rgba(255,255,255,0.9);
  2053. z-index: 200;
  2054. width: 16px;
  2055. height: 16px;
  2056. text-align: center;
  2057. }
  2058. .to-shortcuts {
  2059. display: inline-block;
  2060. position: fixed;
  2061. top: 90%;
  2062. right: 8%;
  2063. border: 1px solid #ddd;
  2064. padding: 8px;
  2065. border-radius: 50%;
  2066. background-color: #eee;
  2067. text-shadow: 1px 1px #fff;
  2068. box-shadow: 0px 2px 4px rgba(120,120,120,0.25),
  2069. inset 0px 0px 1px rgba(255,255,255,0.9);
  2070. z-index: 200;
  2071. height: 16px;
  2072. width: 16px;
  2073. text-align: center;
  2074. }
  2075. /*
  2076. #vstobjects {
  2077. margin-top: -1px;
  2078. }
  2079. */
  2080. #vstobjects .l-center {
  2081. padding-top: 20px;
  2082. padding-bottom: 30px;
  2083. font-size: 0.8rem;
  2084. }
  2085. .timer-container {
  2086. margin-top: 4px;
  2087. }
  2088. .timer-container .refresh-timer {
  2089. border: 2px solid #9f9f9f;
  2090. border-radius: 14px;
  2091. height: 14px;
  2092. width: 14px;
  2093. float: left;
  2094. margin: 2px 10px 0 0;
  2095. }
  2096. .timer-container .refresh-timer.paused {
  2097. border: 2px solid #9f9f9f;
  2098. }
  2099. .timer-container .refresh-timer.paused .loader-half.right,
  2100. .timer-container .refresh-timer.paused .loader-half.dark {
  2101. background-color: #9d9f9f;
  2102. }
  2103. .timer-container .loader-half {
  2104. border-radius: 0 14px 14px 0;
  2105. height: 14px;
  2106. width: 7px;
  2107. float: left;
  2108. }
  2109. .timer-container .loader-half.left {
  2110. border-radius: 14px 0 0 14px;
  2111. background-color: #fff;
  2112. }
  2113. .timer-container .loader-half.right {
  2114. margin-left: 7px;
  2115. background-color: #9f9f9f;
  2116. }
  2117. .timer-container .loader-half.dark {
  2118. background-color: #9f9f9f;
  2119. }
  2120. .timer-container .movement {
  2121. float: left;
  2122. width: 14px;
  2123. height: 14px;
  2124. position: absolute;
  2125. }
  2126. .timer-container .movement.left {
  2127. z-index: 10;
  2128. }
  2129. .timer-container .movement.right {
  2130. transform: rotate(180deg);
  2131. -webkit-transform: rotate(180deg);
  2132. }
  2133. .timer-container .timer-button {
  2134. cursor: pointer;
  2135. text-decoration: underline;
  2136. margin: 7px 0 0 38px;
  2137. width: 15px;
  2138. float: left;
  2139. height: 10px;
  2140. }
  2141. .timer-container .timer-button.pause {
  2142. background: url(/images/pause.png) no-repeat ;
  2143. }
  2144. .timer-container .timer-button.play {
  2145. background: url(/images/start.png) no-repeat;
  2146. }
  2147. .uppercase {
  2148. text-transform: uppercase;
  2149. }
  2150. .title b,
  2151. .title {
  2152. color: #cc3366;
  2153. font-size: 0.8rem;
  2154. font-weight: 600;
  2155. padding: 0 30px 0px 73px;
  2156. line-height: 30px;
  2157. text-transform: uppercase;
  2158. }
  2159. .title {
  2160. display: inline-block;
  2161. float: left;
  2162. }
  2163. /* form styles */
  2164. .vst-error {
  2165. color: #BE5ABF;
  2166. font-weight: 600;
  2167. overflow: hidden;
  2168. max-width: 500px;
  2169. text-overflow: ellipsis;
  2170. white-space: nowrap;
  2171. }
  2172. .vst-ok {
  2173. color: #3b9de8;
  2174. overflow: hidden;
  2175. max-width: 500px;
  2176. text-overflow: ellipsis;
  2177. white-space: nowrap;
  2178. }
  2179. .l-unit-toolbar__buttonstrip .vst-ok, .l-unit-toolbar__buttonstrip .vst-error {
  2180. margin-right: 20px;
  2181. }
  2182. .vst-ok a {
  2183. color: #326b9b;
  2184. }
  2185. .vst-ok a:hover {
  2186. color: #cc3366;
  2187. }
  2188. .vst-ok a:active {
  2189. color: #d53067;
  2190. }
  2191. .data {
  2192. margin: 0 0 90px 0;
  2193. }
  2194. .data-col1 {
  2195. width: 148px;
  2196. }
  2197. .data-col1 td {
  2198. padding: 10px 0 0 5px;
  2199. }
  2200. .data-col1 tr:first-child td {
  2201. padding: 59px 0 0 5px;
  2202. }
  2203. .login-box td,
  2204. .data td {
  2205. color: #4b4b4b;
  2206. font-size: 0.85rem;
  2207. padding-bottom: 3px;
  2208. font-weight: 600;
  2209. }
  2210. .input-label {
  2211. padding-top: 20px;
  2212. }
  2213. .data input[type="checkbox"] {
  2214. display: inline;
  2215. cursor: pointer;
  2216. }
  2217. .step-top {
  2218. padding-top: 18px;
  2219. }
  2220. .step-top-small {
  2221. padding-top: 14px;
  2222. }
  2223. .jump-top {
  2224. margin-top: -60px;
  2225. }
  2226. .jump-small-top {
  2227. margin-top: -12px;
  2228. }
  2229. .float-right {
  2230. display: inline-block;
  2231. float: right;
  2232. }
  2233. .data a {
  2234. text-decoration: none;
  2235. }
  2236. label {
  2237. cursor: pointer;
  2238. }
  2239. label:hover {
  2240. color: #333;
  2241. }
  2242. .vst-input {
  2243. background-color: #fff;
  2244. border: 1px solid #cfcfcf;
  2245. border-radius: 4px;
  2246. color: #4e4e4e;
  2247. font-family: 'Exo', Arial, Arial, Helvetica, sans-serif;
  2248. font-size: 0.8rem;
  2249. height: 20px;
  2250. margin: 2px 6px 0 0;
  2251. padding: 8px 3px 8px 14px;
  2252. width: 360px;
  2253. font-weight: normal;
  2254. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2255. }
  2256. .vst-input:hover {
  2257. border: 1px solid #94c8f0;
  2258. }
  2259. .vst-input:focus {
  2260. border: 1px solid #3b9de8;
  2261. background-color: #D7F9FF;
  2262. color: #333;
  2263. }
  2264. .vst-input:disabled,
  2265. .vst-list:disabled {
  2266. background-color: #e7e7e7;
  2267. text-shadow: 1px 1px rgba(255,255,255,1);
  2268. color: #686868;
  2269. }
  2270. .vst-input:focus:disabled {
  2271. border-color: #f1f1f1;
  2272. background-color: #f1f1f1;
  2273. }
  2274. .vst-input:disabled:hover,
  2275. .vst-list:disabled:hover {
  2276. border-color: inherit !important;
  2277. }
  2278. .vst-input.long {
  2279. width: 832px;
  2280. }
  2281. .vst-input.short {
  2282. width: 200px;
  2283. }
  2284. .vst-input.vst-list-editor {
  2285. border: none;
  2286. box-shadow: none;
  2287. position: absolute;
  2288. margin-top:-34px;
  2289. margin-left: 1px;
  2290. display: block;
  2291. width: 340px;
  2292. height: 1rem;
  2293. }
  2294. .vst-input.vst-list-editor:focus {
  2295. background-color: white;
  2296. }
  2297. .vst-list {
  2298. background-color: #fff;
  2299. border: 1px solid #ccc;
  2300. border-radius: 4px;
  2301. color: #4e4e4e;
  2302. font-family: 'Exo', Arial, Helvetica,sans-serif;
  2303. font-size: 0.8rem;
  2304. font-weight: normal;
  2305. height: 36px;
  2306. cursor: pointer;
  2307. margin: 2px 6px 0 0;
  2308. min-width: 380px;
  2309. padding: 4px 1px 4px 10px;
  2310. background-image: url("/images/arrow.png");
  2311. background-position: 360px;
  2312. background-repeat: no-repeat;
  2313. width: 380px;
  2314. appearance:none;
  2315. -moz-appearance:none;
  2316. -webkit-appearance:none;
  2317. text-shadow: 0 0 0 #4b4b4b;
  2318. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2319. }
  2320. select.vst-list:-moz-focusring {
  2321. color:transparent;
  2322. }
  2323. .vst-list.long-2 {
  2324. width: 486px;
  2325. background-position: 465px;
  2326. }
  2327. .vst-list option {
  2328. padding: 6px 1px 6px 15px;
  2329. }
  2330. .vst-list:hover {
  2331. border: 1px solid #94c8f0;
  2332. }
  2333. .vst-list:focus {
  2334. border: 1px solid #3b9de8;
  2335. color: #333;
  2336. }
  2337. .vst-list.flat {
  2338. border: 1px solid #fff;
  2339. color: #326b9b;
  2340. text-transform: uppercase;
  2341. font-weight: 600;
  2342. font-size: 0.8rem;
  2343. margin-left: -10px;
  2344. text-shadow: none !important;
  2345. box-shadow: none !important;
  2346. }
  2347. .vst-list.flat:hover {
  2348. color: #cc3366;
  2349. }
  2350. .vst-list.flat option {
  2351. color: #4e4e4e;
  2352. }
  2353. a.vst-text,
  2354. a.vst-text b{
  2355. color: #326b9b;
  2356. }
  2357. a.vst-text:hover,
  2358. a.vst-text:hover b{
  2359. color: #cc3366;
  2360. }
  2361. a.vst-text:active,
  2362. a.vst-text:active b{
  2363. color: #cc3366;
  2364. }
  2365. .advanced-options {
  2366. background: linear-gradient(to bottom, rgba(247,247,247,1) 0%,rgba(255,255,255,1) 100%) !important;
  2367. border: 1px solid #ddd !important;
  2368. text-shadow: 0px 1px rgba(255,255,255,0.95);
  2369. 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;
  2370. color: #30659d !important;
  2371. padding: 4px 0px 0px 18px;
  2372. overflow: hidden;
  2373. height: 28px;
  2374. }
  2375. .advanced-options a {
  2376. color: #30659d !important;
  2377. }
  2378. .advanced-options .fas {
  2379. margin-right: 20px;
  2380. width: 14px;
  2381. }
  2382. .vst-textinput {
  2383. background-color: #fff;
  2384. border: 1px solid #cfcfcf;
  2385. border-radius: 4px;
  2386. color: #4e4e4e;
  2387. font-size: 0.8rem;
  2388. padding: 5px;
  2389. width: 560px;
  2390. height: 60px;
  2391. font-family: 'Exo', Arial, Helvetica, sans-serif;
  2392. padding: 7px 1px 3px 14px;
  2393. font-weight: normal;
  2394. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2395. }
  2396. .vst-textinput:hover {
  2397. border: 1px solid #94c8f0;
  2398. }
  2399. .vst-textinput:focus {
  2400. border: 1px solid #3b9de8;
  2401. background-color: #D7F9FF;
  2402. color: #333;
  2403. }
  2404. .vst-textinput:disabled {
  2405. background-color: #f1f1f1;
  2406. }
  2407. .vst-textinput.console{
  2408. font-size: 0.8rem;
  2409. width: 630px;
  2410. height: 300px;
  2411. font-family: "Inconsolata", "Lucida Console", Monaco, monospace;
  2412. white-space: pre;
  2413. }
  2414. .vst-textinput.short {
  2415. width: 360px;
  2416. }
  2417. #advanced-options .console{
  2418. width: 833px;
  2419. height: 600px;
  2420. }
  2421. .generate {
  2422. color: #326b9b;
  2423. text-decoration: underline;
  2424. cursor: pointer;
  2425. margin-left: -3px;
  2426. padding: 0 3px;
  2427. }
  2428. .generate:hover {
  2429. background-color: #cc3366;
  2430. border-color: #cc3366;
  2431. color: #fff;
  2432. }
  2433. .generate:active {
  2434. background-color: #F7D616;
  2435. border-color: #F7D616;
  2436. }
  2437. .vst-advanced {
  2438. border-bottom: 0px solid #326b9b;
  2439. color: #326b9b;
  2440. font-size: 0.8rem;
  2441. padding: 2px 2px 0;
  2442. text-decoration: none;
  2443. text-transform: uppercase;
  2444. }
  2445. .login-box .vst-advanced:hover {
  2446. color: #cc3366;
  2447. background-color: transparent;
  2448. border-color: transparent;
  2449. }
  2450. .vst-advanced:hover {
  2451. color: #fff;
  2452. background-color: #cc3366;
  2453. border-color: #cc3366;
  2454. text-decoration: none;
  2455. }
  2456. .login-box .vst-advanced:active,
  2457. .vst-advanced:active {
  2458. color: #fff;
  2459. background-color: #F7D616;
  2460. border-color: #F7D616;
  2461. text-decoration: none;
  2462. }
  2463. .login-box .vst-advanced {
  2464. border-bottom: none;
  2465. color: #326b9b;
  2466. font-size: 10px;
  2467. padding: 2px 2px 0;
  2468. text-decoration: none;
  2469. text-transform: uppercase;
  2470. }
  2471. .vst-checkbox {
  2472. font-size: 0.85rem;
  2473. margin: 2px 6px 0 3px;
  2474. padding: 5px;
  2475. }
  2476. .lets-encrypt-note {
  2477. color: #89a40a !important;
  2478. font-style: italic;
  2479. font-weight: normal !important;
  2480. height: 30px;
  2481. padding-top: 10px;
  2482. vertical-align: top;
  2483. }
  2484. .additional-control {
  2485. margin-left: 17px;
  2486. color: #326b9b;
  2487. border-bottom: 0px solid #326b9b;
  2488. font-size: 0.8rem;
  2489. cursor: pointer;
  2490. text-transform: uppercase;
  2491. font-weight: 600;
  2492. padding: 2px 2px 0;
  2493. text-decoration: none;
  2494. }
  2495. .additional-control:hover {
  2496. background-color: #cc3366;
  2497. border-color: #cc3366;
  2498. color: #fff;
  2499. }
  2500. .additional-control:active {
  2501. color: #fff;
  2502. background-color: #aaa;
  2503. }
  2504. .additional-control.ftp-remove-user {
  2505. padding: 2px 0 0 0;
  2506. }
  2507. .additional-control.delete:hover,
  2508. .additional-control.ftp-remove-user:hover {
  2509. background-color: #FF3438;
  2510. border-color: #FF3438;
  2511. }
  2512. .additional-control.delete:active,
  2513. .additional-control.ftp-remove-user:active {
  2514. background-color: #FF5F5F;
  2515. border-color: #FF5F5F;
  2516. }
  2517. .additional-control.add:hover {
  2518. background-color: #3b9de8;
  2519. border-color: #3b9de8;
  2520. }
  2521. .additional-control.add:active{
  2522. background-color: #54a6e5;
  2523. border-color: #54a6e5;
  2524. }
  2525. .additional-control.remove-ns {
  2526. display: none;
  2527. }
  2528. .data .step-left {
  2529. padding-left: 50px;
  2530. }
  2531. .hide-password {
  2532. color: #2361a1;
  2533. margin-left: -36px;
  2534. padding-left: 3px;
  2535. z-index: 1;
  2536. }
  2537. .toggle-psw-visibility-icon {
  2538. cursor: pointer;
  2539. opacity: 1;
  2540. margin: -2px;
  2541. }
  2542. .show-passwords-enabled-action {
  2543. opacity: 0.4;
  2544. }
  2545. .ftp-path-value,
  2546. .hint,
  2547. td.hint {
  2548. color: #777;
  2549. font-size: 0.85rem;
  2550. font-style: italic;
  2551. font-weight: normal;
  2552. }
  2553. .ftp-path-prefix { padding-top: 12px; font-size: 0.8rem; color: #555; }
  2554. .ui-dialog .ui-dialog-buttonpane button {
  2555. box-shadow: 0px 1px 4px rgba(0,0,0,0.2),
  2556. inset 0px 0px 1px #fff,
  2557. inset 0px 0px 3px rgba(255,255,255,0.5) !important;
  2558. }
  2559. .ui-button, .button {
  2560. filter:chroma(color=#000);
  2561. cursor: pointer;
  2562. border-radius: 3px 3px 3px 3px !important;
  2563. font-size: 1.05em !important;
  2564. font-weight: 500 !important;
  2565. padding: 2px 16px 3px 20px !important;
  2566. min-width: 100px !important;
  2567. height: 28px !important;
  2568. color: #30659d !important;
  2569. border: 1px solid #3b9de8 !important;
  2570. background-color: #3b9de8 !important;
  2571. 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;
  2572. box-shadow: 0px 1px 4px rgba(0,0,0,0.2),
  2573. inset 0px 0px 1px #fff,
  2574. inset 0px 0px 3px rgba(255,255,255,0.5) !important;
  2575. text-shadow: 0px 1px 1px rgba(255,255,255,0.6) !important;
  2576. }
  2577. .ui-button:hover, .button:hover, .ui-button.cancel:hover, .button.cancel:hover,
  2578. .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit:hover {
  2579. color: #3b9de8 !important;
  2580. text-shadow: 1px 1px rgba(255,255,255,0.5) !important;
  2581. border: 1px solid #54a6e5 !important;
  2582. 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;
  2583. box-shadow: 0px 1px 3px rgba(0,0,0,0.15),
  2584. inset 0px 0px 1px #fff,
  2585. inset 0px 0px 6px rgba(255,255,255,0.6) !important;
  2586. transition: 0.2s;
  2587. }
  2588. .ui-button:focus,.ui-button:active,
  2589. .button:active,.button:focus,.ui-button.cancel:focus,.ui-button.cancel:active,
  2590. .button.cancel:active,.button.cancel:focus, .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit,
  2591. .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit:active {
  2592. border: 1px solid #378ccd !important;
  2593. 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;
  2594. color: #046c98 !important;
  2595. text-shadow: 0px -1px 1px rgba(255,255,255,0.5) !important;
  2596. box-shadow: 0px 1px 3px rgba(0,0,0,0.15),
  2597. inset 0px 0px 1px #fff,
  2598. inset -1px -1px 4px rgba(220,220,220,0.4) !important;
  2599. }
  2600. .ui-button-text-only {
  2601. border: 0px !important;
  2602. background: transparent !important;
  2603. box-shadow: none !important;
  2604. text-shadow: 0px 1px rgba(255,255,255,0.5);
  2605. }
  2606. .ui-dialog .ui-dialog-buttonpane button span.ui-button-text {
  2607. padding: 2px !important;
  2608. }
  2609. .ui-dialog .ui-button:hover span {
  2610. color: #046c98 !important;
  2611. }
  2612. .ui-button-text-only .selected {
  2613. font-weight: 600 !important;
  2614. }
  2615. .ui-button.cancel,
  2616. .button.cancel {
  2617. color: #717171 !important;
  2618. border: 1px solid #aaaaaa !important;
  2619. 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;
  2620. }
  2621. .ui-button-text {
  2622. padding: 0px !important;
  2623. color: #30659d !important;
  2624. }
  2625. .ui-button.cancel:active,
  2626. .button.cancel:active {
  2627. border: 1px solid #378ccd;
  2628. background-color: #378ccd;
  2629. }
  2630. a.button.cancel {
  2631. padding: 8px 38px;
  2632. text-transform: capitalize;
  2633. }
  2634. .ui-dialog button.cancel {
  2635. color: #000;
  2636. border: 1px solid #4b4b4b;
  2637. background-color: #4b4b4b;
  2638. }
  2639. .ui-button.danger:hover, .button.danger:hover {
  2640. background: linear-gradient(to bottom, #fbf2f1 0%,#f7cac5 50%,#f6b4ac 51%,#fde6e3 100%) !important;
  2641. color: #F4301A !important;
  2642. text-shadow: 0px 1px rgba(255,255,255,0.5) !important;
  2643. border: 1px solid #F27E71 !important;
  2644. }
  2645. .ui-button.danger:active, .button.danger:active, .ui-button.danger:focus, .button.danger:focus {
  2646. background: linear-gradient(to bottom, #f9e3df 0%,#f5a69d 50%,#f48578 51%,#fcd0ca 100%) !important;
  2647. color: #fff !important;
  2648. text-shadow: 0px -1px 1px rgba(0,0,0,0.3) !important;
  2649. border: 1px solid #F4301A !important;
  2650. }
  2651. .ui-button span {
  2652. color: #fff;
  2653. }
  2654. .ui-button:hover span {
  2655. color: #4b4b4b !important;
  2656. }
  2657. .ui-button:active span {
  2658. color: #4b4b4b;
  2659. }
  2660. .ui-button.cancel span {
  2661. color: #777;
  2662. }
  2663. .ui-button:hover span {
  2664. color: #fff;
  2665. }
  2666. .ui-button:active span {
  2667. color: #fff;
  2668. }
  2669. .ui-dialog button.cancel span {
  2670. color: #777 !important;
  2671. }
  2672. .unlim-trigger {
  2673. cursor: pointer;
  2674. padding-left: 4px;
  2675. margin-bottom: -2px;
  2676. margin-left: -42px;
  2677. z-index: 1;
  2678. }
  2679. .optional {
  2680. font-size: 0.8rem;
  2681. padding: 0 0 0 6px;
  2682. font-weight: normal;
  2683. }
  2684. .data-active b {
  2685. color: #3b9de8;
  2686. font-size: 0.8rem;
  2687. text-transform: uppercase;
  2688. }
  2689. .data-suspended b {
  2690. color: #A3A3A3;
  2691. font-size: 0.8rem;
  2692. font-weight: 600;
  2693. text-transform: uppercase;
  2694. }
  2695. .data-date {
  2696. font-weight: normal;
  2697. color: #777;
  2698. font-size: 0.8rem;
  2699. line-height: 23px;
  2700. }
  2701. .data-dotted {
  2702. vertical-align: top;
  2703. }
  2704. .mail-infoblock-td {
  2705. vertical-align: top;
  2706. }
  2707. .mail-infoblock {
  2708. font-size: 0.85rem;
  2709. color: #777;
  2710. border: 1px solid #d9d9d9;
  2711. padding: 0px 5px 12px 20px;
  2712. margin-top: 83px;
  2713. min-width: 320px;
  2714. overflow: hidden;
  2715. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2716. border-radius: 5px;
  2717. }
  2718. .mail-infoblock:hover {
  2719. overflow: visible;
  2720. }
  2721. .mail-infoblock td {
  2722. color: #505050;
  2723. font-size: 0.75rem;
  2724. height: 20px;
  2725. font-weight: normal;
  2726. }
  2727. .mail-infoblock td:first-child{
  2728. padding-right: 14px;
  2729. font-weight: 600;
  2730. }
  2731. .mail-infoblock div {
  2732. white-space: nowrap;
  2733. }
  2734. .mail-infoblock a {
  2735. color: #326b9b;
  2736. }
  2737. .mail-infoblock a:hover {
  2738. color: #cc3366;
  2739. }
  2740. .additional-info {
  2741. margin-top: 30px;
  2742. width: 547px;
  2743. }
  2744. .additional-info td {
  2745. font-size: 0.8rem;
  2746. height: 22px;
  2747. font-weight: normal;
  2748. }
  2749. .additional-info td.details {
  2750. padding-left: 20px;
  2751. }
  2752. :focus {outline:none;}
  2753. ::-moz-focus-inner {border:0;}
  2754. .login {
  2755. background-color: #fff;
  2756. box-shadow: 0px 8px 25px rgba(0,0,0, 0.3);
  2757. font-family: 'Exo', Tahoma, Arial, Helvetica, sans-serif;
  2758. margin: 0;
  2759. padding: 0;
  2760. text-align: left;
  2761. vertical-align: top;
  2762. width: 500px;
  2763. border-radius: 6px;
  2764. }
  2765. .login-welcome {
  2766. font-size: 1.05rem !important;
  2767. font-weight: 500 !important;
  2768. padding-bottom: 30px !important;
  2769. }
  2770. .page-title {
  2771. font-size: 1.2rem !important;
  2772. font-weight: 400 !important;
  2773. padding-bottom: 30px !important;
  2774. letter-spacing: -0.01em;
  2775. }
  2776. .qr-code {
  2777. border: 1px solid #cfcfcf;
  2778. border-radius: 4px;
  2779. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2780. }
  2781. .password-option {
  2782. margin-top: 15px;
  2783. }
  2784. .login a.error {
  2785. color: #BE5ABF;
  2786. font-size: 0.8rem;
  2787. }
  2788. .hestiacp {
  2789. color: #505050;
  2790. }
  2791. .hestiacp:hover {
  2792. color: #326b9b;
  2793. }
  2794. .hestiacp:active {
  2795. color: #cc3366;
  2796. }
  2797. .login-bottom {
  2798. height: 60px;
  2799. text-align: right;
  2800. vertical-align: top;
  2801. font-size: 0.75rem !important;
  2802. margin-right: 65px;
  2803. }
  2804. .l-unit.selected {
  2805. background-color: #f8f8f8;
  2806. color: #4b4b4b;
  2807. box-shadow: 0px 2px 10px rgba(150,150,150,0.20);
  2808. text-shadow: 0px 1px rgba(255,255,255,0.5);
  2809. border-left: 1px solid #ddd;
  2810. border-right: 1px solid #ddd;
  2811. }
  2812. .l-unit.selected:hover {
  2813. background-color: #f0bccd;
  2814. color: #4b4b4b;
  2815. box-shadow: 0px 2px 14px rgba(150,150,150,0.25);
  2816. text-shadow: 0px 1px rgba(255,255,255,0.6);
  2817. }
  2818. .l-unit.selected b,
  2819. .l-unit.selected strong {
  2820. color: #4b4b4b;
  2821. }
  2822. /* MAIN MENU COLLAPSED */
  2823. .collapsed .l-stat {
  2824. padding-top: 20px;
  2825. }
  2826. .collapsed .l-stat__col a {
  2827. height: 0;
  2828. min-height: 0;
  2829. overflow: hidden;
  2830. }
  2831. .collapsed .l-stat__col-title {
  2832. padding-top: 2px;
  2833. }
  2834. div.l-content.collapsed > div.l-separator:nth-of-type(2) {
  2835. margin-top: 93px;
  2836. position: fixed;
  2837. }
  2838. div.l-content.collapsed > div.l-separator:nth-of-type(4) {
  2839. margin-top: 138px;
  2840. position: fixed;
  2841. }
  2842. div.l-content.collapsed .l-sort {
  2843. margin-top: 94px;
  2844. }
  2845. .l-content > .units.l-center::before {
  2846. content: '';
  2847. display: block;
  2848. height: 225px;
  2849. }
  2850. .console-output {
  2851. font-family: "Inconsolata", "Lucida Console", Monaco, monospace;
  2852. font-size: 0.92rem;
  2853. color: #202020;
  2854. }
  2855. form#vstobjects {
  2856. padding-top: 240px;
  2857. }
  2858. form#vstobjects.suspended {
  2859. background-color: #EAEAEA;
  2860. padding-bottom: 30px;
  2861. }
  2862. #add-icon {
  2863. width: 45px;
  2864. height: 45px;
  2865. display: inline-block;
  2866. z-index: 3;
  2867. }
  2868. .l-sort__create-btn.restore #add-icon {
  2869. background-position: -378px -250px;
  2870. }
  2871. .l-sort__create-btn.edit #add-icon {
  2872. background-position: -378px -154px;
  2873. }
  2874. #tooltip {
  2875. background-color: #3b9de8;
  2876. border-radius: 15px;
  2877. bottom: 6px;
  2878. color: #fff;
  2879. font-size: 0.8rem;
  2880. font-weight: 600;
  2881. height: 26px;
  2882. left: 12px;
  2883. letter-spacing: 0;
  2884. line-height: 25px;
  2885. margin-left: 12px;
  2886. margin-top: 7px;
  2887. padding: 3px 14px 3px 27px;
  2888. position: absolute;
  2889. text-transform: uppercase;
  2890. white-space: nowrap;
  2891. word-break: keep-all;
  2892. z-index: -1;
  2893. }
  2894. .l-sort__create-btn:active #add-icon {
  2895. background-position: -425px -107px;
  2896. }
  2897. .l-sort__create-btn.restore:active #add-icon {
  2898. background-position: -425px -250px !important;
  2899. }
  2900. .l-sort__create-btn.edit:active #add-icon {
  2901. background-position: -425px -154px !important;
  2902. }
  2903. .l-sort__create-btn.edit:hover #tooltip {
  2904. background-color: #3b9de8;
  2905. }
  2906. .l-sort__create-btn.edit:active #tooltip {
  2907. background-color: #3BF0E6 !important;
  2908. }
  2909. .l-sort__create-btn:active #tooltip {
  2910. background-color: #54a6e5;
  2911. }
  2912. .pill {
  2913. border-radius: 12px;
  2914. display: inline-block;
  2915. text-shadow: 0px 1px 2px rgba(0,0,0,0.4);
  2916. }
  2917. .pill.usage{
  2918. margin-top: 8px;
  2919. font-size: 0.75rem;
  2920. padding: 4px;
  2921. padding-left: 8px;
  2922. padding-right: 8px;
  2923. margin-right: 10px;
  2924. line-height: 0.75rem;
  2925. box-shadow: 0px 1px 1px rgba(0,0,0,0.25), inset 0px 0px 1px rgba(0,0,0,0.15);
  2926. background-color: rgba(255,255,255,0.75);
  2927. font-weight: 500;
  2928. border: 1px solid rgba(255,255,255,0.9);
  2929. text-shadow: 0px 1px 1px rgba(255,255,255,0.5);
  2930. color: #30659d;
  2931. }
  2932. .pill.usage b { color: #30659d; }
  2933. .badge {
  2934. display: inline-block;
  2935. min-width: 24px;
  2936. min-height: 24px;
  2937. line-height: 24px;
  2938. border-radius: 50%;
  2939. font-weight: 700;
  2940. font-size: 0.75rem;
  2941. box-shadow: 0px 1px 2px rgba(70,70,70,0.5),
  2942. inset 0px 2px 2px #fff;
  2943. text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
  2944. border: 1px solid #b8b8b8 !important;
  2945. }
  2946. .badge.large {
  2947. min-width: 48px;
  2948. min-height: 48px;
  2949. line-height: 48px;
  2950. }
  2951. .badge.raised {
  2952. background: radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.05) 100%);
  2953. }
  2954. .l-unit--suspended .badge {
  2955. background: #eaeaea !important;
  2956. color: #c0c0c0 !important;
  2957. text-shadow: 0px -1px #fafafa !important;
  2958. box-shadow: 0px 1px 2px rgba(120,120,120,0.3) !important;
  2959. }
  2960. .pill.gray, .badge.gray {
  2961. border: 1px solid #fff;
  2962. background-color: #eaeaea;
  2963. color: #6c6c6c;
  2964. text-shadow: 0px 1px #fafafa !important;
  2965. }
  2966. .pill.blue, .badge.blue {
  2967. border: 1px solid #fff;
  2968. background-color: #316198;
  2969. color: #fff;
  2970. }
  2971. .pill.purple, .badge.purple {
  2972. border: 1px solid #fff;
  2973. background-color: #8e2fca;
  2974. color: #fff;
  2975. }
  2976. .pill.teal, .badge.teal {
  2977. border: 1px solid #fff;
  2978. background-color: #33cccc;
  2979. color: #fff;
  2980. }
  2981. .pill.maroon, .badge.maroon {
  2982. border: 1px solid #fff;
  2983. background-color: #cc3366;
  2984. color: #fff;
  2985. }
  2986. .pill.red, .badge.red {
  2987. border: 1px solid #fff;
  2988. background-color: #ff3333;
  2989. color: #fff;
  2990. }
  2991. .pill.orange, .badge.orange {
  2992. border: 1px solid #fff;
  2993. background-color: #f6a800;
  2994. color: #fff;
  2995. }
  2996. .pill.green, .badge.green {
  2997. border: 1px solid #fff;
  2998. background-color: #53ba55;
  2999. color: #fff;
  3000. }
  3001. .pill.lightblue, .badge.lightblue {
  3002. border: 1px solid #fff;
  3003. background-color: #6eb6f0;
  3004. color: #fff;
  3005. }
  3006. .status-icon.large {
  3007. font-size: 1rem;
  3008. }
  3009. .status-icon.yellow, .status-icon.yellow:hover {
  3010. color: #f3e72c;
  3011. }
  3012. .status-icon.teal, .status-icon.teal:hover {
  3013. color: #33cccc;
  3014. }
  3015. .status-icon.purple, .status-icon.purple:hover {
  3016. color: #8e2fca;
  3017. }
  3018. .status-icon.maroon, .status-icon.maroon:hover {
  3019. color: #cc3366;
  3020. }
  3021. .status-icon.red, .status-icon.red:hover {
  3022. color: #ff3333;
  3023. }
  3024. .status-icon.green, .status-icon.green:hover {
  3025. color: #53ba55;
  3026. }
  3027. .status-icon.orange, .status-icon.orange:hover {
  3028. color: #ffc043;
  3029. }
  3030. .status-icon.lightblue, .status-icon.lightblue:hover {
  3031. color: #6eb6f0;
  3032. }
  3033. .status-icon.highlight, .status-icon.highlight:hover {
  3034. color: #323232;
  3035. }
  3036. .status-icon.blue, .status-icon.blue:hover {
  3037. color: #326b9b;
  3038. }
  3039. .status-icon.dim {
  3040. color: #ddd;
  3041. text-shadow: 1px 1px rgba(255,255,255,0.3);
  3042. }
  3043. .status-icon.dim {
  3044. color: #ddd;
  3045. text-shadow: 1px 1px rgba(255,255,255,0.3);
  3046. }
  3047. .l-unit--suspended .status-icon.dim {
  3048. color: #c0c0c0 !important;
  3049. text-shadow: 0px !important;
  3050. }
  3051. .noselect {
  3052. -webkit-touch-callout: none;
  3053. -webkit-user-select: none;
  3054. -khtml-user-select: none;
  3055. -moz-user-select: none;
  3056. -ms-user-select: none;
  3057. -user-select: none;
  3058. }
  3059. .search-input {
  3060. background-color: #fff;
  3061. border: 1px solid #ddd;
  3062. height: 26px;
  3063. line-height: 28px;
  3064. padding-left: 7px;
  3065. float: left;
  3066. width: 120px;
  3067. border-top-left-radius: 4px;
  3068. border-bottom-left-radius: 4px;
  3069. border-right: 0;
  3070. /* visibility: hidden;*/
  3071. -webkit-transition: width .2s ease-out;
  3072. -moz-transition: width .2s ease-out;
  3073. -o-transition: width .2s ease-out;
  3074. transition: width .2s ease-out;
  3075. }
  3076. .lang-ru .search-input{
  3077. width: 74px;
  3078. }
  3079. .lang-ru .search-input.activated{
  3080. width: 70px;
  3081. }
  3082. .search-input.activated{
  3083. width: 120px;
  3084. visibility: visible;
  3085. }
  3086. .search-input:focus {
  3087. /*
  3088. background-color: #e8fcff;
  3089. border-color: #75c9c2;
  3090. color: #333;
  3091. */
  3092. }
  3093. .float-left {
  3094. float: left;
  3095. }
  3096. .float-right {
  3097. float: right;
  3098. }
  3099. .display-inline-block {
  3100. display: inline-block;
  3101. }
  3102. .width-100p {
  3103. width: 100%;
  3104. }
  3105. .l-sort-toolbar table td {
  3106. float: left;
  3107. margin-left: 10px;
  3108. }
  3109. .l-sort-toolbar__search-box {
  3110. float: right !important;
  3111. padding-right: 0 !important;
  3112. }
  3113. .ui-dialog .ui-dialog-buttonpane button:nth-of-type(2) {
  3114. -background-color: #dfdedd;
  3115. }
  3116. .shortcuts {
  3117. background: rgba(20, 20, 20, 0.92);
  3118. display: inline-block;
  3119. position: fixed;
  3120. left: 50%;
  3121. bottom: 0;
  3122. color: #eee;
  3123. width: 800px;
  3124. border: 1px solid rgba(255,255,255,0.7);
  3125. border-bottom: 0px;
  3126. font-size: 0.8rem;
  3127. z-index: 120;
  3128. transform: translate(-50%, 0);
  3129. border-top-left-radius: 6px;
  3130. border-top-right-radius: 6px;
  3131. box-shadow: 0px 3px 40px rgba(0,0,0,0.6);
  3132. }
  3133. .shortcuts .header {
  3134. border-bottom: 1px solid #333;
  3135. height: 43px;
  3136. }
  3137. .shortcuts .title {
  3138. text-transform: uppercase;
  3139. color: #ffcc00;
  3140. padding: 7px 0 7px 14px;
  3141. display: inline-block;
  3142. float: left;
  3143. font-size: 0.85rem;
  3144. letter-spacing: -0.01em;
  3145. }
  3146. .shortcuts .close {
  3147. cursor: pointer;
  3148. display: inline-block;
  3149. float: right;
  3150. height: 32px;
  3151. padding-top: 11px;
  3152. width: 46px;
  3153. }
  3154. .shortcuts .close:hover {
  3155. background-color: #000;
  3156. }
  3157. .shortcuts .close:active {
  3158. background-color: #3b9de8;
  3159. }
  3160. .shortcuts .close .fas {
  3161. font-size: 1.3rem;
  3162. }
  3163. .shortcuts ul {
  3164. list-style-type: none;
  3165. padding: 30px 20px;
  3166. display: inline-block;
  3167. float: left;
  3168. width: 360px;
  3169. }
  3170. .shortcuts ul li {
  3171. padding: 5px 20px;
  3172. }
  3173. .shortcuts ul li.step-top {
  3174. padding-top: 30px;
  3175. }
  3176. .shortcuts ul li span {
  3177. color: #48F4EF;
  3178. display: inline-block;
  3179. font-weight: 600;
  3180. padding: 0 20px 0 0;
  3181. text-align: right;
  3182. /* width: 140px;*/
  3183. }
  3184. .shortcuts ul li span.bigger {
  3185. font-size: 18px;
  3186. }
  3187. .description {
  3188. font-weight: normal;
  3189. line-height: 25px;
  3190. padding-bottom: 45px;
  3191. margin-left: 50px;
  3192. }
  3193. .description ul{
  3194. margin-top: 15px;
  3195. list-style: none;
  3196. padding-left: 0;
  3197. }
  3198. .description li{
  3199. margin: 10px 0;
  3200. }
  3201. .description a {
  3202. line-height: 30px;
  3203. text-decoration: underline;
  3204. color: #326b9b;
  3205. }
  3206. .description a.purchase {
  3207. color: #FFF;
  3208. background-color: #3b9de8;
  3209. border: none;
  3210. border-radius: 3px;
  3211. font-size: 0.8rem;
  3212. font-weight: 600;
  3213. padding: 7px 15px;;
  3214. text-transform: capitalize;
  3215. text-decoration: none;
  3216. }
  3217. .description a.purchase:hover {
  3218. background-color: #54a6e5;
  3219. color: #4b4b4b;
  3220. }
  3221. .description a.purchase:active {
  3222. background-color: #54a6e5;
  3223. color: #4b4b4b;
  3224. }
  3225. .description a.cancel {
  3226. background-color: #999;
  3227. border: none;
  3228. border-radius: 3px;
  3229. color: #fff;
  3230. font-size: 0.8rem;
  3231. font-weight: 600;
  3232. padding: 7px 15px;
  3233. text-transform: capitalize;
  3234. text-decoration: none;
  3235. }
  3236. .description a.cancel:hover {
  3237. background-color: #326b9b;
  3238. }
  3239. .description a.cancel:active {
  3240. background-color: #5f9491;
  3241. }
  3242. .description.cancel-success {
  3243. color: #8fac0a;
  3244. font-weight: 600;
  3245. }
  3246. .description .licence {
  3247. padding: 20px 0;
  3248. color: #326b9b;
  3249. }
  3250. .description .licence input {
  3251. margin-left: 17px;
  3252. width: 137px;
  3253. }
  3254. .description span {
  3255. font-style: italic;
  3256. line-height: 45px;
  3257. padding-top: 20px;
  3258. }
  3259. .description .twoco {
  3260. font-style: italic;
  3261. line-height: 15px;
  3262. font-size: 0.8rem;
  3263. }
  3264. .ui-dialog {
  3265. font-family: 'Exo', Arial, Helvetica, sans-serif !important;
  3266. font-weight: 500 !important;
  3267. background-color: rgba(255,255,255,0.9) !important;
  3268. box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.35) !important;
  3269. border-radius: 6px !important;
  3270. border: 2px solid rgba(255,255,255,0.95) !important;
  3271. text-align: center !important;
  3272. }
  3273. .ui-dialog .ui-dialog-content {
  3274. color: #535353 !important;
  3275. padding: 10px 26px 30px !important;
  3276. }
  3277. .ui-dialog .ui-dialog-title {
  3278. margin: 0px !important;
  3279. color: #305ba9 !important;
  3280. font-size: 1.2em !important;
  3281. text-transform: none !important;
  3282. letter-spacing: -0.01em !important;
  3283. text-align: center !important;
  3284. float: none !important;
  3285. font-weight: 500;
  3286. }
  3287. .ui-dialog-buttonpane {
  3288. border-color: #aaaaaa !important;
  3289. }
  3290. .ui-widget {
  3291. font-size: 0.85rem !important;
  3292. }
  3293. .ui-widget-overlay {
  3294. opacity: 0.8 !important;
  3295. background: rgba(10,10,10,0.9) !important;
  3296. }
  3297. .helper-container {
  3298. float: right;
  3299. margin-bottom: -450px;
  3300. margin-top: 410px;
  3301. margin-right: 22px;
  3302. padding-top: 3px;
  3303. width: 563px;
  3304. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  3305. border: 1px solid #cfcfcf;
  3306. border-radius: 4px;
  3307. }
  3308. .context-helper {
  3309. text-transform: uppercase;
  3310. /*text-decoration: underline;*/
  3311. color: #777;
  3312. font-size: 0.8rem;
  3313. cursor: pointer;
  3314. font-weight: 600;
  3315. float: right;
  3316. }
  3317. .context-helper:hover {
  3318. color: #3b9de8;
  3319. }
  3320. .context-helper:active {
  3321. color: #cc3366;
  3322. }
  3323. .cron-helper-tabs {
  3324. /* margin-top: 30px;*/
  3325. border: none !important;
  3326. font-family: 'Exo', Arial, Helvetica, sans-serif !important;
  3327. }
  3328. .cron-helper-tabs a {
  3329. color: #777;
  3330. font-size: 0.8rem;
  3331. font-weight: 600;
  3332. line-height: 30px;
  3333. padding: 0 12px;
  3334. text-transform: uppercase;
  3335. }
  3336. .cron-helper-tabs a:hover {
  3337. color: #cc3366;
  3338. }
  3339. .cron-helper-tabs a:active {
  3340. color: #3b9de8;
  3341. }
  3342. .cron-helper-tabs .ui-tabs-selected a {
  3343. color: #cc3366;
  3344. }
  3345. .cron-helper-tabs select.short {
  3346. background-position: -388px -604px;
  3347. min-width: 30px;
  3348. width: 70px;
  3349. }
  3350. .cron-helper-tabs p {
  3351. color: #777;
  3352. font-size: 0.8rem;
  3353. }
  3354. .cron-helper-tabs p span{
  3355. padding-right: 15px;
  3356. padding-left: 25px;
  3357. }
  3358. .cron-helper-tabs p span.first{
  3359. display: inline-block;
  3360. padding-right: 15px;
  3361. width: 100px;
  3362. padding-left: 0;
  3363. }
  3364. .cron-helper-tabs .button {
  3365. width: auto;
  3366. background-color: #3b9de8;
  3367. border: 1px solid #3b9de8;
  3368. text-transform: capitalize;
  3369. }
  3370. .cron-helper-tabs .button:hover {
  3371. background-color: #5BD8CF;
  3372. border: 1px solid #5BD8CF;
  3373. }
  3374. .cron-helper-tabs .button:active {
  3375. background-color: #4FBCB4;
  3376. border: 1px solid #4FBCB4;
  3377. }
  3378. .context-helper-close {
  3379. cursor: pointer;
  3380. display: inline-block;
  3381. float: right;
  3382. height: 32px;
  3383. padding-top: 11px;
  3384. width: 46px;
  3385. filter: contrast(50%);
  3386. }
  3387. .context-helper-close:hover {
  3388. background-color: #aaa;
  3389. filter: none;
  3390. }
  3391. .context-helper-close:active {
  3392. background-color: #999;
  3393. filter: none;
  3394. }
  3395. .server-info {
  3396. }
  3397. .server-info-data {
  3398. margin-left: 100px;
  3399. margin-top: -20px;
  3400. }
  3401. .server-info-name {
  3402. margin-top: 5px;
  3403. margin-bottom: 30px;
  3404. }
  3405. .icon-server-info {
  3406. font-size: 5.2em;
  3407. float: left;
  3408. margin-right: 32px;
  3409. }
  3410. .userlist-email {
  3411. font-size: 0.75rem;
  3412. }
  3413. .userlist-username {
  3414. font-size: 1.05em;
  3415. }
  3416. @media screen and (max-width: 950px) {
  3417. .helper-container {
  3418. display: none;
  3419. }
  3420. }