styles.min.css 57 KB

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