styles.min.css 61 KB

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