styles.min.css 62 KB

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