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