styles.min.css 63 KB

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