styles.min.css 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748
  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 {
  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");
  580. background-size: 450px auto;
  581. background-repeat: no-repeat;
  582. background-position: -232px -9px;
  583. }
  584. input[type="checkbox"] {
  585. display: none;
  586. }
  587. .clicked-on.check-label:before,
  588. .selected .check-label:before {
  589. content: '';
  590. display: inline-block;
  591. width: 27px;
  592. height: 27px;
  593. background-position: -225px -42px;
  594. left: -6px;
  595. top: -6px;
  596. }
  597. .l-center {
  598. margin: 0 auto;
  599. max-width: 998px;
  600. }
  601. .l-logo {
  602. background-image: url("/images/sprite.png");
  603. background-position: -117px -7px;
  604. background-repeat: no-repeat;
  605. display: inline-block;
  606. float: left;
  607. height: 22px;
  608. margin-top: 4px;
  609. width: 73px;
  610. margin-left: -11px;
  611. }
  612. .l-header {
  613. background-color: #5d5d5d;
  614. overflow: hidden;
  615. margin-bottom: 28px;
  616. position: fixed;
  617. width: 100%;
  618. z-index: 11;
  619. }
  620. .l-header a {
  621. font-size: 12px;
  622. }
  623. .l-menu__item--active {
  624. //background-color: #fff;
  625. }
  626. .l-menu__item.l-menu__item--active a {
  627. color: #ff6701;
  628. font-size: 10px;
  629. font-weight: bold;
  630. text-transform: uppercase;
  631. background-color: #fff;
  632. }
  633. .l-menu {
  634. float: left;
  635. }
  636. .l-menu__item {
  637. float: left;
  638. }
  639. .l-menu__item a {
  640. color: #f7f7f7;
  641. position: relative;
  642. line-height: 34px;
  643. padding: 11px 18px;
  644. }
  645. .l-menu__item a:hover {
  646. background-color: #f79b44;
  647. color: #fff;
  648. }
  649. .l-menu__item a:active {
  650. color: #fff;
  651. background-color: #ff6701;
  652. }
  653. .lang-ua .l-menu__item a,
  654. .lang-nl .l-menu__item a,
  655. .lang-fr .l-menu__item a,
  656. .lang-ru .l-menu__item a {
  657. padding: 11px 18px;
  658. }
  659. .lang-tr .l-menu__item a,
  660. .lang-ar .l-menu__item a {
  661. padding: 11px 15px;
  662. }
  663. .lang-ar .l-menu__item a {
  664. line-height: 35px;
  665. }
  666. .lang-de .l-menu__item a {
  667. padding: 11px 12px;
  668. }
  669. .lang-tw .l-menu__item a {
  670. padding: 13px 18px;
  671. }
  672. .l-profile {
  673. overflow: hidden;
  674. float: right;
  675. }
  676. .l-profile__username {
  677. float: left;
  678. color: #a4abad;
  679. font-weight: 700;
  680. padding: 10px 5px;
  681. }
  682. .l-profile__username:hover {
  683. color: #ffd62e;
  684. }
  685. .l-profile__username:active {
  686. color: #f79b44;
  687. }
  688. .l-profile__logout {
  689. float: left;
  690. color: #fff;
  691. margin-left: 40px;
  692. padding: 10px 5px;
  693. }
  694. .l-profile__logout:hover {
  695. color: #C0E60E;
  696. }
  697. .l-profile__logout:active {
  698. color: #ffd62e;
  699. }
  700. .lang-cn .l-profile__logout {
  701. padding: 8px 5px;
  702. }
  703. .lang-tw .l-profile__logout {
  704. padding: 8px 5px;
  705. }
  706. .l-stat {
  707. margin: 0 auto;
  708. display: table;
  709. margin: 34px auto;
  710. position: fixed;
  711. background-color: #fff;
  712. z-index: 10;
  713. padding-top: 30px;
  714. }
  715. .l-stat__col {
  716. display: table-cell;
  717. vertical-align: top;
  718. }
  719. .l-stat__col a {
  720. display: inline-block;
  721. padding-bottom: 36px;
  722. min-height: 111px;
  723. width: 138px;
  724. border-bottom: 3px solid #fff;
  725. overflow: hidden;
  726. background-color: #fff;
  727. padding-top: 3px;
  728. margin-top: -3px;
  729. padding-left: 5px;
  730. }
  731. .l-stat__col a:hover {
  732. border-bottom: 3px solid #ff8e61;
  733. }
  734. .l-stat__col a:active {
  735. border-bottom: 3px solid #f72b44;
  736. }
  737. .l-stat__col--active a {
  738. border-bottom: 3px solid #ff6e42;
  739. }
  740. .l-stat__col a:hover .l-stat__col-title {
  741. color: #ff6701;
  742. }
  743. .l-stat__col a:active .l-stat__col-title {
  744. color: #f72b44;
  745. }
  746. .l-stat__col ul {
  747. list-style-type: none;
  748. font-size: 12px;
  749. padding-left: 0;
  750. }
  751. .l-stat__col li {
  752. color: #a0a0a0;
  753. margin-bottom: 8px;
  754. text-transform: lowercase;
  755. }
  756. .l-stat__col span {
  757. padding-left: 15px;
  758. }
  759. .l-stat__col-title {
  760. text-transform: uppercase;
  761. font-weight: 700;
  762. color: #212134;
  763. min-height: 21px;
  764. }
  765. .l-stat__col--active .l-stat__col-title {
  766. color: #ff6701;
  767. font-size: 24px;
  768. margin-top: -7px;
  769. letter-spacing: -1px;
  770. margin-right: -8px;
  771. }
  772. .l-separator.selected,
  773. .l-separator {
  774. height: 1px;
  775. background-color: #ddd;
  776. }
  777. div.l-content > div.l-separator:nth-of-type(2) {
  778. margin-top: 214px;
  779. width: 100%;
  780. position: fixed;
  781. z-index: 20;
  782. }
  783. div.l-content > div.l-separator:nth-of-type(4) {
  784. margin-top: 259px;
  785. width: 100%;
  786. position: fixed;
  787. z-index: 5;
  788. }
  789. .l-sort {
  790. position: fixed;
  791. width: 998px;
  792. background-color: #fff;
  793. z-index: 10;
  794. margin-top: 215px;
  795. }
  796. .l-sort__create-btn {
  797. background-image: url("/images/sprite.png");
  798. background-position: -331px -107px;
  799. background-repeat: no-repeat;
  800. bottom: -23px;
  801. display: inline-block;
  802. height: 45px;
  803. left: 30px;
  804. position: absolute;
  805. width: 45px;
  806. z-index: 3;
  807. }
  808. .l-sort__create-btn:hover {
  809. background-position: -378px -107px;
  810. }
  811. .l-sort__create-btn:active {
  812. background-position: -425px -107px;
  813. }
  814. .l-sort__create-btn--active {
  815. background-position: -425px -107px;
  816. }
  817. .l-sort__create-btn.restore {
  818. background-position: -331px -250px;
  819. bottom: -22px;
  820. }
  821. .l-sort__create-btn.restore:hover {
  822. background-position: -331px -250px;
  823. }
  824. .l-sort__create-btn.restore:active {
  825. background-position: -331px -250px;
  826. }
  827. .l-sort__create-btn.edit {
  828. background-position: -331px -154px;
  829. bottom: -22px;
  830. }
  831. .l-sort__create-btn.edit:hover {
  832. background-position: -378px -154px;
  833. }
  834. .l-sort__create-btn.edit:active {
  835. background-position: -425px -154px;
  836. }
  837. .context-menu.sort-order {
  838. display: inline-block;
  839. position: absolute;
  840. z-index: 3;
  841. left: 397px;
  842. margin: 0;
  843. overflow: hidden;
  844. top: 42px;
  845. width: 201px;
  846. background-color: #959593;
  847. list-style-type: none;
  848. padding-left: 0;
  849. box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.3);
  850. }
  851. .context-menu.sort-order li {
  852. padding: 0;
  853. }
  854. .context-menu li {
  855. border-bottom: 1px solid #aaa;
  856. color: #fff;
  857. cursor: pointer;
  858. font-size: 12px;
  859. padding: 12px;
  860. }
  861. .context-menu.sort-order span.name {
  862. background: url("/images/sprite.png") no-repeat scroll -292px -361px rgba(0, 0, 0, 0);
  863. display: inline-block;
  864. padding: 12px 28px 12px 12px;
  865. width: 117px;
  866. text-transform: uppercase;
  867. font-weight: bold;
  868. }
  869. .context-menu.sort-order span.up {
  870. background: url("/images/sprite.png") no-repeat scroll -434px -417px rgba(0, 0, 0, 0);
  871. display: inline-block;
  872. padding: 12px 14px;
  873. width: 16px;
  874. }
  875. .context-menu.sort-order span.active {
  876. background-color: #FFD437;
  877. color: #555;
  878. }
  879. .context-menu.sort-order span:hover {
  880. background-color: #777;
  881. color: #fff;
  882. }
  883. .context-menu.sort-order span:active {
  884. background-color: #ffcc00;
  885. }
  886. .l-sort-toolbar {
  887. float: right;
  888. padding: 7px 0 7px 0;
  889. width: 100%;
  890. }
  891. .l-sort-toolbar table{
  892. float: right;
  893. }
  894. .l-sort-toolbar td.toggle-all {
  895. padding-top: 7px;
  896. padding-right: 40px;
  897. }
  898. .l-sort-toolbar .sort-by {
  899. cursor: pointer;
  900. padding-top: 7px;
  901. padding-right: 40px;
  902. }
  903. .l-sort-toolbar .sort-by:hover {
  904. color: #555;
  905. }
  906. .l-sort-toolbar .sort-by:hover b {
  907. color: #555;
  908. }
  909. .l-sort-toolbar .sort-by:active {
  910. color: #55c9c0;
  911. }
  912. .l-sort-toolbar .sort-by:active b {
  913. color: #55c9c0;
  914. }
  915. .l-sort-toolbar .sort-by b {
  916. text-transform: uppercase;
  917. padding-left: 3px;
  918. font-size: 12px;
  919. }
  920. .l-sort-toolbar .toggle-all:hover {
  921. color: #555;
  922. }
  923. .l-sort-toolbar .toggle-all:active {
  924. color: #55c9c0;
  925. }
  926. .l-sort-toolbar .l-select {
  927. float: left;
  928. }
  929. .l-sort-toolbar td {
  930. vertical-align: middle;
  931. }
  932. .l-sort-toolbar td:first-of-type {
  933. padding-left: 40px;
  934. }
  935. .l-sort-toolbar td:nth-of-type(2) {
  936. /* /// padding-right: 60px;*/
  937. }
  938. .l-sort-toolbar td:last-of-type {
  939. /* /// padding-left: 40px; */
  940. }
  941. .l-sort-toolbar__filter-apply {
  942. float: left;
  943. width: 30px;
  944. height: 30px;
  945. background-image: url("/images/sprite.png");
  946. background-position: -333px -1px;
  947. border: none;
  948. }
  949. .l-sort-toolbar__filter-apply:hover {
  950. background-position: -368px -1px;
  951. border-color: #afafac;
  952. }
  953. .l-sort-toolbar__filter-apply:active {
  954. background-position: -404px -1px;
  955. border-color: #afafac;
  956. }
  957. .l-sort-toolbar__filter-apply--active {
  958. background-position: -404px -1px;
  959. border-color: #50bdb5;
  960. }
  961. .l-sort-toolbar__search {
  962. float: left;
  963. width: 25px;
  964. height: 25px;
  965. background-image: url("/images/sprite.png");
  966. background-position: -333px -37px;
  967. border: none;
  968. }
  969. .l-sort-toolbar__search:hover {
  970. background-position: -368px -37px;
  971. border-color: #afafac;
  972. }
  973. .l-sort-toolbar__search:active {
  974. background-position: -404px -37px;
  975. border-color: #50bdb5;
  976. }
  977. .l-sort-toolbar__search--active {
  978. background-position: -404px -37px;
  979. border-color: #50bdb5;
  980. }
  981. .l-sort-toolbar .vst {
  982. padding: 0 12px;
  983. color: #777;
  984. text-transform: uppercase;
  985. font-size: 11px;
  986. font-weight: bold;
  987. line-height: 30px;
  988. }
  989. .l-sort-toolbar .vst:hover {
  990. color: #ff6701;
  991. }
  992. .l-sort-toolbar .vst:active {
  993. color: #55C9C0;
  994. }
  995. .l-sort-toolbar .vst.selected {
  996. color: #ff6701;
  997. // color: #92af0b;
  998. }
  999. .l-select {
  1000. width: 178px;
  1001. height: 28px;
  1002. border: 1px solid #ddd;
  1003. border-radius: 0;
  1004. overflow-x: hidden;
  1005. position: relative;
  1006. display: inline-block;
  1007. border-style: solid none solid solid;
  1008. }
  1009. .lang-ru .l-select {
  1010. width: 199px;
  1011. }
  1012. .l-select:after {
  1013. pointer-events: none;
  1014. background-image: url("/images/sprite.png");
  1015. background-position: -245px -175px;
  1016. width: 7px;
  1017. height: 4px;
  1018. margin-top: -2px;
  1019. content: '';
  1020. position: absolute;
  1021. right: 10px;
  1022. top: 50%;
  1023. }
  1024. .l-select select {
  1025. border: 0;
  1026. background-color: transparent;
  1027. line-height: 28px;
  1028. height: 28px;
  1029. min-width: 208px;
  1030. padding-left: 4px;
  1031. }
  1032. .l-select select:focus {
  1033. border: 0;
  1034. outline: 0;
  1035. }
  1036. .lang-ru .l-select select {
  1037. min-width: 215px;
  1038. }
  1039. .l-select select option {
  1040. padding: 7px;
  1041. }
  1042. .l-unit {
  1043. color: #888;
  1044. padding: 0 0 0 15px;
  1045. overflow: hidden;
  1046. font-size: 13px;
  1047. }
  1048. .units .l-unit {
  1049. border-bottom: 1px solid #ddd;
  1050. }
  1051. .l-unit-ftl {
  1052. color: #929292;
  1053. padding: 0 0 0 15px;
  1054. }
  1055. .l-unit:hover .l-unit-toolbar__col--right {
  1056. display: block;
  1057. }
  1058. .l-unit--starred {
  1059. border-left: 2px solid #ff6701;
  1060. padding-left: 13px;
  1061. }
  1062. .l-unit--blue {
  1063. border-left: 2px solid #55c9c0;
  1064. }
  1065. .l-unit--suspended {
  1066. background-color: #eaeaea;
  1067. color: #c0c0c0;
  1068. }
  1069. .l-unit--outdated {
  1070. background-color: #9B3D35;
  1071. color: #fff;
  1072. }
  1073. .l-unit--suspended .l-unit__name,
  1074. .l-unit--suspended b,
  1075. .l-unit--outdated .l-unit__name,
  1076. .l-unit--outdated b {
  1077. color: #c0c0c0;
  1078. }
  1079. .l-unit--suspended .l-percent {
  1080. border-color: #fff;
  1081. }
  1082. .l-unit--suspended .l-percent__fill {
  1083. background-color: #fff;
  1084. }
  1085. .l-unit--suspended .l-unit__name,
  1086. .l-unit--suspended .l-unit__name span {
  1087. color: #ADADAD;
  1088. }
  1089. .l-unit--suspended.selected .l-unit__name,
  1090. .l-unit--suspended.selected .l-unit__name span {
  1091. color: #777;
  1092. }
  1093. .l-unit--suspended.selected {
  1094. background-color: #f2eab8 !important;
  1095. color: #b2ac87 !important;
  1096. }
  1097. .l-unit--outdated.selected {
  1098. background: #765D5D !important;
  1099. color: #FEF482 !important;
  1100. }
  1101. .l-unit--suspended.selected .l-unit__name,
  1102. .l-unit--suspended.selected b,
  1103. .l-unit--outdated.selected .l-unit__name,
  1104. .l-unit--outdated.selected b,
  1105. .l-unit--suspended.selected .l-percent,
  1106. .l-unit--suspended.selected .l-percent__fill,
  1107. .l-unit--suspended.selected .l-unit__name,
  1108. .l-unit--suspended.selected .l-unit__name span {
  1109. color: #b2ac87 !important;
  1110. }
  1111. .l-unit.selected .l-percent {
  1112. border-bottom: 1px dotted #777;
  1113. }
  1114. .l-unit--selected {
  1115. background-color: #d1eddc;
  1116. }
  1117. .l-unit-toolbar{
  1118. height: 38px;
  1119. }
  1120. .l-unit label {
  1121. margin-bottom: 20px;
  1122. }
  1123. .l-unit__columns {
  1124. display: table;
  1125. width: 100%;
  1126. }
  1127. .l-unit__col {
  1128. display: table-cell;
  1129. padding-top: 1px;
  1130. }
  1131. .l-unit__col--left {
  1132. width: 124px;
  1133. padding-right: 10px;
  1134. }
  1135. .units.compact .l-unit__col--left {
  1136. vertical-align: top;
  1137. }
  1138. .l-unit__col--left.step-left {
  1139. padding-left: 30px;
  1140. }
  1141. .l-sort-toolbar .step-left {
  1142. padding-left: 40px;
  1143. }
  1144. .step-right {
  1145. padding-right: 40px;
  1146. }
  1147. .l-unit__date {
  1148. font-size: 12px;
  1149. letter-spacing: 1px;
  1150. margin-top: -13px;
  1151. padding-bottom: 30px;
  1152. }
  1153. .l-unit__suspended {
  1154. display: none;
  1155. font-size: 11px;
  1156. font-weight: bold;
  1157. letter-spacing: 3px;
  1158. margin-top: 36px;
  1159. text-transform: uppercase;
  1160. margin-bottom: 14px;
  1161. }
  1162. .units.compact .l-unit__suspended {
  1163. margin-top: 1px;
  1164. }
  1165. .l-unit--outdated .l-unit__suspended,
  1166. .l-unit--suspended .l-unit__suspended {
  1167. display: block;
  1168. }
  1169. .l-unit-ft .subtitle,
  1170. .l-unit .subtitle {
  1171. color: #ff6701;
  1172. font-size: 12px;
  1173. font-weight: bold;
  1174. margin: 20px 0 18px 129px;
  1175. text-transform: uppercase;
  1176. }
  1177. .l-unit.l-unit--outdated .l-unit__date {
  1178. color: #fff7ae;
  1179. font-size: 10px;
  1180. letter-spacing: 3px;
  1181. text-transform: uppercase;
  1182. font-weight: bold;
  1183. }
  1184. .l-unit__name {
  1185. color: #111;
  1186. font-size: 32px;
  1187. margin-bottom: 10px;
  1188. }
  1189. .l-unit__stats.separate,
  1190. .l-unit__name.separate {
  1191. padding-bottom: 15px;
  1192. }
  1193. .l-unit__name.small {
  1194. font-size: 19px;
  1195. }
  1196. .l-unit__name.small-2 {
  1197. font-size: 24px;
  1198. }
  1199. .l-unit__name span {
  1200. color: #999;
  1201. margin-left: 30px;
  1202. font-size: 14px;
  1203. font-style: italic;
  1204. }
  1205. .l-unit__name span:first-of-type {
  1206. margin-left: 39px;
  1207. }
  1208. .l-unit__name b {
  1209. font-weight: normal;
  1210. font-style: italic;
  1211. }
  1212. .l-unit__ip {
  1213. margin-bottom: 26px;
  1214. font-size: 12px;
  1215. letter-spacing: 1px;
  1216. }
  1217. .l-unit__ip span {
  1218. padding-left: 3px;
  1219. padding-right: 3px;
  1220. }
  1221. .display-ip {
  1222. font-size: 12px;
  1223. letter-spacing: 1px;
  1224. }
  1225. .display-ip span {
  1226. padding-left: 3px;
  1227. padding-right: 3px;
  1228. }
  1229. .l-unit__stats {
  1230. margin-bottom: 50px;
  1231. }
  1232. .l-unit__stats table {
  1233. width: 100%;
  1234. table-layout: fixed;
  1235. }
  1236. .l-unit__stats td {
  1237. height: 22px;
  1238. padding-bottom: 3px;
  1239. vertical-align: top;
  1240. }
  1241. .l-unit__stat-col--left {
  1242. float: left;
  1243. width: 124px;
  1244. }
  1245. .l-unit__stat-col--left.compact {
  1246. width: 70px;
  1247. }
  1248. .l-unit__stat-col--left.compact-2 {
  1249. width: 95px;
  1250. }
  1251. .l-unit__stat-col--left.wide {
  1252. width: 190px;
  1253. }
  1254. .l-unit__stat-col--left.wide-2 {
  1255. width: 230px;
  1256. }
  1257. .l-unit__stat-col--left.wide-3 {
  1258. width: 250px;
  1259. }
  1260. .l-unit__stat-col--left.wide-4 {
  1261. width: 575px;
  1262. }
  1263. .l-unit__stat-col--left.small-2 {
  1264. line-height: 11px;
  1265. }
  1266. .l-unit__stat-col--left.tiny {
  1267. font-size: 11px;
  1268. }
  1269. .l-unit__stat-col--left.tiny b {
  1270. font-size: 18px;
  1271. }
  1272. .l-unit__stat-col--right {
  1273. float: left;
  1274. max-width: 152px;
  1275. }
  1276. .l-unit-toolbar__col--left {
  1277. float: left;
  1278. margin-left: -15px;
  1279. margin-top: 0;
  1280. padding-bottom: 0px;/* 8px */
  1281. padding-left: 15px;
  1282. padding-top: 15px;
  1283. width: 30px;
  1284. cursor: pointer;
  1285. }
  1286. .l-unit-toolbar__col--right {
  1287. float: right;
  1288. display: none;
  1289. }
  1290. .l-unit__stat-col.volume {
  1291. font-size: 12px;
  1292. line-height: 17px;
  1293. float: right;
  1294. }
  1295. .actions-panel__col {
  1296. float: left;
  1297. min-width: 95px;
  1298. min-height: 31px;
  1299. text-transform: uppercase;
  1300. background-color: #dfdedd;
  1301. border-right: 1px solid #d8d7d7;
  1302. position: relative;
  1303. }
  1304. .actions-panel__col i {
  1305. background-image: url("/images/sprite.png");
  1306. background-repeat: no-repeat;
  1307. display: inline-block;
  1308. float: right;
  1309. content: '';
  1310. width: 31px;
  1311. height: 31px;
  1312. position: absolute;
  1313. top: 0;
  1314. right: 0;
  1315. }
  1316. .actions-panel__col a {
  1317. line-height: 31px;
  1318. color: #777;
  1319. font-weight: 700;
  1320. font-size: 12px;
  1321. padding-left: 13px;
  1322. display: block;
  1323. cursor: pointer;
  1324. position: relative;
  1325. padding-right: 36px;
  1326. }
  1327. .lang-ru .actions-panel__col a {
  1328. font-size: 11px;
  1329. padding-top: 1px;
  1330. }
  1331. .lang-tw .actions-panel__col a {
  1332. font-size: 15px;
  1333. font-weight: normal;
  1334. line-height: 29px;
  1335. }
  1336. .lang-ar .actions-panel__col a {
  1337. font-size: 15px;
  1338. font-weight: normal;
  1339. line-height: 29px;
  1340. }
  1341. .actions-panel__favorite a {
  1342. background-color: #afafac;
  1343. color: #fff;
  1344. }
  1345. .actions-panel__favorite i {
  1346. background-position: -39px -85px;
  1347. }
  1348. .actions-panel__edit i {
  1349. background-position: -1px -169px;
  1350. }
  1351. .actions-panel__edit:hover a {
  1352. background-color: #9fbf0c;
  1353. color: #fff;
  1354. }
  1355. .actions-panel__edit:active a {
  1356. background-color: #c0e60f;
  1357. color: #555;
  1358. }
  1359. .actions-panel__edit:hover a i {
  1360. background-position: -41px -169px;
  1361. }
  1362. .actions-panel__edit:active a i {
  1363. background-position: -81px -169px;
  1364. }
  1365. .actions-panel__edit--active a {
  1366. background-color: #c0e60f;
  1367. color: #fff;
  1368. }
  1369. .actions-panel__edit--active i {
  1370. background-position: -78px -169px;
  1371. }
  1372. .actions-panel__restart i {
  1373. background-position: -1px -520px;
  1374. }
  1375. .actions-panel__restart:hover a {
  1376. background-color: #9fbf0c;
  1377. color: #fff;
  1378. }
  1379. .actions-panel__restart:active a {
  1380. background-color: #c0e60f;
  1381. color: #555;
  1382. }
  1383. .actions-panel__restart:hover a i {
  1384. background-position: -41px -520px;
  1385. }
  1386. .actions-panel__restart:active a i {
  1387. background-position: -81px -520px;
  1388. }
  1389. .actions-panel__restart--active a {
  1390. background-color: #c0e60f;
  1391. color: #fff;
  1392. }
  1393. .actions-panel__restart--active i {
  1394. background-position: -78px -520px;
  1395. }
  1396. .actions-panel__add i {
  1397. background-position: -1px -285px;
  1398. }
  1399. .actions-panel__add:hover a {
  1400. background-color: #9fbf0c;
  1401. color: #fff;
  1402. }
  1403. .actions-panel__add:active a {
  1404. background-color: #c0e60f;
  1405. color: #555;
  1406. }
  1407. .actions-panel__add:hover a i {
  1408. background-position: -41px -285px;
  1409. }
  1410. .actions-panel__add:active a i {
  1411. background-position: -81px -285px;
  1412. }
  1413. .actions-panel__add--active a {
  1414. background-color: #c0e60f;
  1415. color: #fff;
  1416. }
  1417. .actions-panel__add--active i {
  1418. background-position: -78px -285px;
  1419. }
  1420. .actions-panel__update i {
  1421. background-position: -1px -481px;
  1422. }
  1423. .actions-panel__update:hover a {
  1424. background-color: #9fbf0c;
  1425. color: #fff;
  1426. }
  1427. .actions-panel__update:active a {
  1428. background-color: #c0e60f;
  1429. color: #555;
  1430. }
  1431. .actions-panel__update:hover a i {
  1432. background-position: -41px -481px;
  1433. }
  1434. .actions-panel__update:active a i {
  1435. background-position: -81px -481px;
  1436. }
  1437. .actions-panel__update--active a {
  1438. background-color: #c0e60f;
  1439. color: #fff;
  1440. }
  1441. .actions-panel__update--active i {
  1442. background-position: -78px -481px;
  1443. }
  1444. .actions-panel__logs i {
  1445. background-position: -2px -130px;
  1446. }
  1447. .actions-panel__logs:hover a {
  1448. background-color: #afafac;
  1449. color: #fff;
  1450. }
  1451. .actions-panel__logs:active a {
  1452. background-color: #55c9c0;
  1453. color: #fff;
  1454. }
  1455. .actions-panel__logs:hover a i {
  1456. background-position: -42px -130px;
  1457. }
  1458. .actions-panel__logs:active a i {
  1459. background-position: -82px -130px;
  1460. }
  1461. .actions-panel__logs--active a {
  1462. background-color: #55c9c0;
  1463. color: #fff;
  1464. }
  1465. .actions-panel__logs--active i {
  1466. background-position: -79px -130px;
  1467. }
  1468. .actions-panel__db i {
  1469. background-position: -2px -363px;
  1470. }
  1471. .actions-panel__db:hover a {
  1472. background-color: #afafac;
  1473. color: #fff;
  1474. }
  1475. .actions-panel__db:active a {
  1476. background-color: #55c9c0;
  1477. color: #fff;
  1478. }
  1479. .actions-panel__db:hover a i {
  1480. background-position: -42px -363px;
  1481. }
  1482. .actions-panel__db:active a i {
  1483. background-position: -82px -363px;
  1484. }
  1485. .actions-panel__db--active a {
  1486. background-color: #55c9c0;
  1487. color: #fff;
  1488. }
  1489. .actions-panel__db--active i {
  1490. background-position: -79px -362px;
  1491. }
  1492. .actions-panel__suspend i {
  1493. background-position: -1px -51px;
  1494. }
  1495. .actions-panel__suspend:hover a {
  1496. background-color: #afafac;
  1497. color: #fff;
  1498. }
  1499. .actions-panel__suspend:active a {
  1500. background-color: #55c9c0;
  1501. color: #fff;
  1502. }
  1503. .actions-panel__suspend:hover a i {
  1504. background-position: -41px -51px;
  1505. }
  1506. .actions-panel__suspend:active a i {
  1507. background-position: -81px -51px;
  1508. }
  1509. .actions-panel__suspend--active a {
  1510. background-color: #55c9c0;
  1511. color: #fff;
  1512. }
  1513. .actions-panel__suspend--active i {
  1514. background-position: -78px -51px;
  1515. }
  1516. .actions-panel__unsuspend i {
  1517. background-position: -1px -12px;
  1518. }
  1519. .actions-panel__unsuspend:hover a {
  1520. background-color: #afafac;
  1521. color: #fff;
  1522. }
  1523. .actions-panel__unsuspend:active a {
  1524. background-color: #55c9c0;
  1525. color: #fff;
  1526. }
  1527. .actions-panel__unsuspend:hover a i {
  1528. background-position: -41px -12px;
  1529. }
  1530. .actions-panel__unsuspend:active a i {
  1531. background-position: -81px -12px;
  1532. }
  1533. .actions-panel__unsuspend--active a {
  1534. background-color: #55c9c0;
  1535. color: #fff;
  1536. }
  1537. .actions-panel__unsuspend--active i {
  1538. background-position: -78px -12px;
  1539. }
  1540. .actions-panel__loginas i {
  1541. background-position: -1px -245px;
  1542. }
  1543. .actions-panel__loginas:hover a {
  1544. background-color: #afafac;
  1545. color: #fff;
  1546. }
  1547. .actions-panel__loginas:active a {
  1548. background-color: #55c9c0;
  1549. color: #fff;
  1550. }
  1551. .actions-panel__loginas:hover a i {
  1552. background-position: -41px -245px;
  1553. }
  1554. .actions-panel__loginas:active a i {
  1555. background-position: -81px -245px;
  1556. }
  1557. .actions-panel__loginas--active a {
  1558. background-color: #55c9c0;
  1559. color: #fff;
  1560. }
  1561. .actions-panel__loginas--active i {
  1562. background-position: -78px -245px;
  1563. }
  1564. .actions-panel__download i {
  1565. background-position: -1px -402px;
  1566. }
  1567. .actions-panel__download:hover a {
  1568. background-color: #9fbf0c;
  1569. color: #fff;
  1570. }
  1571. .actions-panel__download:active a {
  1572. background-color: #c0e60f;
  1573. color: #555;
  1574. }
  1575. .actions-panel__download:hover a i {
  1576. background-position: -41px -402px;
  1577. }
  1578. .actions-panel__download:active a i {
  1579. background-position: -81px -402px;
  1580. }
  1581. .actions-panel__download--active a {
  1582. background-color: #c0e60f;
  1583. color: #fff;
  1584. }
  1585. .actions-panel__download--active i {
  1586. background-position: -78px -402px;
  1587. }
  1588. .actions-panel__configure i {
  1589. background-position: -1px -442px;
  1590. }
  1591. .actions-panel__configure:hover a {
  1592. background-color: #afafac;
  1593. color: #fff;
  1594. }
  1595. .actions-panel__configure:active a {
  1596. background-color: #55c9c0;
  1597. color: #fff;
  1598. }
  1599. .actions-panel__configure:hover a i {
  1600. background-position: -41px -442px;
  1601. }
  1602. .actions-panel__configure:active a i {
  1603. background-position: -81px -442px;
  1604. }
  1605. .actions-panel__configure--active a {
  1606. background-color: #55c9c0;
  1607. color: #fff;
  1608. }
  1609. .actions-panel__configure--active i {
  1610. background-position: -78px -442px;
  1611. }
  1612. .actions-panel__.l-icon-starmail i {
  1613. background-position: -1px -324px;
  1614. }
  1615. .actions-panel__mail:hover a {
  1616. background-color: #afafac;
  1617. color: #fff;
  1618. }
  1619. .actions-panel__mail:active a {
  1620. background-color: #55c9c0;
  1621. color: #fff;
  1622. }
  1623. .actions-panel__mail:hover a i {
  1624. background-position: -41px -324px;
  1625. }
  1626. .actions-panel__mail:active a i {
  1627. background-position: -81px -324px;
  1628. }
  1629. .actions-panel__mail--active a {
  1630. background-color: #55c9c0;
  1631. color: #fff;
  1632. }
  1633. .actions-panel__mail--active i {
  1634. background-position: -78px -324px;
  1635. }
  1636. .actions-panel__delete i {
  1637. background-position: -1px -207px;
  1638. }
  1639. .actions-panel__delete:hover a {
  1640. background-color: #ff3438;
  1641. color: #fff;
  1642. }
  1643. .actions-panel__delete:active a {
  1644. background-color: #ff5f5f;
  1645. color: #fff;
  1646. }
  1647. .actions-panel__delete:hover a i {
  1648. background-position: -41px -207px;
  1649. }
  1650. .actions-panel__delete:active a i {
  1651. background-position: -81px -207px;
  1652. }
  1653. .actions-panel__delete--active a {
  1654. background-color: #ff5f5f;
  1655. color: #fff;
  1656. }
  1657. .actions-panel__delete--active i {
  1658. background-position: -78px -207px;
  1659. }
  1660. .actions-panel__stop i {
  1661. background-position: -1px -561px;
  1662. }
  1663. .actions-panel__stop:hover a {
  1664. background-color: #ff3438;
  1665. color: #fff;
  1666. }
  1667. .actions-panel__stop:active a {
  1668. background-color: #ff5f5f;
  1669. color: #fff;
  1670. }
  1671. .actions-panel__stop:hover a i {
  1672. background-position: -41px -561px;
  1673. }
  1674. .actions-panel__stop:active a i {
  1675. background-position: -81px -561px;
  1676. }
  1677. .actions-panel__stop--active a {
  1678. background-color: #ff5f5f;
  1679. color: #fff;
  1680. }
  1681. .actions-panel__stop--active i {
  1682. background-position: -78px -561px;
  1683. }
  1684. .actions-panel__start i {
  1685. background-position: -1px -482px;
  1686. }
  1687. .actions-panel__start:hover a {
  1688. background-color: #9fbf0c;
  1689. color: #fff;
  1690. }
  1691. .actions-panel__start:active a {
  1692. background-color: #c0e60f;
  1693. color: #555;
  1694. }
  1695. .actions-panel__start:hover a i {
  1696. background-position: -41px -482px;
  1697. }
  1698. .actions-panel__start:active a i {
  1699. background-position: -81px -482px;
  1700. }
  1701. .actions-panel__start--active a {
  1702. background-color: #c0e60f;
  1703. color: #fff;
  1704. }
  1705. .actions-panel__start--active i {
  1706. background-position: -78px -482px;
  1707. }
  1708. .l-icon-up-arrow, .l-icon-down-arrow, .l-icon-star, .l-icon-to-top, .l-icon-star-orange, .l-icon-star-blue {
  1709. display: inline-block;
  1710. vertical-align: middle;
  1711. background-image: url("/images/sprite.png");
  1712. }
  1713. .l-icon-down-arrow {
  1714. width: 7px;
  1715. height: 15px;
  1716. background-position: -280px -128px;
  1717. }
  1718. .l-icon-up-arrow {
  1719. width: 7px;
  1720. height: 15px;
  1721. background-position: -299px -129px;
  1722. }
  1723. .l-icon-star {
  1724. width: 36px;
  1725. height: 36px;
  1726. background-position: -216px 560px;
  1727. display: none;
  1728. cursor: pointer;
  1729. }
  1730. .l-unit--starred .l-icon-star {
  1731. display: inline-block;
  1732. background-position: -174px 560px;
  1733. }
  1734. .units.compact .l-icon-star {
  1735. margin-top: -14px;
  1736. }
  1737. .l-icon-star:hover {
  1738. background-position: 0px 560px;
  1739. }
  1740. .l-icon-star:active {
  1741. -background-position: -174px 560px;
  1742. background-position: -80px 562px;
  1743. }
  1744. .l-unit:hover .l-icon-star {
  1745. /*display: inline-block;*/
  1746. }
  1747. .l-icon-to-top {
  1748. width: 35px;
  1749. height: 35px;
  1750. background-position: -330px -68px;
  1751. }
  1752. .l-icon-to-top:hover {
  1753. background-position: -366px -68px;
  1754. }
  1755. .l-icon-to-top:active {
  1756. background-position: -402px -68px;
  1757. }
  1758. .l-icon-star-orange {
  1759. width: 13px;
  1760. height: 13px;
  1761. background-position: -178px -97px;
  1762. }
  1763. .l-icon-star-blue {
  1764. width: 13px;
  1765. height: 13px;
  1766. background-position: -134px -97px;
  1767. }
  1768. .media-top {
  1769. vertical-align: top;
  1770. }
  1771. .l-unit__stat-cols {
  1772. padding-right: 10px;
  1773. }
  1774. .l-unit__stat-cols.last {
  1775. padding-right: 0;
  1776. }
  1777. .l-unit__stat-cols.graph {
  1778. width: 200px;
  1779. }
  1780. .l-unit__stat-cols.tiny {
  1781. font-size:11px;
  1782. line-height: 19px;
  1783. }
  1784. .l-percent {
  1785. border-bottom: 1px dotted #ccc;
  1786. margin-top: 1px;
  1787. width: 200px;
  1788. }
  1789. .l-percent__fill {
  1790. background-color: #aacc0d;
  1791. height: 3px;
  1792. position: relative;
  1793. bottom: -1px;
  1794. }
  1795. .to-top {
  1796. display: inline-block;
  1797. position: fixed;
  1798. top: 92%;
  1799. right: 3%;
  1800. }
  1801. #vstobjects {
  1802. margin-top: -1px;
  1803. }
  1804. #vstobjects .l-center {
  1805. padding-top: 20px;
  1806. padding-bottom: 30px;
  1807. font-size: 12px;
  1808. }
  1809. .timer-container {
  1810. margin-top: 4px;
  1811. }
  1812. .timer-container .refresh-timer {
  1813. border: 2px solid #9f9f9f;
  1814. border-radius: 14px;
  1815. height: 14px;
  1816. width: 14px;
  1817. float: left;
  1818. margin: 2px 10px 0 0;
  1819. }
  1820. .timer-container .refresh-timer.paused {
  1821. border: 2px solid #9f9f9f;
  1822. }
  1823. .timer-container .refresh-timer.paused .loader-half.right,
  1824. .timer-container .refresh-timer.paused .loader-half.dark {
  1825. background-color: #9d9f9f;
  1826. }
  1827. .timer-container .loader-half {
  1828. border-radius: 0 14px 14px 0;
  1829. height: 14px;
  1830. width: 7px;
  1831. float: left;
  1832. }
  1833. .timer-container .loader-half.left {
  1834. border-radius: 14px 0 0 14px;
  1835. background-color: #fff;
  1836. }
  1837. .timer-container .loader-half.right {
  1838. margin-left: 7px;
  1839. background-color: #9f9f9f;
  1840. }
  1841. .timer-container .loader-half.dark {
  1842. background-color: #9f9f9f;
  1843. }
  1844. .timer-container .movement {
  1845. float: left;
  1846. width: 14px;
  1847. height: 14px;
  1848. position: absolute;
  1849. }
  1850. .timer-container .movement.left {
  1851. z-index: 10;
  1852. }
  1853. .timer-container .movement.right {
  1854. transform: rotate(180deg);
  1855. -webkit-transform: rotate(180deg);
  1856. }
  1857. .timer-container .timer-button {
  1858. cursor: pointer;
  1859. text-decotation: underline;
  1860. margin: 7px 0 0 38px;
  1861. width: 15px;
  1862. float: left;
  1863. height: 10px;
  1864. }
  1865. .timer-container .timer-button.pause {
  1866. background: url(/images/pause.png) no-repeat ;
  1867. }
  1868. .timer-container .timer-button.play {
  1869. background: url(/images/start.png) no-repeat;
  1870. }
  1871. .uppercase {
  1872. text-transform: uppercase;
  1873. }
  1874. .title b,
  1875. .title {
  1876. color: #ff6701;
  1877. font-size: 12px;
  1878. font-weight: bold;
  1879. padding: 0 30px 0px 73px;
  1880. line-height: 30px;
  1881. text-transform: uppercase;
  1882. }
  1883. .title {
  1884. display: inline-block;
  1885. float: left;
  1886. }
  1887. /* form styles */
  1888. .vst-error {
  1889. color: #BE5ABF;
  1890. font-weight: bold;
  1891. display: inline-block;
  1892. height: 16px;
  1893. overflow: hidden;
  1894. padding-top: 6px;
  1895. width: 620px;
  1896. }
  1897. .vst-ok {
  1898. color: #9fbf0c;
  1899. font-weight: bold;
  1900. display: inline-block;
  1901. height: 16px;
  1902. overflow: hidden;
  1903. padding-top: 6px;
  1904. max-width: 600px;
  1905. }
  1906. .vst-ok a {
  1907. color: #2c9491;
  1908. }
  1909. .vst-ok a:hover {
  1910. color: #ff6701;
  1911. }
  1912. .vst-ok a:active {
  1913. color: #f72b44;
  1914. }
  1915. .data {
  1916. margin: 0 0 90px 0;
  1917. }
  1918. .data-col1 {
  1919. width: 148px;
  1920. }
  1921. .data-col1 td {
  1922. padding: 10px 0 0 5px;
  1923. }
  1924. .data-col1 tr:first-child td {
  1925. padding: 59px 0 0 5px;
  1926. }
  1927. .login-box td,
  1928. .data td {
  1929. color: #555;
  1930. font-size: 15px;
  1931. padding-bottom: 3px;
  1932. font-weight: bold;
  1933. }
  1934. .input-label {
  1935. padding-top: 20px;
  1936. }
  1937. .data input[type="checkbox"] {
  1938. display: inline;
  1939. cursor: pointer;
  1940. }
  1941. .step-top {
  1942. padding-top: 42px;
  1943. }
  1944. .data a {
  1945. text-decoration: none;
  1946. }
  1947. label {
  1948. cursor: pointer;
  1949. }
  1950. .vst-input {
  1951. background-color: #fff;
  1952. border: 1px solid #cfcfcf;
  1953. border-radius: 0px;
  1954. color: #555;
  1955. font-family: Arial;
  1956. font-size: 19px;
  1957. height: 28px;
  1958. margin: 2px 6px 0 0;
  1959. padding: 7px 3px 9px 14px;
  1960. width: 360px;
  1961. font-weight: normal;
  1962. }
  1963. .vst-input:hover {
  1964. border: 1px solid #909090;
  1965. }
  1966. .vst-input:focus {
  1967. border: 1px solid #55C9C0;
  1968. background-color: #D7F9FF;
  1969. color: #333;
  1970. }
  1971. .vst-input:disabled,
  1972. .vst-list:disabled {
  1973. background-color: #ebebeb;
  1974. }
  1975. .vst-input:focus:disabled {
  1976. border-color: #f1f1f1;
  1977. background-color: #f1f1f1;
  1978. }
  1979. .vst-input.long{
  1980. width: 580px;
  1981. }
  1982. .vst-list {
  1983. background-color: #fff;
  1984. border: 1px solid #ccc;
  1985. border-radius: 0;
  1986. color: #555;
  1987. font-family: Arial,Helvetica,sans-serif;
  1988. font-size: 19px;
  1989. font-weight: normal;
  1990. height: 43px;
  1991. margin: 2px 6px 0 0;
  1992. min-width: 138px;
  1993. padding: 8px 1px 6px 10px;
  1994. background-image: url("/images/sprite.png");
  1995. background-position: -185px -604px;
  1996. width: 270px;
  1997. appearance:none;
  1998. -moz-appearance:none;
  1999. -webkit-appearance:none;
  2000. text-shadow: 0 0 0 #555;
  2001. /*color: transparent !important;*/
  2002. }
  2003. .vst-list.long-2 {
  2004. width: 486px;
  2005. background-position: 502px -604px;
  2006. }
  2007. .vst-list option {
  2008. padding: 6px 1px 6px 15px;
  2009. }
  2010. .vst-list:hover {
  2011. border: 1px solid #909090;
  2012. }
  2013. .vst-list:focus {
  2014. border: 1px solid #55C9C0;
  2015. color: #333;
  2016. }
  2017. a.vst-text,
  2018. a.vst-text b{
  2019. color: #2c9491;
  2020. }
  2021. a.vst-text:hover,
  2022. a.vst-text:hover b{
  2023. color: #ff6701;
  2024. }
  2025. a.vst-text:active,
  2026. a.vst-text:active b{
  2027. color: #ff6701;
  2028. }
  2029. .vst-textinput {
  2030. background-color: #fff;
  2031. border: 1px solid #cfcfcf;
  2032. border-radius: 0px;
  2033. color: #555;
  2034. font-size: 19px;
  2035. padding: 5px;
  2036. width: 560px;
  2037. height: 90px;
  2038. font-family:Arial, Helvetica, sans-serif;
  2039. padding: 9px 1px 6px 14px;
  2040. font-weight: normal;
  2041. }
  2042. .vst-textinput:hover {
  2043. border: 1px solid #909090;
  2044. }
  2045. .vst-textinput:focus {
  2046. border: 1px solid #55C9C0;
  2047. background-color: #D7F9FF;
  2048. color: #333;
  2049. }
  2050. .vst-textinput:disabled {
  2051. background-color: #f1f1f1;
  2052. }
  2053. .generate {
  2054. color: #2C9491;
  2055. text-decoration: underline;
  2056. cursor: pointer;
  2057. margin-left: -3px;
  2058. padding: 0 3px;
  2059. }
  2060. .generate:hover {
  2061. background-color: #ff6701;
  2062. border-color: #ff6701;
  2063. color: #fff;
  2064. }
  2065. .generate:active {
  2066. background-color: #F7D616;
  2067. border-color: #F7D616;
  2068. }
  2069. .vst-advanced {
  2070. border-bottom: 1px solid #2c9491;
  2071. color: #2c9491;
  2072. font-size: 11px;
  2073. letter-spacing: 1px;
  2074. padding: 2px 2px 0;
  2075. text-decoration: none;
  2076. text-transform: uppercase;
  2077. }
  2078. .login-box .vst-advanced:hover {
  2079. color: #ff6701;
  2080. background-color: transparent;
  2081. border-color: transparent;
  2082. }
  2083. .vst-advanced:hover {
  2084. color: #fff;
  2085. background-color: #ff6701;
  2086. border-color: #ff6701;
  2087. }
  2088. .login-box .vst-advanced:active,
  2089. .vst-advanced:active {
  2090. color: #fff;
  2091. background-color: #F7D616;
  2092. border-color: #F7D616;
  2093. }
  2094. .login-box .vst-advanced {
  2095. border-bottom: none;
  2096. color: #2c9491;
  2097. font-size: 10px;
  2098. letter-spacing: 1px;
  2099. padding: 2px 2px 0;
  2100. text-decoration: none;
  2101. text-transform: uppercase;
  2102. }
  2103. .vst-checkbox {
  2104. font-size: 19px;
  2105. margin: 2px 6px 0 3px;
  2106. padding: 5px;
  2107. }
  2108. .additional-control {
  2109. margin-left: 17px;
  2110. color: #2C9491;
  2111. border-bottom: 1px solid #2C9491;
  2112. font-size: 11px;
  2113. letter-spacing: 1px;
  2114. cursor: pointer;
  2115. text-transform: uppercase;
  2116. font-weight: bold;
  2117. padding: 2px 2px 0;
  2118. }
  2119. .additional-control:hover {
  2120. background-color: #ff6701;
  2121. border-color: #ff6701;
  2122. color: #fff;
  2123. }
  2124. .additional-control:active {
  2125. color: #fff;
  2126. background-color: #aaa;
  2127. }
  2128. .additional-control.ftp-remove-user {
  2129. padding: 2px 0 0 0;
  2130. }
  2131. .additional-control.ftp-remove-user:hover {
  2132. background-color: #FF3438;
  2133. border-color: #FF3438;
  2134. }
  2135. .additional-control.ftp-remove-user:active {
  2136. background-color: #FF5F5F;
  2137. border-color: #FF5F5F;
  2138. }
  2139. .data .step-left {
  2140. padding-left: 50px;
  2141. }
  2142. .hide-password {
  2143. color: #2361a1;
  2144. margin-left: -36px;
  2145. padding-left: 3px;
  2146. z-index: 1;
  2147. }
  2148. .toggle-psw-visibility-icon {
  2149. cursor: pointer;
  2150. opacity: 1;
  2151. }
  2152. .show-passwords-enabled-action {
  2153. opacity: 0.4;
  2154. }
  2155. .ftp-path-value,
  2156. .hint,
  2157. td.hint {
  2158. color: #777;
  2159. font-size: 15px;
  2160. font-style: italic;
  2161. font-weight: normal;
  2162. }
  2163. .ui-button,
  2164. .button {
  2165. filter:chroma(color=#000);
  2166. cursor: pointer;
  2167. border-radius: 3px 3px 3px 3px;
  2168. font-size: 13px;
  2169. font-weight: bold;
  2170. padding: 1px 16px 3px 16px;
  2171. width: 108px;
  2172. height: 34px;
  2173. color: #fafafa;
  2174. border: 1px solid #9FBF0C;
  2175. background-color: #9FBF0C;
  2176. }
  2177. .ui-button:hover,
  2178. .button:hover {
  2179. color: #555;
  2180. border: 1px solid #C0E60F;
  2181. background-color: #C0E60F;
  2182. }
  2183. .ui-button:active,
  2184. .button:active {
  2185. border: 1px solid #D1D70D !important;
  2186. background-color: #D1D70D !important;
  2187. }
  2188. .ui-button:focus,
  2189. .button:focus {
  2190. border: 1px solid #90AD0D;
  2191. background-color: #90AD0D;
  2192. }
  2193. .ui-button.cancel,
  2194. .button.cancel {
  2195. color: #777;
  2196. border: 1px solid #DFDEDD;
  2197. background-color: #DFDEDD;
  2198. }
  2199. .ui-button.cancel:hover,
  2200. .button.cancel:hover {
  2201. color: #fff;
  2202. border: 1px solid #999;
  2203. background-color: #999;
  2204. }
  2205. .ui-button.cancel:active,
  2206. .button.cancel:active {
  2207. border: 1px solid #D1D70D;
  2208. background-color: #D1D70D;
  2209. }
  2210. .ui-button span {
  2211. color: #fff;
  2212. }
  2213. .ui-button:hover span {
  2214. color: #555 !important;
  2215. }
  2216. .ui-button:active span {
  2217. color: #555;
  2218. }
  2219. .ui-button.cancel span {
  2220. color: #777;
  2221. }
  2222. .ui-button:hover span {
  2223. color: #fff;
  2224. }
  2225. .ui-button:active span {
  2226. color: #fff;
  2227. }
  2228. .unlim-trigger {
  2229. cursor: pointer;
  2230. margin-left: -36px;
  2231. padding-left: 3px;
  2232. z-index: 1;
  2233. }
  2234. .optional {
  2235. font-size: 12px;
  2236. padding: 0 0 0 6px;
  2237. font-weight: normal;
  2238. }
  2239. .data-active b {
  2240. color: #9FBF0C;
  2241. font-size: 11px;
  2242. letter-spacing: 1px;
  2243. text-transform: uppercase;
  2244. }
  2245. .data-suspended b {
  2246. color: #A3A3A3;
  2247. font-size: 11px;
  2248. letter-spacing: 3px;
  2249. font-weight: bold;
  2250. text-transform: uppercase;
  2251. }
  2252. .data-date {
  2253. font-weight: normal;
  2254. color: #777;
  2255. font-size: 12px;
  2256. letter-spacing: 1px;
  2257. line-height: 23px;
  2258. }
  2259. .data-dotted {
  2260. vertical-align: top;
  2261. }
  2262. :focus {outline:none;}
  2263. ::-moz-focus-inner {border:0;}
  2264. .login {
  2265. background-color: #fff;
  2266. box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
  2267. font-family: Arial,Helvetica,sans-serif;
  2268. margin: 0;
  2269. padding: 0;
  2270. text-align: left;
  2271. vertical-align: top;
  2272. width: 500px;
  2273. }
  2274. .login a.error {
  2275. color: #BE5ABF;
  2276. }
  2277. .vestacp {
  2278. color: #505050;
  2279. font-size: 10px;
  2280. text-align: right;
  2281. }
  2282. .vestacp:hover {
  2283. color: #2c9491;
  2284. }
  2285. .vestacp:active {
  2286. color: #ff6701;
  2287. }
  2288. .login-bottom {
  2289. height: 50px;
  2290. margin: 0;
  2291. padding: 0 26px 0 0;
  2292. text-align: right;
  2293. vertical-align: top;
  2294. width: 474px;
  2295. }
  2296. .l-unit.selected {
  2297. background-color: #feef9a;
  2298. color: #555;
  2299. }
  2300. .l-unit.selected b,
  2301. .l-unit.selected strong {
  2302. color: #555;
  2303. }
  2304. /* MAIN MENU COLLAPSED */
  2305. .collapsed .l-stat {
  2306. padding-top: 20px;
  2307. }
  2308. .collapsed .l-stat__col a {
  2309. height: 0;
  2310. min-height: 0;
  2311. overflow: hidden;
  2312. }
  2313. .collapsed .l-stat__col-title {
  2314. padding-top: 2px;
  2315. }
  2316. div.l-content.collapsed > div.l-separator:nth-of-type(2) {
  2317. margin-top: 93px;
  2318. position: fixed;
  2319. }
  2320. div.l-content.collapsed > div.l-separator:nth-of-type(4) {
  2321. margin-top: 138px;
  2322. position: fixed;
  2323. }
  2324. div.l-content.collapsed .l-sort {
  2325. margin-top: 94px;
  2326. }
  2327. .l-content > .l-center .l-unit:nth-of-type(1) {
  2328. padding-top: 260px;
  2329. }
  2330. .l-content > .l-center .l-unit-ft:nth-of-type(1) {
  2331. padding-top: 260px;
  2332. }
  2333. form#vstobjects {
  2334. padding-top: 280px;
  2335. }
  2336. form#vstobjects.suspended {
  2337. background-color: #EAEAEA;
  2338. padding-bottom: 30px;
  2339. }
  2340. #add-icon {
  2341. width: 45px;
  2342. height: 45px;
  2343. background-image: url("/images/sprite.png");
  2344. background-position: -378px -107px;
  2345. background-repeat: no-repeat;
  2346. display: inline-block;
  2347. z-index: 3;
  2348. }
  2349. .l-sort__create-btn.restore #add-icon {
  2350. background-position: -378px -250px;
  2351. }
  2352. .l-sort__create-btn.edit #add-icon {
  2353. background-position: -378px -154px;
  2354. }
  2355. #tooltip {
  2356. background-color: #aacc0d;
  2357. border-radius: 15px;
  2358. bottom: 6px;
  2359. color: #fff;
  2360. font-size: 12px;
  2361. font-weight: bold;
  2362. height: 26px;
  2363. left: 12px;
  2364. letter-spacing: 0;
  2365. line-height: 25px;
  2366. margin-left: 12px;
  2367. margin-top: 7px;
  2368. padding: 3px 14px 3px 27px;
  2369. position: absolute;
  2370. text-transform: uppercase;
  2371. z-index: -1;
  2372. }
  2373. .l-sort__create-btn:active #add-icon {
  2374. background-position: -425px -107px;
  2375. }
  2376. .l-sort__create-btn.restore:active #add-icon {
  2377. background-position: -425px -250px !important;
  2378. }
  2379. .l-sort__create-btn.edit:active #add-icon {
  2380. background-position: -425px -154px !important;
  2381. }
  2382. .l-sort__create-btn.edit:hover #tooltip {
  2383. background-color: #55C9C0;
  2384. }
  2385. .l-sort__create-btn.edit:active #tooltip {
  2386. background-color: #3BF0E6 !important;
  2387. }
  2388. .l-sort__create-btn:active #tooltip {
  2389. background-color: #D9F210;
  2390. }
  2391. .noselect {
  2392. -webkit-touch-callout: none;
  2393. -webkit-user-select: none;
  2394. -khtml-user-select: none;
  2395. -moz-user-select: none;
  2396. -ms-user-select: none;
  2397. user-select: none;
  2398. }
  2399. .search-input {
  2400. border: 1px solid #ddd;
  2401. height: 21px;
  2402. line-height: 28px;
  2403. padding-left: 7px;
  2404. float: left;
  2405. width: 0px;
  2406. visibility: hidden;
  2407. -webkit-transition: width .2s ease-out;
  2408. -moz-transition: width .2s ease-out;
  2409. -o-transition: width .2s ease-out;
  2410. transition: width .2s ease-out;
  2411. }
  2412. .search-input.activated{
  2413. width: 150px;
  2414. visibility: visible;
  2415. }
  2416. .search-input:focus {
  2417. background-color: #d7f9ff;
  2418. border-color: #55c9c0;
  2419. color: #333;
  2420. }
  2421. .float-left {
  2422. float: left;
  2423. }
  2424. .float-right {
  2425. float: right;
  2426. }
  2427. .display-inline-block {
  2428. display: inline-block;
  2429. }
  2430. .width-100p {
  2431. width: 100%;
  2432. }
  2433. .l-sort-toolbar table td {
  2434. float: left;
  2435. }
  2436. .l-sort-toolbar__search-box {
  2437. float: right !important;
  2438. padding-top: 3px;
  2439. }
  2440. .ui-dialog .ui-dialog-buttonpane button:nth-of-type(2) {
  2441. -background-color: #dfdedd;
  2442. }
  2443. .shortcuts {
  2444. background: rgba(50, 50, 50, 0.9);
  2445. display: inline-block;
  2446. position: fixed;
  2447. right: 20%;
  2448. bottom: 0;
  2449. color: #eee;
  2450. width: 800px;
  2451. border: 1px solid #333;
  2452. }
  2453. .shortcuts .header {
  2454. border-bottom: 1px solid #333;
  2455. height: 43px;
  2456. }
  2457. .shortcuts .title {
  2458. text-transform: uppercase;
  2459. color: #ffcc00;
  2460. padding: 7px 0 7px 14px;
  2461. display: inline-block;
  2462. float: left;
  2463. font-size: 11px;
  2464. letter-spacing: 3px;
  2465. }
  2466. .shortcuts .close {
  2467. background: url("/images/sprite.png") repeat scroll -408px -469px;
  2468. cursor: pointer;
  2469. display: inline-block;
  2470. float: right;
  2471. height: 32px;
  2472. padding-top: 11px;
  2473. width: 46px;
  2474. }
  2475. .shortcuts .close:hover {
  2476. background-color: #000;
  2477. }
  2478. .shortcuts .close:active {
  2479. background-color: #55c9c0;
  2480. }
  2481. .shortcuts ul {
  2482. list-style-type: none;
  2483. padding: 30px 15px;
  2484. display: inline-block;
  2485. float: left;
  2486. }
  2487. .shortcuts ul li {
  2488. padding: 5px 20px;
  2489. }
  2490. .shortcuts ul li.step-top {
  2491. padding-bottom: 30px;
  2492. }
  2493. .shortcuts ul li span {
  2494. color: #48F4EF;
  2495. display: inline-block;
  2496. font-weight: bold;
  2497. padding: 0 20px 0 0;
  2498. text-align: right;
  2499. width: 140px;
  2500. }