styles.min.css 81 KB

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