styles.min.css 61 KB

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