styles.min.css 50 KB

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