styles.min.css 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900
  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.25);
  727. box-shadow: 0px 4px 10px rgba(100,100,100,0.4);
  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. border-left: 1px solid rgba(255,255,255,0.98);
  742. border-right: 1px solid rgba(255,255,255,0.98);
  743. }
  744. .l-menu__item.l-menu__item--active:hover {
  745. box-shadow: none;
  746. }
  747. .l-menu {
  748. float: left;
  749. position: fixed;
  750. margin-left: 70px;
  751. }
  752. .l-menu__item {
  753. float: left;
  754. font-weight: 600;
  755. }
  756. .l-menu__item a {
  757. color: #f7f7f7;
  758. position: relative;
  759. line-height: 39px;
  760. padding: 11px 14px;
  761. border-left: 1px solid transparent;
  762. border-right: 1px solid transparent;
  763. }
  764. .l-menu__item a:hover {
  765. color: #3b9de8 !important;
  766. border: 0;
  767. box-shadow: inset 0px 0px 6px rgba(255,255,255,0.6) !important;
  768. transition: 0.2s;
  769. border-left: 1px solid rgba(0,0,0,0.1);
  770. border-right: 1px solid rgba(0,0,0,0.1);
  771. color: #4686b8 !important;
  772. 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%);
  773. text-shadow: 0px 1px rgba(255,255,255,0.8);
  774. }
  775. .l-menu__item a:active {
  776. border: 0;
  777. background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.6) 30%,rgba(255,255,255,0.95) 95%);
  778. color: #046c98 !important;
  779. text-shadow: 0px -1px 1px rgba(255,255,255,0.5) !important;
  780. box-shadow: inset 0px 0px 1px #fff,
  781. inset -1px -1px 4px rgba(220,220,220,0.4) !important;
  782. transition: 0.2s;
  783. border-left: 1px solid rgba(0,0,0,0.15);
  784. border-right: 1px solid rgba(0,0,0,0.15);
  785. }
  786. .l-menu.active .l-menu__item.focus a {
  787. text-decoration: underline;
  788. color: #5edad0;
  789. }
  790. .l-menu.active .l-menu__item.focus a:hover {
  791. background-color: #f79b44;
  792. color: #fff;
  793. }
  794. .lang-ua .l-menu__item a,
  795. .lang-nl .l-menu__item a,
  796. .lang-fr .l-menu__item a,
  797. .lang-ru .l-menu__item a {
  798. padding: 11px 18px;
  799. }
  800. .lang-el .l-menu__item a,
  801. .lang-tr .l-menu__item a {
  802. padding: 11px 15px;
  803. }
  804. .lang-ar .l-menu__item a {
  805. padding: 11px 11px;
  806. }
  807. .lang-ar .l-menu__item a {
  808. line-height: 35px;
  809. }
  810. .lang-de .l-menu__item a {
  811. padding: 11px 12px;
  812. }
  813. .lang-tw .l-menu__item a {
  814. padding: 13px 18px;
  815. }
  816. .l-profile {
  817. overflow: hidden;
  818. float: right;
  819. }
  820. .l-profile__username {
  821. font-size: 1.2rem !important;
  822. }
  823. .l-profile__help {
  824. font-size: 1.2rem !important;
  825. }
  826. .l-profile__logout {
  827. color: #dbf94e !important;
  828. font-size: 1.2rem !important;
  829. }
  830. .l-profile__server {
  831. color: #ceefff;
  832. margin-top: 10px;
  833. float: left;
  834. }
  835. .l-profile__notifications {
  836. color: #fff;
  837. cursor: pointer;
  838. font-weight: 600;
  839. padding: 10px 5px 0;
  840. font-size: 1.2rem !important;
  841. line-height: 0.95rem;
  842. }
  843. .l-profile__notifications.active.l-profile__notifications.updates:active {
  844. 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%) !important;
  845. color: #046c98 !important;
  846. text-shadow: 0px -1px 1px rgba(255,255,255,0.5) !important;
  847. box-shadow: 0px 1px 3px rgba(0,0,0,0.15),
  848. inset 0px 0px 1px #fff,
  849. inset -1px -1px 4px rgba(220,220,220,0.4) !important;
  850. transition: 0.2s;
  851. }
  852. .l-profile__notifications:hover,.l-profile__notifications.updates:hover {
  853. color: #3b9de8 !important;
  854. text-shadow: 1px 1px rgba(255,255,255,0.5) !important;
  855. background: linear-gradient(to bottom, rgba(255,255,255,0.75) 0%,rgba(255,255,255,0.87) 30%,rgba(255,255,255,1) 95%) !important;
  856. transition: 0.2s;
  857. }
  858. .notification-container {
  859. background-color: rgba(255,255,255,0.95);
  860. box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.4);
  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 9rem;
  1030. }
  1031. .app-form label {
  1032. font-size: 0.85rem;
  1033. padding-bottom: 3px;
  1034. font-weight: 600;
  1035. cursor: default;
  1036. }
  1037. .card {
  1038. float:left;
  1039. overflow: hidden;
  1040. background-color: #f5f5f5;
  1041. border:1px solid #d3d3d3;
  1042. box-sizing: border-box;
  1043. width:200px;
  1044. min-height:260px;
  1045. margin:1em;
  1046. padding-bottom: 0.5em;
  1047. box-shadow: 0px 1px 4px rgba(0,0,0,0.2);
  1048. color: #353535;
  1049. border-radius: 4px;
  1050. text-align: center;
  1051. }
  1052. .card.disable {
  1053. color: #b6b6b6;
  1054. }
  1055. .card.disable .card-thumb {
  1056. filter: grayscale(100%);
  1057. opacity: 0.3;
  1058. }
  1059. .card .card-details {
  1060. font-size: 0.8rem;
  1061. padding: 0.5em 0.8em;
  1062. border-top: 1px solid #e6e6e6;
  1063. text-align: center;
  1064. }
  1065. .card .card-details p {
  1066. margin: 0 0 0.3em 0;
  1067. font-size: 1em;
  1068. }
  1069. .card p.card-title {
  1070. font-size: 1.1em;
  1071. font-weight: 600;
  1072. }
  1073. .card .card-thumb {
  1074. background-color: #fff;
  1075. display: block;
  1076. height: 180px;
  1077. width: 200px;
  1078. text-align: center;
  1079. }
  1080. .card .card-thumb img {
  1081. max-height: 180px;
  1082. max-width: 200px;
  1083. height: auto;
  1084. width: auto;
  1085. }
  1086. .card button {
  1087. margin-top: 0.5em;
  1088. margin:0.3em;
  1089. }
  1090. .l-stat {
  1091. margin: 34px auto;
  1092. position: fixed;
  1093. background-color: #fff;
  1094. z-index: 100;
  1095. padding-top: 36px;
  1096. overflow: hidden;
  1097. text-align: center;
  1098. display: flex;
  1099. width: 100%;
  1100. max-width: 1020px;
  1101. }
  1102. .l-stat__col {
  1103. display: inline-block;
  1104. vertical-align: top;
  1105. flex: 1;
  1106. }
  1107. .l-stat__col a {
  1108. display: inline-block;
  1109. padding-bottom: 36px;
  1110. min-height: 70px;
  1111. width: 136px;
  1112. border-bottom: 4px solid #fff;
  1113. overflow: hidden;
  1114. background-color: #fff;
  1115. padding-top: 3px;
  1116. margin-top: -3px;
  1117. padding-left: 5px;
  1118. }
  1119. .l-stat__col a:hover {
  1120. border-bottom: 4px solid #e83b75;
  1121. transition: 0.3s;
  1122. }
  1123. .l-stat__col a:active {
  1124. border-bottom: 4px solid #d53067;
  1125. }
  1126. .l-stat__col--active a {
  1127. border-bottom: 4px solid #cc3366;
  1128. }
  1129. .l-stat.active .l-stat__col.focus a {
  1130. border-bottom: 4px solid #5edad0;
  1131. }
  1132. .l-stat.active .l-stat__col.focus a .l-stat__col-title {
  1133. color: #36B3A9;
  1134. }
  1135. .l-stat__col a:hover .l-stat__col-title {
  1136. color: #e83b75;
  1137. }
  1138. .l-stat__col a:active .l-stat__col-title {
  1139. color: #d53067;
  1140. }
  1141. .l-stat__col ul {
  1142. list-style-type: none;
  1143. font-size: 0.8rem;
  1144. padding-left: 0;
  1145. line-height: 14px;
  1146. }
  1147. .l-stat__col li {
  1148. color: #a0a0a0;
  1149. margin-bottom: 8px;
  1150. text-transform: lowercase;
  1151. }
  1152. .l-stat__col span {
  1153. padding-left: 15px;
  1154. }
  1155. .l-stat__col-title {
  1156. text-transform: uppercase;
  1157. font-weight: 600;
  1158. color: #5b5b5b;
  1159. min-height: 21px;
  1160. font-size: 16px;
  1161. }
  1162. .l-stat__col--active .l-stat__col-title {
  1163. color: #cc3366;
  1164. font-size: 16px;
  1165. }
  1166. .l-stat__col .fas {
  1167. color: #999999;
  1168. padding: 4px;
  1169. }
  1170. .l-stat__col--active .fas {
  1171. color: #cc3366;
  1172. }
  1173. .l-separator.selected,
  1174. .l-separator {
  1175. height: 1px;
  1176. border-top: 1px solid #ddd;
  1177. }
  1178. div.l-content > div.l-separator:nth-of-type(2) {
  1179. margin-top: 180px;
  1180. width: 100%;
  1181. position: fixed;
  1182. z-index: 120;
  1183. }
  1184. div.l-content > div.l-separator:nth-of-type(4) {
  1185. margin-top: 225px;
  1186. width: 100%;
  1187. position: fixed;
  1188. z-index: 110;
  1189. border-top: none;
  1190. border-bottom: 1px solid #ddd;
  1191. }
  1192. .l-sort {
  1193. position: fixed;
  1194. width: 100%;
  1195. max-width: 1020px;
  1196. background-color: #fff;
  1197. z-index: 120;
  1198. margin-top: 181px;
  1199. height: 44px;
  1200. }
  1201. .l-sort__create-btn {
  1202. background-position: -331px -107px;
  1203. background-repeat: no-repeat;
  1204. bottom: -23px;
  1205. display: inline-block;
  1206. height: 45px;
  1207. left: 30px;
  1208. position: absolute;
  1209. width: 45px;
  1210. z-index: 3;
  1211. }
  1212. .l-sort__create-btn:hover {
  1213. background-position: -378px -107px;
  1214. }
  1215. .l-sort__create-btn:active {
  1216. background-position: -425px -107px;
  1217. }
  1218. .l-sort__create-btn--active {
  1219. background-position: -425px -107px;
  1220. }
  1221. .l-sort__create-btn.restore {
  1222. background-position: -331px -250px;
  1223. bottom: -22px;
  1224. }
  1225. .l-sort__create-btn.restore:hover {
  1226. background-position: -331px -250px;
  1227. }
  1228. .l-sort__create-btn.restore:active {
  1229. background-position: -331px -250px;
  1230. }
  1231. .l-sort__create-btn.edit {
  1232. background-position: -331px -154px;
  1233. bottom: -22px;
  1234. }
  1235. .l-sort__create-btn.edit:hover {
  1236. background-position: -378px -154px;
  1237. }
  1238. .l-sort__create-btn.edit:active {
  1239. background-position: -425px -154px;
  1240. }
  1241. .context-menu.sort-order {
  1242. display: inline-block;
  1243. position: absolute;
  1244. z-index: 3;
  1245. left: 397px;
  1246. margin: 0;
  1247. overflow: hidden;
  1248. top: 42px;
  1249. background-color: rgba(255,255,255,0.95);
  1250. list-style-type: none;
  1251. box-shadow: 0 2px 14px 0 rgba(20, 20, 20, 0.35);
  1252. border-radius: 4px;
  1253. border: 1px solid rgba(255,255,255,1);
  1254. padding: 0px;
  1255. }
  1256. .context-menu.sort-order li {
  1257. padding: 0;
  1258. }
  1259. .context-menu li {
  1260. border-bottom: 1px solid #ddd;
  1261. color: #2e2e2e;
  1262. cursor: pointer;
  1263. font-size: 0.8rem;
  1264. padding: 12px;
  1265. }
  1266. .context-menu.sort-order span.name {
  1267. display: inline-block;
  1268. padding: 12px;
  1269. width: 117px;
  1270. font-weight: 500;
  1271. }
  1272. .context-menu.sort-order span.up {
  1273. display: inline-block;
  1274. padding: 12px 14px;
  1275. width: 16px;
  1276. }
  1277. .context-menu.sort-order span.active {
  1278. background-color: #4f8bbc !important;
  1279. color: #4686b8;
  1280. font-size: 0.8rem;
  1281. 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%);
  1282. text-shadow: 0px 1px rgba(255,255,255,0.8);
  1283. }
  1284. .context-menu.sort-order span:hover {
  1285. color: #3b9de8;
  1286. text-shadow: 1px 1px rgba(255,255,255,0.5);
  1287. 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%);
  1288. box-shadow: inset 0px 0px 1px #fff,
  1289. inset 0px 0px 6px rgba(255,255,255,0.6);
  1290. transition: 0.2s;
  1291. }
  1292. .context-menu.sort-order span:active,.context-menu.sort-order span:focus {
  1293. 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%);
  1294. color: #046c98;
  1295. text-shadow: 0px -1px 1px rgba(255,255,255,0.5);
  1296. box-shadow: inset 0px 0px 1px #fff,
  1297. inset -1px -1px 4px rgba(220,220,220,0.4);
  1298. }
  1299. .context-menu.sort-order span.name i.fas.fa-sort-amount-down {
  1300. float: right;
  1301. margin-top: 2px;
  1302. }
  1303. .context-menu.sort-order li:last-child {
  1304. border-bottom: none;
  1305. }
  1306. .l-sort-toolbar {
  1307. float: right;
  1308. padding: 7px 0 7px 0;
  1309. text-transform: uppercase;
  1310. font-size: 0.8rem;
  1311. }
  1312. .l-sort-toolbar table{
  1313. float: right;
  1314. }
  1315. .l-sort-toolbar td.toggle-all {
  1316. padding-top: 7px;
  1317. padding-right: 10px;
  1318. }
  1319. .l-sort-toolbar .sort-by {
  1320. cursor: pointer;
  1321. padding-top: 7px;
  1322. padding-left: 10px;
  1323. }
  1324. .l-sort-toolbar .sort-by:hover {
  1325. color: #4b4b4b;
  1326. }
  1327. .l-sort-toolbar .sort-by:hover b {
  1328. color: #4b4b4b;
  1329. }
  1330. .l-sort-toolbar .sort-by:active {
  1331. color: #3b9de8;
  1332. }
  1333. .l-sort-toolbar .sort-by:active b {
  1334. color: #3b9de8;
  1335. }
  1336. .l-sort-toolbar .sort-by b {
  1337. text-transform: uppercase;
  1338. padding-left: 3px;
  1339. font-size: 0.8rem;
  1340. }
  1341. .l-sort-toolbar .toggle-all:hover {
  1342. color: #4b4b4b;
  1343. }
  1344. .l-sort-toolbar .toggle-all:active {
  1345. color: #3b9de8;
  1346. }
  1347. .l-sort-toolbar .l-select {
  1348. float: left;
  1349. }
  1350. .l-sort-toolbar td {
  1351. vertical-align: middle;
  1352. }
  1353. .l-sort-toolbar.subtitle {
  1354. padding-left: 96px;
  1355. }
  1356. .l-sort-toolbar td.step-right:first-of-type {
  1357. padding-right: 20px;
  1358. }
  1359. .l-sort-toolbar td:nth-of-type(2) {
  1360. /* /// padding-right: 60px;*/
  1361. }
  1362. .l-sort-toolbar td:last-of-type {
  1363. /* /// padding-left: 40px; */
  1364. }
  1365. .l-sort-toolbar__filter-apply {
  1366. float: left;
  1367. width: 32px;
  1368. height: 30px;
  1369. border: 1px solid #ddd;
  1370. background-color: rgba(255,255,255,0.90);
  1371. text-shadow: 0px 1px rgba(255,255,255,0.95);
  1372. border-radius: 4px;
  1373. border-bottom-left-radius: 0px;
  1374. border-top-left-radius: 0px;
  1375. border-left: 0px;
  1376. box-shadow: inset 0px 0px 1px rgba(41,90,152,0.1), inset 0 0px 2px rgba(255,255,255,1);
  1377. text-shadow: 1px 1px rgba(255,255,255,0.9);
  1378. color: #006699;
  1379. padding: 0;
  1380. font-size: 0.9em;
  1381. }
  1382. .l-sort-toolbar__filter-apply:hover {
  1383. color: #3399cc;
  1384. background-color: #fff;
  1385. }
  1386. .l-sort-toolbar__filter-apply:active {
  1387. color: #409fd5;
  1388. box-shadow: inset 1px 1px 0px rgba(0,0,0,0.1);
  1389. }
  1390. .l-sort-toolbar__search {
  1391. float: left;
  1392. width: 25px;
  1393. height: 25px;
  1394. background-position: -333px -37px;
  1395. border: none;
  1396. }
  1397. .l-sort-toolbar__search:hover {
  1398. background-position: -368px -37px;
  1399. border-color: #afafac;
  1400. }
  1401. .l-sort-toolbar__search:active {
  1402. background-position: -404px -37px;
  1403. border-color: #50bdb5;
  1404. }
  1405. .l-sort-toolbar__search--active {
  1406. background-position: -404px -37px;
  1407. border-color: #50bdb5;
  1408. }
  1409. .l-sort-toolbar .vst {
  1410. padding: 0 12px;
  1411. color: #777;
  1412. text-transform: uppercase;
  1413. font-size: 0.8rem;
  1414. font-weight: 600;
  1415. line-height: 30px;
  1416. }
  1417. .l-sort-toolbar .vst:hover {
  1418. color: #cc3366;
  1419. }
  1420. .l-sort-toolbar .vst:active {
  1421. color: #3b9de8;
  1422. }
  1423. .l-sort-toolbar .vst.selected {
  1424. color: #cc3366;
  1425. /*color: #92af0b;*/
  1426. }
  1427. .l-unit-toolbar__buttonstrip {
  1428. margin-top: 12px;
  1429. display: inline-block;
  1430. font-size: 0.9em;
  1431. }
  1432. .l-unit-toolbar__buttonstrip a {
  1433. padding-left: 10px !important;
  1434. padding-right: 10px !important;
  1435. margin-right: 5px;
  1436. }
  1437. .l-unit-toolbar__buttonstrip .fas {
  1438. padding-right: 4px;
  1439. }
  1440. .subtitle {
  1441. color: #cc3366;
  1442. font-size: 0.8rem;
  1443. font-weight: 600;
  1444. margin: 20px 0 18px 129px;
  1445. text-transform: uppercase;
  1446. }
  1447. .l-select {
  1448. width: 178px;
  1449. border: 1px solid #ddd;
  1450. border-top-left-radius: 4px;
  1451. border-bottom-left-radius: 4px;
  1452. overflow-x: hidden;
  1453. position: relative;
  1454. display: inline-block;
  1455. border-style: solid none solid solid;
  1456. font-weight: 400;
  1457. }
  1458. .lang-ru .l-select {
  1459. width: 199px;
  1460. }
  1461. .l-select:after {
  1462. pointer-events: none;
  1463. width: 7px;
  1464. height: 4px;
  1465. margin-top: -2px;
  1466. content: '';
  1467. position: absolute;
  1468. right: 10px;
  1469. top: 50%;
  1470. }
  1471. .l-select select {
  1472. border: 0;
  1473. background-color: transparent;
  1474. height: 28px;
  1475. min-width: 175px;
  1476. padding-left: 10px;
  1477. background-image: url("/images/arrow.png");
  1478. background-position: 160px;
  1479. background-repeat: no-repeat;
  1480. appearance: none;
  1481. -moz-appearance: none;
  1482. -webkit-appearance: none;
  1483. }
  1484. .l-select select:focus {
  1485. border: 0;
  1486. outline: 0;
  1487. }
  1488. .lang-ru .l-select select {
  1489. min-width: 215px;
  1490. }
  1491. .l-select select option {
  1492. padding: 7px;
  1493. }
  1494. .l-sort-toolbar .l-select {
  1495. float: left;
  1496. border: 1px solid #ddd;
  1497. background-color: rgba(255,255,255,0.90);
  1498. text-shadow: 0px 1px rgba(255,255,255,0.95);
  1499. border-radius: 4px;
  1500. border-bottom-right-radius: 0px;
  1501. border-top-right-radius: 0px;
  1502. border-right: 0px;
  1503. text-shadow: 1px 1px rgba(255,255,255,0.9);
  1504. }
  1505. .l-unit {
  1506. color: #707070;
  1507. padding: 0 0 0 14px;
  1508. overflow: hidden;
  1509. font-size: 0.8rem;
  1510. border-radius: 0;
  1511. border-left: 1px solid transparent;
  1512. border-right: 1px solid transparent;
  1513. }
  1514. .table-header {
  1515. font-size: 0.95em !important;
  1516. background: linear-gradient(to bottom, rgba(247,247,247,1) 0%,rgba(255,255,255,1) 100%) !important;
  1517. border-left: 1px solid #d0d0d0 !important;
  1518. border-right: 1px solid #d0d0d0 !important;
  1519. border-bottom: 1px solid #d0d0d0 !important;
  1520. border-top: 1px solid #d0d0d0 !important;
  1521. text-shadow: 0px 1px rgba(255,255,255,1);
  1522. box-shadow: inset 0px 1px 1px rgba(255,255,255,1), inset 0px 0px 1px rgba(255,255,255,1), inset 0px 0px 4px rgba(255,255,255,0.8), 0px 2px 6px rgba(140,140,140,0.35) !important;
  1523. border-top-left-radius: 0px;
  1524. border-top-right-radius: 0px;
  1525. border-bottom-left-radius: 6px;
  1526. border-bottom-right-radius: 6px;
  1527. min-height: 28px;
  1528. color: #707070;
  1529. padding: 0 0 0 14px;
  1530. overflow: hidden;
  1531. line-height: 1rem;
  1532. margin-top: 1px;
  1533. }
  1534. .table-header:hover {
  1535. background-color: linear-gradient(to bottom, rgba(247,247,247,1) 0%,rgba(255,255,255,1) 100%) !important;
  1536. border-left: 1px solid #d0d0d0 !important;
  1537. border-right: 1px solid #d0d0d0 !important;
  1538. }
  1539. .table-header .fas {
  1540. font-size: 1rem;
  1541. }
  1542. .units .l-unit {
  1543. border-bottom: 1px solid #ddd;
  1544. border-left: 1px solid transparent;
  1545. border-right: 1px solid transparent;
  1546. background-color: rgba(255,255,255,0.6);
  1547. }
  1548. .l-unit:hover, .units .l-unit:hover {
  1549. box-shadow: 0px 2px 10px rgba(150,150,150,0.20);
  1550. background-color: #f8f8f8;
  1551. text-shadow: 0px 1px rgba(255,255,255,0.5);
  1552. border-left: 1px solid #ddd;
  1553. border-right: 1px solid #ddd;
  1554. }
  1555. .units .l-unit.l-unit--starred {
  1556. border-left: 2px solid #cc3366;
  1557. }
  1558. .units.active .l-unit.focus {
  1559. border-left: 2px solid #5edad0;
  1560. background-color: #eff5fc;
  1561. }
  1562. .units.active .l-unit.focus .l-unit__name {
  1563. color: #36b3a9;
  1564. }
  1565. .units.active .l-unit.focus .l-unit-toolbar__col--right {
  1566. display: block;
  1567. }
  1568. .units > div:last-child {
  1569. border-bottom: none;
  1570. }
  1571. .l-unit-ft {
  1572. color: #7c7c7c;
  1573. padding: 0 0 0 15px;
  1574. }
  1575. .l-unit:hover .l-unit-toolbar__col--right {
  1576. display: block;
  1577. }
  1578. .l-unit--blue {
  1579. border-left: 2px solid #3b9de8;
  1580. }
  1581. .l-unit--suspended {
  1582. background-color: #eaeaea !important;
  1583. color: #c0c0c0;
  1584. }
  1585. .l-unit--suspended a {
  1586. color: #c0c0c0 !important;
  1587. }
  1588. .units .l-unit.l-unit--outdated {
  1589. background-color: #ffcaca;
  1590. color: #4b4b4b;
  1591. border-left: 5px solid #ff6f6f;
  1592. border-bottom: 1px solid #fff;
  1593. }
  1594. .l-unit--suspended .l-unit__name,
  1595. .l-unit--suspended b,
  1596. .l-unit--outdated .l-unit__name,
  1597. .l-unit--outdated b {
  1598. color: #c0c0c0;
  1599. }
  1600. .l-unit--outdated .l-unit__name {
  1601. color: #333;
  1602. }
  1603. .l-unit--outdated b {
  1604. color: #4b4b4b;
  1605. }
  1606. .l-unit--suspended .l-percent {
  1607. border-color: #fff;
  1608. }
  1609. .l-unit--suspended .l-percent__fill {
  1610. background-color: #fff;
  1611. }
  1612. .l-unit--suspended .l-unit__name,
  1613. .l-unit--suspended .l-unit__name span {
  1614. color: #ADADAD;
  1615. }
  1616. .l-unit--suspended.selected .l-unit__name,
  1617. .l-unit--suspended.selected .l-unit__name span {
  1618. color: #777;
  1619. }
  1620. .l-unit--suspended.selected {
  1621. background-color: #f2eab8 !important;
  1622. color: #b2ac87 !important;
  1623. }
  1624. .l-unit--outdated.selected {
  1625. background: #765D5D !important;
  1626. color: #333 !important;
  1627. }
  1628. .l-unit--suspended.selected .l-unit__name,
  1629. .l-unit--suspended.selected b,
  1630. .l-unit--outdated.selected .l-unit__name,
  1631. .l-unit--outdated.selected b,
  1632. .l-unit--suspended.selected .l-percent,
  1633. .l-unit--suspended.selected .l-percent__fill,
  1634. .l-unit--suspended.selected .l-unit__name,
  1635. .l-unit--suspended.selected .l-unit__name span {
  1636. color: #333 !important;
  1637. }
  1638. .l-unit.selected .l-percent {
  1639. border-bottom: 1px dotted #777;
  1640. }
  1641. .l-unit--selected {
  1642. background-color: #d1eddc;
  1643. }
  1644. .l-unit-toolbar{
  1645. display: none;
  1646. }
  1647. .l-unit label {
  1648. margin-bottom: 20px;
  1649. }
  1650. .l-unit__columns {
  1651. display: table;
  1652. width: 100%;
  1653. }
  1654. .l-unit__col {
  1655. display: table-cell;
  1656. padding-top: 15px;
  1657. vertical-align: top;
  1658. padding-bottom: 15px;
  1659. cursor: default;
  1660. }
  1661. .l-unit__col--left {
  1662. width: 100px;
  1663. padding-right: 10px;
  1664. }
  1665. .units.compact .l-unit__col--left {
  1666. vertical-align: top;
  1667. }
  1668. .l-unit__col--left.step-left {
  1669. padding-left: 30px;
  1670. }
  1671. .l-unit__col--right.total {
  1672. padding-left: 16px;
  1673. }
  1674. .l-unit__col--right.back {
  1675. padding-left: 78px
  1676. }
  1677. .l-sort-toolbar .step-left {
  1678. padding-left: 40px;
  1679. }
  1680. .step-right {
  1681. padding-right: 40px;
  1682. }
  1683. .l-unit__date {
  1684. font-size: 11px;
  1685. margin-top: 10px;
  1686. padding-bottom: 30px;
  1687. text-transform: uppercase;
  1688. }
  1689. .l-unit__suspended {
  1690. display: none;
  1691. font-size: 0.8rem;
  1692. font-weight: 600;
  1693. margin-top: 36px;
  1694. text-transform: uppercase;
  1695. margin-bottom: 14px;
  1696. }
  1697. .units.compact .l-unit__suspended {
  1698. margin-top: 1px;
  1699. }
  1700. .l-unit--outdated .l-unit__suspended,
  1701. .l-unit--suspended .l-unit__suspended {
  1702. display: block;
  1703. }
  1704. .l-unit-ft .subtitle,
  1705. .l-unit .subtitle {
  1706. color: #cc3366;
  1707. font-size: 0.8rem;
  1708. font-weight: 600;
  1709. margin: 20px 0 18px 129px;
  1710. text-transform: uppercase;
  1711. }
  1712. .l-unit.l-unit--outdated .l-unit__date {
  1713. color: #d24c4c;
  1714. font-size: 10px;
  1715. text-transform: uppercase;
  1716. font-weight: 600;
  1717. }
  1718. .l-unit__name {
  1719. color: #414141;
  1720. font-size: 22px;
  1721. margin-top: 10px;
  1722. margin-bottom: 10px;
  1723. font-weight: 500;
  1724. letter-spacing: -0.02em;
  1725. }
  1726. .l-unit__servername {
  1727. color: #414141;
  1728. font-size: 28px;
  1729. margin-bottom: 10px;
  1730. font-weight: 300;
  1731. letter-spacing: -0.02em;
  1732. }
  1733. .l-unit__stats.separate,
  1734. .l-unit__name.separate {
  1735. padding-bottom: 15px;
  1736. }
  1737. .l-unit__name.small {
  1738. font-size: 16px;
  1739. }
  1740. .l-unit__name.small-2 {
  1741. font-size: 20px;
  1742. }
  1743. .l-unit__name span {
  1744. color: #999;
  1745. margin-left: 30px;
  1746. font-size: 0.85rem;
  1747. font-style: italic;
  1748. }
  1749. .l-unit__name span:first-of-type {
  1750. margin-left: 39px;
  1751. }
  1752. .l-unit__name b {
  1753. font-weight: normal;
  1754. font-style: italic;
  1755. }
  1756. .l-unit__ip {
  1757. margin-bottom: 26px;
  1758. font-size: 0.8rem;
  1759. color: #383838;
  1760. }
  1761. .l-unit__ip span {
  1762. padding-left: 3px;
  1763. padding-right: 3px;
  1764. }
  1765. .display-ip {
  1766. font-size: 0.8rem;
  1767. }
  1768. .display-ip span {
  1769. padding-left: 3px;
  1770. padding-right: 3px;
  1771. }
  1772. .l-unit__stats {
  1773. margin-bottom: 10px;
  1774. margin-left: 12%;
  1775. }
  1776. .l-unit__stats:hover {
  1777. border-left: 1px solid transparent !important;
  1778. border-right: 1px solid transparent !important;
  1779. box-shadow: none !important;
  1780. background: none !important;
  1781. }
  1782. .l-unit__stats table {
  1783. width: 100%;
  1784. table-layout: fixed;
  1785. }
  1786. .l-unit__stats td {
  1787. height: 22px;
  1788. padding-bottom: 3px;
  1789. vertical-align: top;
  1790. }
  1791. .l-unit__stat-col--left a, .l-unit__stat-col--left a:visited {
  1792. color: #353535;
  1793. }
  1794. .l-unit__stat-col--left a:hover {
  1795. color: #4c8bbe;
  1796. }
  1797. .l-unit__stat-col--left {
  1798. float: left;
  1799. width: 110px;
  1800. }
  1801. .l-unit__stat-col--left.border {
  1802. border-left: 1px solid #ebebeb;
  1803. }
  1804. .l-unit__stat-col--left.border-clear {
  1805. border-left: 1px solid transparent;
  1806. }
  1807. .l-unit__stat-col--left.super-compact {
  1808. width: 50px;
  1809. }
  1810. .l-unit__stat-col--left.compact {
  1811. width: 60px;
  1812. }
  1813. .l-unit__stat-col--left.compact-1 {
  1814. width: 70px;
  1815. }
  1816. .l-unit__stat-col--left.compact-2 {
  1817. width: 80px;
  1818. }
  1819. .l-unit__stat-col--left.compact-3 {
  1820. width: 90px;
  1821. }
  1822. .l-unit__stat-col--left.compact-4 {
  1823. width: 130px;
  1824. }
  1825. .l-unit__stat-col--left.compact-5 {
  1826. width: 160px;
  1827. }
  1828. .l-unit__stat-col--left.wide {
  1829. width: 190px;
  1830. }
  1831. .l-unit__stat-col--left.wide-2 {
  1832. width: 230px;
  1833. }
  1834. .l-unit__stat-col--left.wide-3 {
  1835. width: 250px;
  1836. }
  1837. .l-unit__stat-col--left.wide-4 {
  1838. width: 320px;
  1839. }
  1840. .l-unit__stat-col--left.wide-5 {
  1841. width: 350px;
  1842. }
  1843. .l-unit__stat-col--left.wide-6 {
  1844. width: 440px;
  1845. }
  1846. .l-unit__stat-col--left.wide-7 {
  1847. width: 550px;
  1848. }
  1849. .l-unit__stat-col--left.small-2 {
  1850. line-height: 11px;
  1851. }
  1852. .l-unit__stat-col--left.tiny {
  1853. font-size: 0.8rem;
  1854. }
  1855. .l-unit__stat-col--left.tiny b {
  1856. font-size: 18px;
  1857. }
  1858. .l-unit__stat-col--right {
  1859. float: left;
  1860. max-width: 152px;
  1861. }
  1862. .l-unit-toolbar__col--left {
  1863. float: left;
  1864. margin-left: -15px;
  1865. margin-top: 0;
  1866. padding-bottom: 0px;/* 8px */
  1867. padding-left: 15px;
  1868. padding-top: 15px;
  1869. width: 30px;
  1870. cursor: pointer;
  1871. display: none;
  1872. }
  1873. .l-unit-toolbar__col--right {
  1874. float: right;
  1875. }
  1876. body.mobile .l-unit-toolbar__col--right {
  1877. display: block;
  1878. }
  1879. .l-unit-toolbar .shortcut {
  1880. display: none;
  1881. }
  1882. .units.active .l-unit.focus .l-unit-toolbar .shortcut {
  1883. display: block;
  1884. background-color: #69a298;
  1885. border-radius: 13px;
  1886. color: #fff;
  1887. cursor: pointer;
  1888. display: block;
  1889. font-size: 0.8rem;
  1890. font-weight: 600;
  1891. line-height: 25px;
  1892. padding-left: 7px;
  1893. padding-right: 9px;
  1894. position: absolute;
  1895. right: 3px;
  1896. top: 3px;
  1897. }
  1898. .units.active .l-unit.focus .l-unit-toolbar .shortcut.delete {
  1899. font-size: 10px;
  1900. padding-left: 2px;
  1901. padding-right: 5px;
  1902. text-transform: capitalize;
  1903. }
  1904. .units.active .l-unit.focus .l-unit-toolbar .shortcut.enter {
  1905. font-size: 17px;
  1906. padding-left: 1px;
  1907. padding-right: 7px;
  1908. }
  1909. .units.active .l-unit.focus .l-unit-toolbar i {
  1910. background: none;
  1911. }
  1912. .l-unit__stat-col.volume {
  1913. font-size: 0.8rem;
  1914. line-height: 17px;
  1915. float: right;
  1916. }
  1917. .actions-panel__col {
  1918. display: inline-block;
  1919. min-width: 18px;
  1920. text-transform: uppercase;
  1921. }
  1922. .actions-panel__col a {
  1923. color: #777;
  1924. font-weight: 600;
  1925. font-size: 0.9rem;
  1926. display: inline-block;
  1927. cursor: pointer;
  1928. }
  1929. .lang-ru .actions-panel__col a {
  1930. font-size: 0.9rem;
  1931. padding-top: 1px;
  1932. }
  1933. .lang-tw .actions-panel__col a {
  1934. font-size: 0.9rem;
  1935. font-weight: normal;
  1936. line-height: 29px;
  1937. }
  1938. .lang-ar .actions-panel__col a {
  1939. font-size: 0.9rem;
  1940. font-weight: normal;
  1941. line-height: 31px;
  1942. }
  1943. .icon-pad-right {
  1944. margin-right: 5px;
  1945. }
  1946. .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 {
  1947. display: inline-block;
  1948. vertical-align: middle;
  1949. }
  1950. .l-icon-down-arrow {
  1951. width: 7px;
  1952. height: 15px;
  1953. background-position: -280px -128px;
  1954. }
  1955. .l-icon-up-arrow {
  1956. width: 7px;
  1957. height: 15px;
  1958. background-position: -299px -129px;
  1959. }
  1960. .l-icon-star {
  1961. width: 36px;
  1962. height: 36px;
  1963. background-position: -216px 560px;
  1964. cursor: pointer;
  1965. visibility: hidden;
  1966. }
  1967. .l-unit--starred .l-icon-star {
  1968. background-position: -174px 560px;
  1969. visibility: visible;
  1970. }
  1971. .selected .l-icon-star {
  1972. filter: contrast(70%);
  1973. -webkit-filter: contrast(70%);
  1974. }
  1975. .units.compact .l-icon-star {
  1976. margin-top: -14px;
  1977. }
  1978. .l-icon-star:hover {
  1979. background-position: 0px 560px;
  1980. }
  1981. .l-icon-star:active {
  1982. -background-position: -174px 560px;
  1983. background-position: -80px 562px;
  1984. }
  1985. .l-unit:hover .l-icon-star {
  1986. visibility: visible;
  1987. }
  1988. .l-icon-to-top {
  1989. width: 35px;
  1990. height: 35px;
  1991. background-position: -330px -68px;
  1992. }
  1993. .l-icon-to-top:hover {
  1994. background-position: -366px -68px;
  1995. }
  1996. .l-icon-to-top:active {
  1997. background-position: -402px -68px;
  1998. }
  1999. .l-icon-shortcuts {
  2000. width: 35px;
  2001. height: 35px;
  2002. background-position: -240px -281px;
  2003. border-radius: 18px;
  2004. }
  2005. .l-icon-shortcuts:hover {
  2006. background-position: -160px -281px;
  2007. }
  2008. .l-icon-shortcuts:active {
  2009. background-position: -198px -281px;
  2010. }
  2011. body.mobile .l-icon-to-top,
  2012. body.mobile .l-icon-shortcuts {
  2013. display: none;
  2014. }
  2015. .l-icon-star-orange {
  2016. width: 13px;
  2017. height: 13px;
  2018. background-position: -178px -97px;
  2019. }
  2020. .l-icon-star-blue {
  2021. width: 13px;
  2022. height: 13px;
  2023. background-position: -134px -97px;
  2024. }
  2025. .media-top {
  2026. vertical-align: top;
  2027. }
  2028. .l-unit__stat-cols {
  2029. padding-right: 10px;
  2030. }
  2031. .l-unit__stat-cols.last {
  2032. padding-right: 0;
  2033. }
  2034. .l-unit__stat-cols.graph {
  2035. width: 200px;
  2036. }
  2037. .l-unit__stat-cols.tiny {
  2038. font-size:11px;
  2039. line-height: 19px;
  2040. }
  2041. .l-percent {
  2042. border-bottom: 1px dotted #ccc;
  2043. margin-top: 1px;
  2044. width: 200px;
  2045. }
  2046. .l-percent__fill {
  2047. background-color: #aacc0d;
  2048. height: 3px;
  2049. position: relative;
  2050. bottom: -1px;
  2051. }
  2052. .to-top {
  2053. display: inline-block;
  2054. position: fixed;
  2055. top: 90%;
  2056. right: 4%;
  2057. border: 1px solid #ddd;
  2058. padding: 8px;
  2059. border-radius: 50%;
  2060. background-color: #eee;
  2061. text-shadow: 1px 1px #fff;
  2062. box-shadow: 0px 2px 4px rgba(120,120,120,0.25),
  2063. inset 0px 0px 1px rgba(255,255,255,0.9);
  2064. z-index: 200;
  2065. width: 16px;
  2066. height: 16px;
  2067. text-align: center;
  2068. }
  2069. .to-shortcuts {
  2070. display: inline-block;
  2071. position: fixed;
  2072. top: 90%;
  2073. right: 8%;
  2074. border: 1px solid #ddd;
  2075. padding: 8px;
  2076. border-radius: 50%;
  2077. background-color: #eee;
  2078. text-shadow: 1px 1px #fff;
  2079. box-shadow: 0px 2px 4px rgba(120,120,120,0.25),
  2080. inset 0px 0px 1px rgba(255,255,255,0.9);
  2081. z-index: 200;
  2082. height: 16px;
  2083. width: 16px;
  2084. text-align: center;
  2085. }
  2086. /*
  2087. #vstobjects {
  2088. margin-top: -1px;
  2089. }
  2090. */
  2091. #vstobjects .l-center {
  2092. padding-top: 20px;
  2093. padding-bottom: 30px;
  2094. font-size: 0.8rem;
  2095. }
  2096. .timer-container {
  2097. margin-top: 4px;
  2098. }
  2099. .timer-container .refresh-timer {
  2100. border: 2px solid #9f9f9f;
  2101. border-radius: 14px;
  2102. height: 14px;
  2103. width: 14px;
  2104. float: left;
  2105. margin: 2px 10px 0 0;
  2106. }
  2107. .timer-container .refresh-timer.paused {
  2108. border: 2px solid #9f9f9f;
  2109. }
  2110. .timer-container .refresh-timer.paused .loader-half.right,
  2111. .timer-container .refresh-timer.paused .loader-half.dark {
  2112. background-color: #9d9f9f;
  2113. }
  2114. .timer-container .loader-half {
  2115. border-radius: 0 14px 14px 0;
  2116. height: 14px;
  2117. width: 7px;
  2118. float: left;
  2119. }
  2120. .timer-container .loader-half.left {
  2121. border-radius: 14px 0 0 14px;
  2122. background-color: #fff;
  2123. }
  2124. .timer-container .loader-half.right {
  2125. margin-left: 7px;
  2126. background-color: #9f9f9f;
  2127. }
  2128. .timer-container .loader-half.dark {
  2129. background-color: #9f9f9f;
  2130. }
  2131. .timer-container .movement {
  2132. float: left;
  2133. width: 14px;
  2134. height: 14px;
  2135. position: absolute;
  2136. }
  2137. .timer-container .movement.left {
  2138. z-index: 10;
  2139. }
  2140. .timer-container .movement.right {
  2141. transform: rotate(180deg);
  2142. -webkit-transform: rotate(180deg);
  2143. }
  2144. .timer-container .timer-button {
  2145. cursor: pointer;
  2146. text-decoration: underline;
  2147. margin: 7px 0 0 38px;
  2148. width: 15px;
  2149. float: left;
  2150. height: 10px;
  2151. }
  2152. .timer-container .timer-button.pause {
  2153. background: url(/images/pause.png) no-repeat ;
  2154. }
  2155. .timer-container .timer-button.play {
  2156. background: url(/images/start.png) no-repeat;
  2157. }
  2158. .uppercase {
  2159. text-transform: uppercase;
  2160. }
  2161. .title b,
  2162. .title {
  2163. color: #cc3366;
  2164. font-size: 0.8rem;
  2165. font-weight: 600;
  2166. padding: 0 30px 0px 73px;
  2167. line-height: 30px;
  2168. text-transform: uppercase;
  2169. }
  2170. .title {
  2171. display: inline-block;
  2172. float: left;
  2173. }
  2174. /* form styles */
  2175. .vst-error {
  2176. color: #ff3333;
  2177. font-weight: 600;
  2178. overflow: hidden;
  2179. max-width: 500px;
  2180. text-overflow: ellipsis;
  2181. white-space: nowrap;
  2182. }
  2183. .vst-ok {
  2184. color: #53ba55;
  2185. overflow: hidden;
  2186. max-width: 500px;
  2187. text-overflow: ellipsis;
  2188. white-space: nowrap;
  2189. font-size: 0.8rem;
  2190. }
  2191. .l-unit-toolbar__buttonstrip .vst-ok, .l-unit-toolbar__buttonstrip .vst-error {
  2192. margin-right: 20px;
  2193. }
  2194. .vst-ok a {
  2195. color: #326b9b;
  2196. }
  2197. .vst-ok a:hover {
  2198. color: #cc3366;
  2199. }
  2200. .vst-ok a:active {
  2201. color: #d53067;
  2202. }
  2203. .data {
  2204. margin: 0 0 90px 0;
  2205. }
  2206. .data-col1 {
  2207. width: 148px;
  2208. }
  2209. .data-col1 td {
  2210. padding: 10px 0 0 5px;
  2211. }
  2212. .data-col1 tr:first-child td {
  2213. padding: 59px 0 0 5px;
  2214. }
  2215. .login-box td,
  2216. .data td {
  2217. color: #4b4b4b;
  2218. font-size: 0.85rem;
  2219. padding-bottom: 3px;
  2220. font-weight: 600;
  2221. }
  2222. .input-label {
  2223. padding-top: 20px;
  2224. }
  2225. .data input[type="checkbox"] {
  2226. display: inline;
  2227. cursor: pointer;
  2228. }
  2229. .step-top {
  2230. padding-top: 18px;
  2231. }
  2232. .step-top-small {
  2233. padding-top: 14px;
  2234. }
  2235. .jump-top {
  2236. margin-top: -60px;
  2237. }
  2238. .jump-small-top {
  2239. margin-top: -12px;
  2240. }
  2241. .float-right {
  2242. display: inline-block;
  2243. float: right;
  2244. }
  2245. .data a {
  2246. text-decoration: none;
  2247. }
  2248. label {
  2249. cursor: pointer;
  2250. }
  2251. label:hover {
  2252. color: #333;
  2253. }
  2254. .vst-input {
  2255. background-color: #fff;
  2256. border: 1px solid #cfcfcf;
  2257. border-radius: 4px;
  2258. color: #4e4e4e;
  2259. font-family: 'Exo', Arial, Arial, Helvetica, sans-serif;
  2260. font-size: 0.8rem;
  2261. height: 20px;
  2262. margin: 2px 6px 0 0;
  2263. padding: 8px 3px 8px 14px;
  2264. width: 360px;
  2265. font-weight: normal;
  2266. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2267. }
  2268. .vst-input:hover {
  2269. border: 1px solid #94c8f0;
  2270. }
  2271. .vst-input:focus {
  2272. border: 1px solid #008fee;
  2273. background-color: #D7F9FF;
  2274. color: #333;
  2275. }
  2276. .vst-input:disabled,
  2277. .vst-list:disabled {
  2278. background-color: #e7e7e7;
  2279. text-shadow: 1px 1px rgba(255,255,255,1);
  2280. color: #686868;
  2281. }
  2282. .vst-input:focus:disabled {
  2283. border-color: #f1f1f1;
  2284. background-color: #f1f1f1;
  2285. }
  2286. .vst-input:disabled:hover,
  2287. .vst-list:disabled:hover {
  2288. border-color: #cfcfcf;
  2289. }
  2290. .vst-input.long {
  2291. width: 832px;
  2292. }
  2293. .vst-input.short {
  2294. width: 200px;
  2295. }
  2296. .vst-input.vst-list-editor {
  2297. border: none;
  2298. box-shadow: none;
  2299. position: absolute;
  2300. margin-top:-34px;
  2301. margin-left: 1px;
  2302. display: block;
  2303. width: 340px;
  2304. height: 1rem;
  2305. }
  2306. .vst-input.vst-list-editor:focus {
  2307. background-color: white;
  2308. }
  2309. .vst-list {
  2310. background-color: #fff;
  2311. border: 1px solid #ccc;
  2312. border-radius: 4px;
  2313. color: #4e4e4e;
  2314. font-family: 'Exo', Arial, Helvetica,sans-serif;
  2315. font-size: 0.8rem;
  2316. font-weight: normal;
  2317. height: 36px;
  2318. cursor: pointer;
  2319. margin: 2px 6px 0 0;
  2320. min-width: 380px;
  2321. padding: 4px 1px 4px 10px;
  2322. background-image: url("/images/arrow.png");
  2323. background-position: 360px;
  2324. background-repeat: no-repeat;
  2325. width: 380px;
  2326. appearance:none;
  2327. -moz-appearance:none;
  2328. -webkit-appearance:none;
  2329. text-shadow: 0 0 0 #4b4b4b;
  2330. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2331. }
  2332. select.vst-list:-moz-focusring {
  2333. color:transparent;
  2334. }
  2335. .vst-list.long-2 {
  2336. width: 486px;
  2337. background-position: 465px;
  2338. }
  2339. .vst-list option {
  2340. padding: 6px 1px 6px 15px;
  2341. }
  2342. .vst-list:hover {
  2343. border: 1px solid #94c8f0;
  2344. }
  2345. .vst-list:focus {
  2346. border: 1px solid #008fee;
  2347. color: #333;
  2348. }
  2349. .vst-list.flat {
  2350. border: 1px solid #fff;
  2351. color: #326b9b;
  2352. text-transform: uppercase;
  2353. font-weight: 600;
  2354. font-size: 0.8rem;
  2355. margin-left: -10px;
  2356. text-shadow: none !important;
  2357. box-shadow: none !important;
  2358. }
  2359. .vst-list.flat:hover {
  2360. color: #cc3366;
  2361. }
  2362. .vst-list.flat option {
  2363. color: #4e4e4e;
  2364. }
  2365. .vst-text {
  2366. cursor: default;
  2367. }
  2368. a.vst-text,
  2369. a.vst-text b{
  2370. color: #326b9b;
  2371. }
  2372. a.vst-text:hover,
  2373. a.vst-text:hover b{
  2374. color: #cc3366;
  2375. }
  2376. a.vst-text:active,
  2377. a.vst-text:active b{
  2378. color: #cc3366;
  2379. }
  2380. .advanced-options {
  2381. background: linear-gradient(to bottom, rgba(247,247,247,1) 0%,rgba(255,255,255,1) 100%) !important;
  2382. border: 1px solid #ddd !important;
  2383. text-shadow: 0px 1px rgba(255,255,255,0.95);
  2384. 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;
  2385. color: #30659d !important;
  2386. padding: 4px 0px 0px 18px;
  2387. overflow: hidden;
  2388. height: 28px;
  2389. }
  2390. .advanced-options a {
  2391. color: #30659d !important;
  2392. }
  2393. .advanced-options .fas {
  2394. margin-right: 20px;
  2395. width: 14px;
  2396. }
  2397. .vst-textinput {
  2398. background-color: #fff;
  2399. border: 1px solid #cfcfcf;
  2400. border-radius: 4px;
  2401. color: #4e4e4e;
  2402. font-size: 0.8rem;
  2403. padding: 5px;
  2404. width: 560px;
  2405. height: 60px;
  2406. font-family: 'Exo', Arial, Helvetica, sans-serif;
  2407. padding: 7px 1px 3px 14px;
  2408. font-weight: normal;
  2409. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2410. }
  2411. .vst-textinput:hover {
  2412. border: 1px solid #94c8f0;
  2413. }
  2414. .vst-textinput:focus {
  2415. border: 1px solid #008fee;
  2416. background-color: #D7F9FF;
  2417. color: #333;
  2418. }
  2419. .vst-textinput:disabled {
  2420. background-color: #f1f1f1;
  2421. }
  2422. .vst-textinput.console{
  2423. font-size: 0.8rem;
  2424. width: 630px;
  2425. height: 300px;
  2426. font-family: "Inconsolata", "Lucida Console", Monaco, monospace;
  2427. white-space: pre;
  2428. }
  2429. .vst-textinput.short {
  2430. width: 360px;
  2431. }
  2432. #advanced-options .console{
  2433. width: 833px;
  2434. height: 600px;
  2435. }
  2436. .generate {
  2437. color: #326b9b;
  2438. text-decoration: underline;
  2439. cursor: pointer;
  2440. margin-left: -3px;
  2441. padding: 0 3px;
  2442. }
  2443. .generate:hover {
  2444. background-color: #cc3366;
  2445. border-color: #cc3366;
  2446. color: #fff;
  2447. }
  2448. .generate:active {
  2449. background-color: #F7D616;
  2450. border-color: #F7D616;
  2451. }
  2452. .vst-advanced {
  2453. border-bottom: 0px solid #326b9b;
  2454. color: #326b9b;
  2455. font-size: 0.8rem;
  2456. padding: 2px 2px 0;
  2457. text-decoration: none;
  2458. text-transform: none;
  2459. }
  2460. .login-box .vst-advanced:hover {
  2461. color: #cc3366;
  2462. background-color: transparent;
  2463. border-color: transparent;
  2464. font-size: 0.85em !important;
  2465. box-shadow: none !important;
  2466. background: none !important;
  2467. border: none !important
  2468. }
  2469. .vst-advanced:hover {
  2470. color: #fff;
  2471. background-color: #cc3366;
  2472. border-color: #cc3366;
  2473. text-decoration: none;
  2474. }
  2475. .login-box .vst-advanced:active {
  2476. color: #fff;
  2477. background-color: #F7D616;
  2478. border-color: #F7D616;
  2479. text-decoration: none;
  2480. font-size: 0.85em !important;
  2481. box-shadow: none !important;
  2482. background: none !important;
  2483. border: none !important
  2484. }
  2485. .vst-advanced:active {
  2486. font-size: unset;
  2487. }
  2488. .login-box .vst-advanced {
  2489. border-bottom: none;
  2490. color: #326b9b;
  2491. font-size: 10px;
  2492. padding: 2px 2px 0;
  2493. text-decoration: none;
  2494. text-transform: uppercase;
  2495. font-size: 0.85em !important;
  2496. box-shadow: none !important;
  2497. background: none !important;
  2498. border: none !important
  2499. }
  2500. .vst-checkbox {
  2501. font-size: 0.85rem;
  2502. margin: 2px 6px 0 3px;
  2503. padding: 5px;
  2504. }
  2505. .lets-encrypt-note {
  2506. color: #89a40a !important;
  2507. font-style: italic;
  2508. font-weight: normal !important;
  2509. height: 30px;
  2510. padding-top: 10px;
  2511. vertical-align: top;
  2512. }
  2513. .additional-control {
  2514. margin-left: 17px;
  2515. color: #326b9b;
  2516. border-bottom: 0px solid #326b9b;
  2517. font-size: 0.8rem;
  2518. cursor: pointer;
  2519. text-transform: uppercase;
  2520. font-weight: 600;
  2521. padding: 2px 2px 0;
  2522. text-decoration: none;
  2523. }
  2524. .additional-control:hover {
  2525. background-color: #cc3366;
  2526. border-color: #cc3366;
  2527. color: #fff;
  2528. }
  2529. .additional-control:active {
  2530. color: #fff;
  2531. background-color: #aaa;
  2532. }
  2533. .additional-control.ftp-remove-user {
  2534. padding: 2px 0 0 0;
  2535. }
  2536. .additional-control.delete:hover,
  2537. .additional-control.ftp-remove-user:hover {
  2538. background-color: #FF3438;
  2539. border-color: #FF3438;
  2540. }
  2541. .additional-control.delete:active,
  2542. .additional-control.ftp-remove-user:active {
  2543. background-color: #FF5F5F;
  2544. border-color: #FF5F5F;
  2545. }
  2546. .additional-control.add:hover {
  2547. background-color: #3b9de8;
  2548. border-color: #3b9de8;
  2549. }
  2550. .additional-control.add:active{
  2551. background-color: #54a6e5;
  2552. border-color: #54a6e5;
  2553. }
  2554. .additional-control.remove-ns {
  2555. display: none;
  2556. }
  2557. .data .step-left {
  2558. padding-left: 50px;
  2559. }
  2560. .hide-password {
  2561. color: #2361a1;
  2562. margin-left: -36px;
  2563. padding-left: 3px;
  2564. z-index: 1;
  2565. }
  2566. .toggle-psw-visibility-icon {
  2567. cursor: pointer;
  2568. opacity: 1;
  2569. margin: -2px;
  2570. }
  2571. .show-passwords-enabled-action {
  2572. opacity: 0.4;
  2573. }
  2574. .ftp-path-value,
  2575. .hint,
  2576. td.hint {
  2577. color: #777;
  2578. font-size: 0.85rem;
  2579. font-style: italic;
  2580. font-weight: normal;
  2581. }
  2582. .ftp-path-prefix { padding-top: 12px; font-size: 0.8rem; color: #555; }
  2583. .ui-dialog .ui-dialog-buttonpane button {
  2584. box-shadow: 0px 1px 4px rgba(0,0,0,0.2),
  2585. inset 0px 0px 1px #fff,
  2586. inset 0px 0px 3px rgba(255,255,255,0.5) !important;
  2587. }
  2588. .ui-dialog .ui-dialog-buttonpane {
  2589. margin-bottom: -6px !important;
  2590. padding: 0 !important;
  2591. }
  2592. .ui-button, .button, .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit, .vst-advanced {
  2593. filter:chroma(color=#000);
  2594. cursor: pointer;
  2595. border-radius: 3px 3px 3px 3px !important;
  2596. font-size: 1.05em !important;
  2597. font-weight: 500 !important;
  2598. padding: 2px 16px 3px 20px !important;
  2599. min-width: 100px !important;
  2600. height: 28px !important;
  2601. color: #30659d !important;
  2602. border: 1px solid #0083db !important;
  2603. background-color: #3b9de8 !important;
  2604. 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;
  2605. box-shadow: 0px 1px 3px rgba(0,0,0,0.25),
  2606. inset 0px 0px 1px #fff,
  2607. inset 0px 0px 3px rgba(255,255,255,0.5) !important;
  2608. text-shadow: 0px 1px 1px rgba(255,255,255,0.85) !important;
  2609. }
  2610. .ui-button:hover, .button:hover, .ui-button.cancel:hover, .button.cancel:hover,
  2611. .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit:hover,
  2612. .vst-advanced:hover, .to-top:hover, .to-shortcuts:hover {
  2613. color: #0077c6 !important;
  2614. text-shadow: 1px 1px rgba(255,255,255,0.5) !important;
  2615. border: 1px solid #54a6e5 !important;
  2616. 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;
  2617. box-shadow: 0px 1px 3px rgba(0,0,0,0.25),
  2618. inset 0px 0px 1px #fff,
  2619. inset 0px 0px 6px rgba(255,255,255,0.6) !important;
  2620. transition: 0.2s;
  2621. }
  2622. .ui-button:focus,.ui-button:active,
  2623. .button:active,.button:focus,.ui-button.cancel:focus,.ui-button.cancel:active,
  2624. .button.cancel:active,.button.cancel:focus,
  2625. .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit:active,
  2626. .vst-advanced:active,.to-top:focus, .to-shortcuts:focus {
  2627. border: 1px solid #0066b4 !important;
  2628. background: linear-gradient(to bottom, rgba(194,224,248,1) 0%, rgba(162,207,244,1) 51%, rgba(210,232,250,1) 100%) !important;
  2629. color: #517bab !important;
  2630. text-shadow: 0px -1px 2px rgba(255,255,255,0.85) !important;
  2631. box-shadow: 0px 1px 2px rgba(0,0,0,0.2),
  2632. inset 0px 0px 1px #fff,
  2633. inset -1px -1px 4px rgba(220,220,220,0.4) !important;
  2634. }
  2635. .ui-button-text-only {
  2636. border: 0px !important;
  2637. background: transparent !important;
  2638. box-shadow: none !important;
  2639. text-shadow: 0px 1px rgba(255,255,255,0.5);
  2640. }
  2641. .ui-dialog .ui-dialog-buttonpane button span.ui-button-text {
  2642. padding: 2px !important;
  2643. font-size: 0.85rem !important;
  2644. }
  2645. .ui-dialog .ui-button:hover span {
  2646. color: #046c98 !important;
  2647. }
  2648. .ui-button-text-only .selected {
  2649. font-weight: 600 !important;
  2650. }
  2651. .ui-button.cancel,
  2652. .button.cancel,
  2653. .to-top, .to-shortcuts {
  2654. color: #717171 !important;
  2655. border: 1px solid #aaaaaa !important;
  2656. 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;
  2657. }
  2658. .ui-button-text {
  2659. padding: 0px !important;
  2660. color: #30659d !important;
  2661. }
  2662. .ui-button.cancel:active,
  2663. .button.cancel:active,
  2664. .to-top:active, .to-shortcuts:active {
  2665. border: 1px solid #378ccd;
  2666. background-color: #378ccd;
  2667. }
  2668. a.button.cancel {
  2669. padding: 8px 38px;
  2670. text-transform: capitalize;
  2671. }
  2672. .ui-dialog button.cancel {
  2673. color: #000;
  2674. border: 1px solid #4b4b4b;
  2675. background-color: #4b4b4b;
  2676. }
  2677. .ui-button.danger:hover, .button.danger:hover {
  2678. background: linear-gradient(to bottom, #fbf2f1 0%,#f7cac5 50%,#f6b4ac 51%,#fde6e3 100%) !important;
  2679. color: #F4301A !important;
  2680. text-shadow: 0px 1px rgba(255,255,255,0.5) !important;
  2681. border: 1px solid #F27E71 !important;
  2682. }
  2683. .ui-button.danger:active, .button.danger:active, .ui-button.danger:focus, .button.danger:focus {
  2684. background: linear-gradient(to bottom, #fcd0ca 0%,#f5a69d 50%,#f9e3df 100%) !important;
  2685. color: #ce1500 !important;
  2686. text-shadow: 0px 1px 1px rgba(255,255,255,0.2),
  2687. 0px -1px 1px rgba(255,255,255,0.6) !important;
  2688. border: 1px solid #F4301A !important;
  2689. }
  2690. .ui-button span {
  2691. color: #fff;
  2692. }
  2693. .ui-button:hover span {
  2694. color: #4b4b4b !important;
  2695. }
  2696. .ui-button:active span {
  2697. color: #4b4b4b;
  2698. }
  2699. .ui-button.cancel span {
  2700. color: #777;
  2701. }
  2702. .ui-button:hover span {
  2703. color: #fff;
  2704. }
  2705. .ui-button:active span {
  2706. color: #fff;
  2707. }
  2708. .ui-dialog button.cancel span {
  2709. color: #777 !important;
  2710. }
  2711. .unlim-trigger {
  2712. cursor: pointer;
  2713. padding-left: 4px;
  2714. margin-bottom: -2px;
  2715. margin-left: -42px;
  2716. z-index: 1;
  2717. }
  2718. .optional {
  2719. font-size: 0.8rem;
  2720. padding: 0 0 0 6px;
  2721. font-weight: normal;
  2722. }
  2723. .data-active b {
  2724. color: #3b9de8;
  2725. font-size: 0.8rem;
  2726. text-transform: uppercase;
  2727. }
  2728. .data-suspended b {
  2729. color: #A3A3A3;
  2730. font-size: 0.8rem;
  2731. font-weight: 600;
  2732. text-transform: uppercase;
  2733. }
  2734. .data-date {
  2735. font-weight: normal;
  2736. color: #777;
  2737. font-size: 0.8rem;
  2738. line-height: 23px;
  2739. }
  2740. .data-dotted {
  2741. vertical-align: top;
  2742. }
  2743. .mail-infoblock-td {
  2744. vertical-align: top;
  2745. }
  2746. .mail-infoblock {
  2747. font-size: 0.85rem;
  2748. color: #777;
  2749. border: 1px solid #d9d9d9;
  2750. padding: 0px 5px 12px 20px;
  2751. margin-top: 83px;
  2752. min-width: 320px;
  2753. overflow: hidden;
  2754. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2755. border-radius: 5px;
  2756. }
  2757. .mail-infoblock:hover {
  2758. overflow: visible;
  2759. }
  2760. .mail-infoblock td {
  2761. color: #505050;
  2762. font-size: 0.75rem;
  2763. height: 20px;
  2764. font-weight: normal;
  2765. }
  2766. .mail-infoblock td:first-child{
  2767. padding-right: 14px;
  2768. font-weight: 600;
  2769. }
  2770. .mail-infoblock div {
  2771. white-space: nowrap;
  2772. }
  2773. .mail-infoblock a {
  2774. color: #326b9b;
  2775. }
  2776. .mail-infoblock a:hover {
  2777. color: #cc3366;
  2778. }
  2779. .additional-info {
  2780. margin-top: 30px;
  2781. width: 547px;
  2782. }
  2783. .additional-info td {
  2784. font-size: 0.8rem;
  2785. height: 22px;
  2786. font-weight: normal;
  2787. }
  2788. .additional-info td.details {
  2789. padding-left: 20px;
  2790. }
  2791. :focus {outline:none;}
  2792. ::-moz-focus-inner {border:0;}
  2793. .login {
  2794. background-color: rgba(255,255,255,0.7);
  2795. box-shadow: 0px 8px 25px rgba(0,0,0, 0.3),
  2796. inset 0px 0px 2px rgba(255,255,255,1);
  2797. font-family: 'Exo', Tahoma, Arial, Helvetica, sans-serif;
  2798. margin: 0;
  2799. padding: 0;
  2800. text-align: left;
  2801. vertical-align: top;
  2802. width: 500px;
  2803. border-radius: 6px;
  2804. cursor: default;
  2805. }
  2806. .login .vst-input {
  2807. border-color: #5787c8;
  2808. }
  2809. .login .button {
  2810. font-size: 0.8rem !important;
  2811. }
  2812. .login-welcome {
  2813. font-size: 1.05rem !important;
  2814. font-weight: 500 !important;
  2815. padding-bottom: 30px !important;
  2816. font-weight: 600;
  2817. }
  2818. .page-title {
  2819. font-size: 1.3rem !important;
  2820. font-weight: 400 !important;
  2821. padding-bottom: 30px !important;
  2822. letter-spacing: -0.01em;
  2823. cursor: default;
  2824. }
  2825. .qr-code {
  2826. border: 1px solid #cfcfcf;
  2827. border-radius: 4px;
  2828. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  2829. }
  2830. .password-option {
  2831. margin-top: 15px;
  2832. }
  2833. .login a.error {
  2834. color: #BE5ABF;
  2835. font-size: 0.8rem;
  2836. }
  2837. .hestiacp {
  2838. color: #505050;
  2839. }
  2840. .hestiacp:hover {
  2841. color: #326b9b;
  2842. }
  2843. .hestiacp:active {
  2844. color: #cc3366;
  2845. }
  2846. .login-bottom {
  2847. height: 60px;
  2848. text-align: right;
  2849. vertical-align: top;
  2850. font-size: 0.75rem !important;
  2851. margin-right: 65px;
  2852. }
  2853. .l-unit.selected {
  2854. background-color: #f8f8f8;
  2855. color: #4b4b4b;
  2856. box-shadow: 0px 2px 10px rgba(150,150,150,0.20);
  2857. text-shadow: 0px 1px rgba(255,255,255,0.5);
  2858. border-left: 1px solid #ddd;
  2859. border-right: 1px solid #ddd;
  2860. }
  2861. .l-unit.selected:hover {
  2862. background-color: #fff5ce;
  2863. color: #4b4b4b;
  2864. box-shadow: 0px 2px 14px rgba(150,150,150,0.25);
  2865. text-shadow: 0px 1px rgba(255,255,255,0.6);
  2866. }
  2867. .l-unit.selected b,
  2868. .l-unit.selected strong {
  2869. color: #4b4b4b;
  2870. }
  2871. /* MAIN MENU COLLAPSED */
  2872. .collapsed .l-stat {
  2873. padding-top: 20px;
  2874. }
  2875. .collapsed .l-stat__col a {
  2876. height: 0;
  2877. min-height: 0;
  2878. overflow: hidden;
  2879. }
  2880. .collapsed .l-stat__col-title {
  2881. padding-top: 2px;
  2882. }
  2883. div.l-content.collapsed > div.l-separator:nth-of-type(2) {
  2884. margin-top: 93px;
  2885. position: fixed;
  2886. }
  2887. div.l-content.collapsed > div.l-separator:nth-of-type(4) {
  2888. margin-top: 138px;
  2889. position: fixed;
  2890. }
  2891. div.l-content.collapsed .l-sort {
  2892. margin-top: 94px;
  2893. }
  2894. .l-content > .units.l-center::before {
  2895. content: '';
  2896. display: block;
  2897. height: 225px;
  2898. }
  2899. .console-output {
  2900. font-family: "Inconsolata", "Lucida Console", Monaco, monospace;
  2901. font-size: 0.92rem;
  2902. color: #202020;
  2903. }
  2904. form#vstobjects {
  2905. padding-top: 240px;
  2906. }
  2907. form#vstobjects.suspended {
  2908. background-color: #fff;
  2909. padding-bottom: 30px;
  2910. }
  2911. #add-icon {
  2912. width: 45px;
  2913. height: 45px;
  2914. display: inline-block;
  2915. z-index: 3;
  2916. }
  2917. .l-sort__create-btn.restore #add-icon {
  2918. background-position: -378px -250px;
  2919. }
  2920. .l-sort__create-btn.edit #add-icon {
  2921. background-position: -378px -154px;
  2922. }
  2923. #tooltip {
  2924. background-color: #3b9de8;
  2925. border-radius: 15px;
  2926. bottom: 6px;
  2927. color: #fff;
  2928. font-size: 0.8rem;
  2929. font-weight: 600;
  2930. height: 26px;
  2931. left: 12px;
  2932. letter-spacing: 0;
  2933. line-height: 25px;
  2934. margin-left: 12px;
  2935. margin-top: 7px;
  2936. padding: 3px 14px 3px 27px;
  2937. position: absolute;
  2938. text-transform: uppercase;
  2939. white-space: nowrap;
  2940. word-break: keep-all;
  2941. z-index: -1;
  2942. }
  2943. .l-sort__create-btn:active #add-icon {
  2944. background-position: -425px -107px;
  2945. }
  2946. .l-sort__create-btn.restore:active #add-icon {
  2947. background-position: -425px -250px !important;
  2948. }
  2949. .l-sort__create-btn.edit:active #add-icon {
  2950. background-position: -425px -154px !important;
  2951. }
  2952. .l-sort__create-btn.edit:hover #tooltip {
  2953. background-color: #3b9de8;
  2954. }
  2955. .l-sort__create-btn.edit:active #tooltip {
  2956. background-color: #3BF0E6 !important;
  2957. }
  2958. .l-sort__create-btn:active #tooltip {
  2959. background-color: #54a6e5;
  2960. }
  2961. .pill {
  2962. border-radius: 12px;
  2963. display: inline-block;
  2964. text-shadow: 0px 1px 2px rgba(0,0,0,0.4);
  2965. }
  2966. .pill.usage{
  2967. margin-top: 8px;
  2968. font-size: 0.75rem;
  2969. padding: 4px;
  2970. padding-left: 8px;
  2971. padding-right: 8px;
  2972. margin-right: 10px;
  2973. line-height: 0.75rem;
  2974. box-shadow: 0px 1px 1px rgba(0,0,0,0.35), inset 0px 1px 0px rgba(0,0,0,0.1);
  2975. background-color: rgba(255,255,255,0.75);
  2976. font-weight: 500;
  2977. border: 1px solid rgba(255,255,255,0.75);
  2978. text-shadow: 0px 1px 1px rgba(255,255,255,0.6);
  2979. color: #30659d;
  2980. }
  2981. .pill.usage b { color: #30659d; }
  2982. .badge {
  2983. display: inline-block;
  2984. min-width: 24px;
  2985. min-height: 24px;
  2986. line-height: 24px;
  2987. border-radius: 50%;
  2988. font-weight: 700;
  2989. font-size: 0.75rem;
  2990. box-shadow: 0px 1px 2px rgba(70,70,70,0.5),
  2991. inset 0px 2px 2px #fff;
  2992. text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
  2993. border: 1px solid #b8b8b8 !important;
  2994. }
  2995. .badge.large {
  2996. min-width: 48px;
  2997. min-height: 48px;
  2998. line-height: 48px;
  2999. }
  3000. .badge.raised {
  3001. background: radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.05) 100%);
  3002. }
  3003. .l-unit--suspended .badge {
  3004. background: #eaeaea !important;
  3005. color: #c0c0c0 !important;
  3006. text-shadow: 0px -1px #fafafa !important;
  3007. box-shadow: 0px 1px 2px rgba(120,120,120,0.3) !important;
  3008. }
  3009. .pill.gray, .badge.gray {
  3010. border: 1px solid #fff;
  3011. background-color: #eaeaea;
  3012. color: #6c6c6c;
  3013. text-shadow: 0px 1px #fafafa !important;
  3014. }
  3015. .pill.blue, .badge.blue {
  3016. border: 1px solid #fff;
  3017. background-color: #316198;
  3018. color: #fff;
  3019. }
  3020. .pill.purple, .badge.purple {
  3021. border: 1px solid #fff;
  3022. background-color: #8e2fca;
  3023. color: #fff;
  3024. }
  3025. .pill.teal, .badge.teal {
  3026. border: 1px solid #fff;
  3027. background-color: #33cccc;
  3028. color: #fff;
  3029. }
  3030. .pill.maroon, .badge.maroon {
  3031. border: 1px solid #fff;
  3032. background-color: #cc3366;
  3033. color: #fff;
  3034. }
  3035. .pill.red, .badge.red {
  3036. border: 1px solid #fff;
  3037. background-color: #ff3333;
  3038. color: #fff;
  3039. }
  3040. .pill.orange, .badge.orange {
  3041. border: 1px solid #fff;
  3042. background-color: #f6a800;
  3043. color: #fff;
  3044. }
  3045. .pill.green, .badge.green {
  3046. border: 1px solid #fff;
  3047. background-color: #53ba55;
  3048. color: #fff;
  3049. }
  3050. .pill.lightblue, .badge.lightblue {
  3051. border: 1px solid #fff;
  3052. background-color: #6eb6f0;
  3053. color: #fff;
  3054. }
  3055. .status-icon.large {
  3056. font-size: 1rem;
  3057. }
  3058. .status-icon.yellow, .status-icon.yellow:hover {
  3059. color: #f3e72c;
  3060. }
  3061. .status-icon.teal, .status-icon.teal:hover {
  3062. color: #33cccc;
  3063. }
  3064. .status-icon.purple, .status-icon.purple:hover {
  3065. color: #8e2fca;
  3066. }
  3067. .status-icon.maroon, .status-icon.maroon:hover {
  3068. color: #cc3366;
  3069. }
  3070. .status-icon.red, .status-icon.red:hover {
  3071. color: #ff3333;
  3072. }
  3073. .status-icon.green, .status-icon.green:hover {
  3074. color: #53ba55;
  3075. }
  3076. .status-icon.orange, .status-icon.orange:hover {
  3077. color: #ffc043;
  3078. }
  3079. .status-icon.lightblue, .status-icon.lightblue:hover {
  3080. color: #6eb6f0;
  3081. }
  3082. .status-icon.highlight, .status-icon.highlight:hover {
  3083. color: #323232;
  3084. }
  3085. .status-icon.blue, .status-icon.blue:hover {
  3086. color: #326b9b;
  3087. }
  3088. .status-icon.dim {
  3089. color: #ddd;
  3090. text-shadow: 1px 1px rgba(255,255,255,0.3);
  3091. }
  3092. .status-icon.dim {
  3093. color: #ddd;
  3094. text-shadow: 1px 1px rgba(255,255,255,0.3);
  3095. }
  3096. .l-unit--suspended .status-icon.dim {
  3097. color: #c0c0c0 !important;
  3098. text-shadow: 0px !important;
  3099. }
  3100. .noselect {
  3101. -webkit-touch-callout: none;
  3102. -webkit-user-select: none;
  3103. -khtml-user-select: none;
  3104. -moz-user-select: none;
  3105. -ms-user-select: none;
  3106. -user-select: none;
  3107. }
  3108. .search-input {
  3109. background-color: #fff;
  3110. border: 1px solid #ddd;
  3111. height: 26px;
  3112. line-height: 28px;
  3113. padding-left: 7px;
  3114. float: left;
  3115. width: 120px;
  3116. border-top-left-radius: 4px;
  3117. border-bottom-left-radius: 4px;
  3118. border-right: 0;
  3119. /* visibility: hidden;*/
  3120. -webkit-transition: width .2s ease-out;
  3121. -moz-transition: width .2s ease-out;
  3122. -o-transition: width .2s ease-out;
  3123. transition: width .2s ease-out;
  3124. }
  3125. .lang-ru .search-input{
  3126. width: 74px;
  3127. }
  3128. .lang-ru .search-input.activated{
  3129. width: 70px;
  3130. }
  3131. .search-input.activated{
  3132. width: 120px;
  3133. visibility: visible;
  3134. }
  3135. .search-input:focus {
  3136. /*
  3137. background-color: #e8fcff;
  3138. border-color: #75c9c2;
  3139. color: #333;
  3140. */
  3141. }
  3142. .float-left {
  3143. float: left;
  3144. }
  3145. .float-right {
  3146. float: right;
  3147. }
  3148. .display-inline-block {
  3149. display: inline-block;
  3150. }
  3151. .width-100p {
  3152. width: 100%;
  3153. }
  3154. .l-sort-toolbar table td {
  3155. float: left;
  3156. margin-left: 10px;
  3157. }
  3158. .l-sort-toolbar__search-box {
  3159. float: right !important;
  3160. padding-right: 0 !important;
  3161. }
  3162. .ui-dialog .ui-dialog-buttonpane button:nth-of-type(2) {
  3163. -background-color: #dfdedd;
  3164. }
  3165. .shortcuts {
  3166. background: rgba(50,50,50,0.93);
  3167. display: inline-block;
  3168. position: fixed;
  3169. left: 50%;
  3170. bottom: 0;
  3171. color: #eee;
  3172. width: 800px;
  3173. border: 1px solid rgba(255,255,255,0.7);
  3174. border-bottom: 0px;
  3175. font-size: 0.8rem;
  3176. z-index: 120;
  3177. transform: translate(-50%, 0);
  3178. border-top-left-radius: 6px;
  3179. border-top-right-radius: 6px;
  3180. box-shadow: 0px 4px 30px rgba(0,0,0,0.5);
  3181. line-height: 0.9rem;
  3182. cursor: default;
  3183. }
  3184. .shortcuts .header {
  3185. border-bottom: 1px solid #606060;
  3186. height: 43px;
  3187. }
  3188. .shortcuts .title {
  3189. text-transform: uppercase;
  3190. color: #ff3478;
  3191. padding: 7px 0 7px 14px;
  3192. display: inline-block;
  3193. float: left;
  3194. font-size: 0.85rem;
  3195. letter-spacing: -0.01em;
  3196. }
  3197. .shortcuts .close {
  3198. cursor: pointer;
  3199. display: inline-block;
  3200. float: right;
  3201. height: 32px;
  3202. padding-top: 11px;
  3203. width: 46px;
  3204. }
  3205. .shortcuts .close:hover {
  3206. color: #db0000;
  3207. }
  3208. .shortcuts .close:active {
  3209. color: #a60000;
  3210. }
  3211. .shortcuts .close .fas {
  3212. font-size: 0.8rem;
  3213. line-height: 1.4rem;
  3214. }
  3215. .shortcuts ul {
  3216. list-style-type: none;
  3217. padding: 30px 20px;
  3218. display: inline-block;
  3219. float: left;
  3220. width: 360px;
  3221. }
  3222. .shortcuts ul li {
  3223. padding: 5px 20px;
  3224. }
  3225. .shortcuts ul li.step-top {
  3226. padding-top: 30px;
  3227. }
  3228. .shortcuts ul li span {
  3229. color: #ff3478;
  3230. display: inline-block;
  3231. font-weight: 600;
  3232. padding: 0 20px 0 0;
  3233. text-align: right;
  3234. /* width: 140px;*/
  3235. }
  3236. .shortcuts ul li span.bigger {
  3237. font-size: 18px;
  3238. }
  3239. .description {
  3240. font-weight: normal;
  3241. line-height: 25px;
  3242. padding-bottom: 45px;
  3243. margin-left: 50px;
  3244. }
  3245. .description ul{
  3246. margin-top: 15px;
  3247. list-style: none;
  3248. padding-left: 0;
  3249. }
  3250. .description li{
  3251. margin: 10px 0;
  3252. }
  3253. .description a {
  3254. line-height: 30px;
  3255. text-decoration: underline;
  3256. color: #326b9b;
  3257. }
  3258. .description a.purchase {
  3259. color: #FFF;
  3260. background-color: #3b9de8;
  3261. border: none;
  3262. border-radius: 3px;
  3263. font-size: 0.8rem;
  3264. font-weight: 600;
  3265. padding: 7px 15px;;
  3266. text-transform: capitalize;
  3267. text-decoration: none;
  3268. }
  3269. .description a.purchase:hover {
  3270. background-color: #54a6e5;
  3271. color: #4b4b4b;
  3272. }
  3273. .description a.purchase:active {
  3274. background-color: #54a6e5;
  3275. color: #4b4b4b;
  3276. }
  3277. .description a.cancel {
  3278. background-color: #999;
  3279. border: none;
  3280. border-radius: 3px;
  3281. color: #fff;
  3282. font-size: 0.8rem;
  3283. font-weight: 600;
  3284. padding: 7px 15px;
  3285. text-transform: capitalize;
  3286. text-decoration: none;
  3287. }
  3288. .description a.cancel:hover {
  3289. background-color: #326b9b;
  3290. }
  3291. .description a.cancel:active {
  3292. background-color: #5f9491;
  3293. }
  3294. .description.cancel-success {
  3295. color: #8fac0a;
  3296. font-weight: 600;
  3297. }
  3298. .description .licence {
  3299. padding: 20px 0;
  3300. color: #326b9b;
  3301. }
  3302. .description .licence input {
  3303. margin-left: 17px;
  3304. width: 137px;
  3305. }
  3306. .description span {
  3307. font-style: italic;
  3308. line-height: 45px;
  3309. padding-top: 20px;
  3310. }
  3311. .description .twoco {
  3312. font-style: italic;
  3313. line-height: 15px;
  3314. font-size: 0.8rem;
  3315. }
  3316. .ui-dialog {
  3317. font-family: 'Exo', Arial, Helvetica, sans-serif !important;
  3318. font-weight: 500 !important;
  3319. background-color: rgba(255,255,255,0.9) !important;
  3320. box-shadow: inset 0px 1px 3px rgba(0,0,0,0.25),
  3321. 0 8px 40px 0 rgba(0, 0, 0, 0.35) !important;
  3322. border-radius: 6px !important;
  3323. border: 1px solid rgba(255,255,255,0.98) !important;
  3324. text-align: center !important;
  3325. }
  3326. .ui-dialog .ui-dialog-content {
  3327. color: #535353 !important;
  3328. padding: 10px 26px 30px !important;
  3329. }
  3330. .ui-dialog .ui-dialog-title {
  3331. margin: 0px !important;
  3332. color: #305ba9 !important;
  3333. font-size: 1.2em !important;
  3334. text-transform: none !important;
  3335. letter-spacing: -0.01em !important;
  3336. text-align: center !important;
  3337. float: none !important;
  3338. font-weight: 500;
  3339. }
  3340. .ui-dialog-buttonpane {
  3341. border-color: #fff!important;
  3342. box-shadow: inset 0px 0px 2px rgba(0,0,0,0.25);
  3343. border-bottom: 1px solid #fff !important;
  3344. background: #e0e0e0;
  3345. margin-top: 0px !important;
  3346. padding-top: 0px !important;
  3347. }
  3348. .ui-widget {
  3349. font-size: 0.85rem !important;
  3350. }
  3351. .ui-widget-overlay {
  3352. opacity: 0.8 !important;
  3353. background: rgba(10,10,10,0.9) !important;
  3354. }
  3355. .helper-container {
  3356. float: right;
  3357. margin-bottom: -450px;
  3358. margin-top: 410px;
  3359. margin-right: 22px;
  3360. padding-top: 3px;
  3361. width: 563px;
  3362. box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  3363. border: 1px solid #cfcfcf;
  3364. border-radius: 4px;
  3365. }
  3366. .context-helper {
  3367. text-transform: uppercase;
  3368. /*text-decoration: underline;*/
  3369. color: #777;
  3370. font-size: 0.8rem;
  3371. cursor: pointer;
  3372. font-weight: 600;
  3373. float: right;
  3374. }
  3375. .context-helper:hover {
  3376. color: #3b9de8;
  3377. }
  3378. .context-helper:active {
  3379. color: #cc3366;
  3380. }
  3381. .cron-helper-tabs {
  3382. /* margin-top: 30px;*/
  3383. border: none !important;
  3384. font-family: 'Exo', Arial, Helvetica, sans-serif !important;
  3385. }
  3386. .cron-helper-tabs a {
  3387. color: #777;
  3388. font-size: 0.8rem;
  3389. font-weight: 600;
  3390. line-height: 30px;
  3391. padding: 0 12px;
  3392. text-transform: uppercase;
  3393. }
  3394. .cron-helper-tabs a:hover {
  3395. color: #cc3366;
  3396. }
  3397. .cron-helper-tabs a:active {
  3398. color: #3b9de8;
  3399. }
  3400. .cron-helper-tabs .ui-tabs-selected a {
  3401. color: #cc3366;
  3402. }
  3403. .cron-helper-tabs select.short {
  3404. background-position: -388px -604px;
  3405. min-width: 30px;
  3406. width: 70px;
  3407. }
  3408. .cron-helper-tabs p {
  3409. color: #777;
  3410. font-size: 0.8rem;
  3411. }
  3412. .cron-helper-tabs p span{
  3413. padding-right: 15px;
  3414. padding-left: 25px;
  3415. }
  3416. .cron-helper-tabs p span.first{
  3417. display: inline-block;
  3418. padding-right: 15px;
  3419. width: 100px;
  3420. padding-left: 0;
  3421. }
  3422. .cron-helper-tabs .button {
  3423. width: auto;
  3424. background-color: #3b9de8;
  3425. border: 1px solid #3b9de8;
  3426. text-transform: capitalize;
  3427. }
  3428. .cron-helper-tabs .button:hover {
  3429. background-color: #5BD8CF;
  3430. border: 1px solid #5BD8CF;
  3431. }
  3432. .cron-helper-tabs .button:active {
  3433. background-color: #4FBCB4;
  3434. border: 1px solid #4FBCB4;
  3435. }
  3436. .context-helper-close {
  3437. cursor: pointer;
  3438. display: inline-block;
  3439. float: right;
  3440. height: 32px;
  3441. padding-top: 11px;
  3442. width: 46px;
  3443. filter: contrast(50%);
  3444. }
  3445. .context-helper-close:hover {
  3446. background-color: #aaa;
  3447. filter: none;
  3448. }
  3449. .context-helper-close:active {
  3450. background-color: #999;
  3451. filter: none;
  3452. }
  3453. .server-info {
  3454. }
  3455. .server-info-output {
  3456. color: #cc3366;
  3457. padding: 10px 0 20px 20px;
  3458. background: #fff;
  3459. }
  3460. .server-info-data {
  3461. margin-left: 100px;
  3462. margin-top: -20px;
  3463. }
  3464. .server-info-name {
  3465. margin-top: 5px;
  3466. margin-bottom: 30px;
  3467. }
  3468. .server-info-output {
  3469. color: #cc3366;
  3470. padding: 10px 0 20px 20px;
  3471. background: #fff;
  3472. }
  3473. .icon-server-info {
  3474. font-size: 5.2em;
  3475. float: left;
  3476. margin-right: 32px;
  3477. }
  3478. .userlist-email {
  3479. font-size: 0.75rem;
  3480. }
  3481. .userlist-username {
  3482. font-size: 1.05em;
  3483. }
  3484. @media screen and (max-width: 950px) {
  3485. .helper-container {
  3486. display: none;
  3487. }
  3488. }