You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gogs.css 50KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616
  1. @font-face {
  2. font-family: 'octicons';
  3. src: url('../fonts/octicons.eot?#iefix&v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d') format('embedded-opentype'), url('../fonts/octicons.woff?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d') format('woff'), url('../fonts/octicons.ttf?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d') format('truetype'), url('../fonts/octicons.svg?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d#octicons') format('svg');
  4. font-weight: normal;
  5. font-style: normal;
  6. }
  7. .octicon,
  8. .mega-octicon {
  9. font: normal normal normal 16px/1 octicons;
  10. display: inline-block;
  11. text-decoration: none;
  12. text-rendering: auto;
  13. -webkit-font-smoothing: antialiased;
  14. -moz-osx-font-smoothing: grayscale;
  15. -webkit-user-select: none;
  16. -moz-user-select: none;
  17. -ms-user-select: none;
  18. user-select: none;
  19. }
  20. .mega-octicon {
  21. font-size: 32px;
  22. }
  23. .octicon-alert:before {
  24. content: '\f02d';
  25. }
  26. /*  */
  27. .octicon-arrow-down:before {
  28. content: '\f03f';
  29. }
  30. /*  */
  31. .octicon-arrow-left:before {
  32. content: '\f040';
  33. }
  34. /*  */
  35. .octicon-arrow-right:before {
  36. content: '\f03e';
  37. }
  38. /*  */
  39. .octicon-arrow-small-down:before {
  40. content: '\f0a0';
  41. }
  42. /*  */
  43. .octicon-arrow-small-left:before {
  44. content: '\f0a1';
  45. }
  46. /*  */
  47. .octicon-arrow-small-right:before {
  48. content: '\f071';
  49. }
  50. /*  */
  51. .octicon-arrow-small-up:before {
  52. content: '\f09f';
  53. }
  54. /*  */
  55. .octicon-arrow-up:before {
  56. content: '\f03d';
  57. }
  58. /*  */
  59. .octicon-microscope:before,
  60. .octicon-beaker:before {
  61. content: '\f0dd';
  62. }
  63. /*  */
  64. .octicon-bell:before {
  65. content: '\f0de';
  66. }
  67. /*  */
  68. .octicon-book:before {
  69. content: '\f007';
  70. }
  71. /*  */
  72. .octicon-bookmark:before {
  73. content: '\f07b';
  74. }
  75. /*  */
  76. .octicon-briefcase:before {
  77. content: '\f0d3';
  78. }
  79. /*  */
  80. .octicon-broadcast:before {
  81. content: '\f048';
  82. }
  83. /*  */
  84. .octicon-browser:before {
  85. content: '\f0c5';
  86. }
  87. /*  */
  88. .octicon-bug:before {
  89. content: '\f091';
  90. }
  91. /*  */
  92. .octicon-calendar:before {
  93. content: '\f068';
  94. }
  95. /*  */
  96. .octicon-check:before {
  97. content: '\f03a';
  98. }
  99. /*  */
  100. .octicon-checklist:before {
  101. content: '\f076';
  102. }
  103. /*  */
  104. .octicon-chevron-down:before {
  105. content: '\f0a3';
  106. }
  107. /*  */
  108. .octicon-chevron-left:before {
  109. content: '\f0a4';
  110. }
  111. /*  */
  112. .octicon-chevron-right:before {
  113. content: '\f078';
  114. }
  115. /*  */
  116. .octicon-chevron-up:before {
  117. content: '\f0a2';
  118. }
  119. /*  */
  120. .octicon-circle-slash:before {
  121. content: '\f084';
  122. }
  123. /*  */
  124. .octicon-circuit-board:before {
  125. content: '\f0d6';
  126. }
  127. /*  */
  128. .octicon-clippy:before {
  129. content: '\f035';
  130. }
  131. /*  */
  132. .octicon-clock:before {
  133. content: '\f046';
  134. }
  135. /*  */
  136. .octicon-cloud-download:before {
  137. content: '\f00b';
  138. }
  139. /*  */
  140. .octicon-cloud-upload:before {
  141. content: '\f00c';
  142. }
  143. /*  */
  144. .octicon-code:before {
  145. content: '\f05f';
  146. }
  147. /*  */
  148. .octicon-color-mode:before {
  149. content: '\f065';
  150. }
  151. /*  */
  152. .octicon-comment-add:before,
  153. .octicon-comment:before {
  154. content: '\f02b';
  155. }
  156. /*  */
  157. .octicon-comment-discussion:before {
  158. content: '\f04f';
  159. }
  160. /*  */
  161. .octicon-credit-card:before {
  162. content: '\f045';
  163. }
  164. /*  */
  165. .octicon-dash:before {
  166. content: '\f0ca';
  167. }
  168. /*  */
  169. .octicon-dashboard:before {
  170. content: '\f07d';
  171. }
  172. /*  */
  173. .octicon-database:before {
  174. content: '\f096';
  175. }
  176. /*  */
  177. .octicon-clone:before,
  178. .octicon-desktop-download:before {
  179. content: '\f0dc';
  180. }
  181. /*  */
  182. .octicon-device-camera:before {
  183. content: '\f056';
  184. }
  185. /*  */
  186. .octicon-device-camera-video:before {
  187. content: '\f057';
  188. }
  189. /*  */
  190. .octicon-device-desktop:before {
  191. content: '\f27c';
  192. }
  193. /*  */
  194. .octicon-device-mobile:before {
  195. content: '\f038';
  196. }
  197. /*  */
  198. .octicon-diff:before {
  199. content: '\f04d';
  200. }
  201. /*  */
  202. .octicon-diff-added:before {
  203. content: '\f06b';
  204. }
  205. /*  */
  206. .octicon-diff-ignored:before {
  207. content: '\f099';
  208. }
  209. /*  */
  210. .octicon-diff-modified:before {
  211. content: '\f06d';
  212. }
  213. /*  */
  214. .octicon-diff-removed:before {
  215. content: '\f06c';
  216. }
  217. /*  */
  218. .octicon-diff-renamed:before {
  219. content: '\f06e';
  220. }
  221. /*  */
  222. .octicon-ellipsis:before {
  223. content: '\f09a';
  224. }
  225. /*  */
  226. .octicon-eye-unwatch:before,
  227. .octicon-eye-watch:before,
  228. .octicon-eye:before {
  229. content: '\f04e';
  230. }
  231. /*  */
  232. .octicon-file-binary:before {
  233. content: '\f094';
  234. }
  235. /*  */
  236. .octicon-file-code:before {
  237. content: '\f010';
  238. }
  239. /*  */
  240. .octicon-file-directory:before {
  241. content: '\f016';
  242. }
  243. /*  */
  244. .octicon-file-media:before {
  245. content: '\f012';
  246. }
  247. /*  */
  248. .octicon-file-pdf:before {
  249. content: '\f014';
  250. }
  251. /*  */
  252. .octicon-file-submodule:before {
  253. content: '\f017';
  254. }
  255. /*  */
  256. .octicon-file-symlink-directory:before {
  257. content: '\f0b1';
  258. }
  259. /*  */
  260. .octicon-file-symlink-file:before {
  261. content: '\f0b0';
  262. }
  263. /*  */
  264. .octicon-file-text:before {
  265. content: '\f011';
  266. }
  267. /*  */
  268. .octicon-file-zip:before {
  269. content: '\f013';
  270. }
  271. /*  */
  272. .octicon-flame:before {
  273. content: '\f0d2';
  274. }
  275. /*  */
  276. .octicon-fold:before {
  277. content: '\f0cc';
  278. }
  279. /*  */
  280. .octicon-gear:before {
  281. content: '\f02f';
  282. }
  283. /*  */
  284. .octicon-gift:before {
  285. content: '\f042';
  286. }
  287. /*  */
  288. .octicon-gist:before {
  289. content: '\f00e';
  290. }
  291. /*  */
  292. .octicon-gist-secret:before {
  293. content: '\f08c';
  294. }
  295. /*  */
  296. .octicon-git-branch-create:before,
  297. .octicon-git-branch-delete:before,
  298. .octicon-git-branch:before {
  299. content: '\f020';
  300. }
  301. /*  */
  302. .octicon-git-commit:before {
  303. content: '\f01f';
  304. }
  305. /*  */
  306. .octicon-git-compare:before {
  307. content: '\f0ac';
  308. }
  309. /*  */
  310. .octicon-git-merge:before {
  311. content: '\f023';
  312. }
  313. /*  */
  314. .octicon-git-pull-request-abandoned:before,
  315. .octicon-git-pull-request:before {
  316. content: '\f009';
  317. }
  318. /*  */
  319. .octicon-globe:before {
  320. content: '\f0b6';
  321. }
  322. /*  */
  323. .octicon-graph:before {
  324. content: '\f043';
  325. }
  326. /*  */
  327. .octicon-heart:before {
  328. content: '\2665';
  329. }
  330. /* ♥ */
  331. .octicon-history:before {
  332. content: '\f07e';
  333. }
  334. /*  */
  335. .octicon-home:before {
  336. content: '\f08d';
  337. }
  338. /*  */
  339. .octicon-horizontal-rule:before {
  340. content: '\f070';
  341. }
  342. /*  */
  343. .octicon-hubot:before {
  344. content: '\f09d';
  345. }
  346. /*  */
  347. .octicon-inbox:before {
  348. content: '\f0cf';
  349. }
  350. /*  */
  351. .octicon-info:before {
  352. content: '\f059';
  353. }
  354. /*  */
  355. .octicon-issue-closed:before {
  356. content: '\f028';
  357. }
  358. /*  */
  359. .octicon-issue-opened:before {
  360. content: '\f026';
  361. }
  362. /*  */
  363. .octicon-issue-reopened:before {
  364. content: '\f027';
  365. }
  366. /*  */
  367. .octicon-jersey:before {
  368. content: '\f019';
  369. }
  370. /*  */
  371. .octicon-key:before {
  372. content: '\f049';
  373. }
  374. /*  */
  375. .octicon-keyboard:before {
  376. content: '\f00d';
  377. }
  378. /*  */
  379. .octicon-law:before {
  380. content: '\f0d8';
  381. }
  382. /*  */
  383. .octicon-light-bulb:before {
  384. content: '\f000';
  385. }
  386. /*  */
  387. .octicon-link:before {
  388. content: '\f05c';
  389. }
  390. /*  */
  391. .octicon-link-external:before {
  392. content: '\f07f';
  393. }
  394. /*  */
  395. .octicon-list-ordered:before {
  396. content: '\f062';
  397. }
  398. /*  */
  399. .octicon-list-unordered:before {
  400. content: '\f061';
  401. }
  402. /*  */
  403. .octicon-location:before {
  404. content: '\f060';
  405. }
  406. /*  */
  407. .octicon-gist-private:before,
  408. .octicon-mirror-private:before,
  409. .octicon-git-fork-private:before,
  410. .octicon-lock:before {
  411. content: '\f06a';
  412. }
  413. /*  */
  414. .octicon-logo-github:before {
  415. content: '\f092';
  416. }
  417. /*  */
  418. .octicon-mail:before {
  419. content: '\f03b';
  420. }
  421. /*  */
  422. .octicon-mail-read:before {
  423. content: '\f03c';
  424. }
  425. /*  */
  426. .octicon-mail-reply:before {
  427. content: '\f051';
  428. }
  429. /*  */
  430. .octicon-mark-github:before {
  431. content: '\f00a';
  432. }
  433. /*  */
  434. .octicon-markdown:before {
  435. content: '\f0c9';
  436. }
  437. /*  */
  438. .octicon-megaphone:before {
  439. content: '\f077';
  440. }
  441. /*  */
  442. .octicon-mention:before {
  443. content: '\f0be';
  444. }
  445. /*  */
  446. .octicon-milestone:before {
  447. content: '\f075';
  448. }
  449. /*  */
  450. .octicon-mirror-public:before,
  451. .octicon-mirror:before {
  452. content: '\f024';
  453. }
  454. /*  */
  455. .octicon-mortar-board:before {
  456. content: '\f0d7';
  457. }
  458. /*  */
  459. .octicon-mute:before {
  460. content: '\f080';
  461. }
  462. /*  */
  463. .octicon-no-newline:before {
  464. content: '\f09c';
  465. }
  466. /*  */
  467. .octicon-octoface:before {
  468. content: '\f008';
  469. }
  470. /*  */
  471. .octicon-organization:before {
  472. content: '\f037';
  473. }
  474. /*  */
  475. .octicon-package:before {
  476. content: '\f0c4';
  477. }
  478. /*  */
  479. .octicon-paintcan:before {
  480. content: '\f0d1';
  481. }
  482. /*  */
  483. .octicon-pencil:before {
  484. content: '\f058';
  485. }
  486. /*  */
  487. .octicon-person-add:before,
  488. .octicon-person-follow:before,
  489. .octicon-person:before {
  490. content: '\f018';
  491. }
  492. /*  */
  493. .octicon-pin:before {
  494. content: '\f041';
  495. }
  496. /*  */
  497. .octicon-plug:before {
  498. content: '\f0d4';
  499. }
  500. /*  */
  501. .octicon-repo-create:before,
  502. .octicon-gist-new:before,
  503. .octicon-file-directory-create:before,
  504. .octicon-file-add:before,
  505. .octicon-plus:before {
  506. content: '\f05d';
  507. }
  508. /*  */
  509. .octicon-primitive-dot:before {
  510. content: '\f052';
  511. }
  512. /*  */
  513. .octicon-primitive-square:before {
  514. content: '\f053';
  515. }
  516. /*  */
  517. .octicon-pulse:before {
  518. content: '\f085';
  519. }
  520. /*  */
  521. .octicon-question:before {
  522. content: '\f02c';
  523. }
  524. /*  */
  525. .octicon-quote:before {
  526. content: '\f063';
  527. }
  528. /*  */
  529. .octicon-radio-tower:before {
  530. content: '\f030';
  531. }
  532. /*  */
  533. .octicon-repo-delete:before,
  534. .octicon-repo:before {
  535. content: '\f001';
  536. }
  537. /*  */
  538. .octicon-repo-clone:before {
  539. content: '\f04c';
  540. }
  541. /*  */
  542. .octicon-repo-force-push:before {
  543. content: '\f04a';
  544. }
  545. /*  */
  546. .octicon-gist-fork:before,
  547. .octicon-repo-forked:before {
  548. content: '\f002';
  549. }
  550. /*  */
  551. .octicon-repo-pull:before {
  552. content: '\f006';
  553. }
  554. /*  */
  555. .octicon-repo-push:before {
  556. content: '\f005';
  557. }
  558. /*  */
  559. .octicon-rocket:before {
  560. content: '\f033';
  561. }
  562. /*  */
  563. .octicon-rss:before {
  564. content: '\f034';
  565. }
  566. /*  */
  567. .octicon-ruby:before {
  568. content: '\f047';
  569. }
  570. /*  */
  571. .octicon-screen-full:before {
  572. content: '\f066';
  573. }
  574. /*  */
  575. .octicon-screen-normal:before {
  576. content: '\f067';
  577. }
  578. /*  */
  579. .octicon-search-save:before,
  580. .octicon-search:before {
  581. content: '\f02e';
  582. }
  583. /*  */
  584. .octicon-server:before {
  585. content: '\f097';
  586. }
  587. /*  */
  588. .octicon-settings:before {
  589. content: '\f07c';
  590. }
  591. /*  */
  592. .octicon-shield:before {
  593. content: '\f0e1';
  594. }
  595. /*  */
  596. .octicon-log-in:before,
  597. .octicon-sign-in:before {
  598. content: '\f036';
  599. }
  600. /*  */
  601. .octicon-log-out:before,
  602. .octicon-sign-out:before {
  603. content: '\f032';
  604. }
  605. /*  */
  606. .octicon-squirrel:before {
  607. content: '\f0b2';
  608. }
  609. /*  */
  610. .octicon-star-add:before,
  611. .octicon-star-delete:before,
  612. .octicon-star:before {
  613. content: '\f02a';
  614. }
  615. /*  */
  616. .octicon-stop:before {
  617. content: '\f08f';
  618. }
  619. /*  */
  620. .octicon-repo-sync:before,
  621. .octicon-sync:before {
  622. content: '\f087';
  623. }
  624. /*  */
  625. .octicon-tag-remove:before,
  626. .octicon-tag-add:before,
  627. .octicon-tag:before {
  628. content: '\f015';
  629. }
  630. /*  */
  631. .octicon-telescope:before {
  632. content: '\f088';
  633. }
  634. /*  */
  635. .octicon-terminal:before {
  636. content: '\f0c8';
  637. }
  638. /*  */
  639. .octicon-three-bars:before {
  640. content: '\f05e';
  641. }
  642. /*  */
  643. .octicon-thumbsdown:before {
  644. content: '\f0db';
  645. }
  646. /*  */
  647. .octicon-thumbsup:before {
  648. content: '\f0da';
  649. }
  650. /*  */
  651. .octicon-tools:before {
  652. content: '\f031';
  653. }
  654. /*  */
  655. .octicon-trashcan:before {
  656. content: '\f0d0';
  657. }
  658. /*  */
  659. .octicon-triangle-down:before {
  660. content: '\f05b';
  661. }
  662. /*  */
  663. .octicon-triangle-left:before {
  664. content: '\f044';
  665. }
  666. /*  */
  667. .octicon-triangle-right:before {
  668. content: '\f05a';
  669. }
  670. /*  */
  671. .octicon-triangle-up:before {
  672. content: '\f0aa';
  673. }
  674. /*  */
  675. .octicon-unfold:before {
  676. content: '\f039';
  677. }
  678. /*  */
  679. .octicon-unmute:before {
  680. content: '\f0ba';
  681. }
  682. /*  */
  683. .octicon-versions:before {
  684. content: '\f064';
  685. }
  686. /*  */
  687. .octicon-watch:before {
  688. content: '\f0e0';
  689. }
  690. /*  */
  691. .octicon-remove-close:before,
  692. .octicon-x:before {
  693. content: '\f081';
  694. }
  695. /*  */
  696. .octicon-zap:before {
  697. content: '\26A1';
  698. }
  699. /* ⚡ */
  700. .emoji {
  701. width: 1.5em;
  702. height: 1.5em;
  703. display: inline-block;
  704. background-size: contain;
  705. }
  706. body {
  707. font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif, '微软雅黑';
  708. background-color: #FAFAFA;
  709. }
  710. img {
  711. border-radius: 3px;
  712. }
  713. pre {
  714. font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  715. }
  716. pre.raw {
  717. padding: 7px 12px;
  718. margin: 10px 0;
  719. background-color: #f8f8f8;
  720. border: 1px solid #ddd;
  721. border-radius: 3px;
  722. font-size: 13px;
  723. line-height: 1.5;
  724. overflow: auto;
  725. }
  726. .full.height {
  727. padding: 0;
  728. margin: 0 0 -80px 0;
  729. min-height: 100%;
  730. }
  731. .following.bar {
  732. z-index: 900;
  733. left: 0;
  734. width: 100%;
  735. }
  736. .following.bar.light {
  737. background-color: white;
  738. border-bottom: 1px solid #DDDDDD;
  739. box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  740. }
  741. .following.bar .column .menu {
  742. margin-top: 0;
  743. }
  744. .following.bar .top.menu a.item.brand {
  745. padding-left: 0;
  746. }
  747. .following.bar .brand .ui.mini.image {
  748. width: 30px;
  749. }
  750. .following.bar .top.menu a.item:hover,
  751. .following.bar .top.menu .dropdown.item:hover,
  752. .following.bar .top.menu .dropdown.item.active {
  753. background-color: transparent;
  754. }
  755. .following.bar .top.menu a.item:hover {
  756. color: rgba(0, 0, 0, 0.45);
  757. }
  758. .following.bar .top.menu .menu {
  759. z-index: 900;
  760. }
  761. .following.bar .head.link.item {
  762. padding-right: 0!important;
  763. }
  764. .following.bar .head.link.item .dropdown.icon,
  765. .following.bar .head.link.item .menu .octicon {
  766. margin-right: 5px;
  767. }
  768. .following.bar .avatar > .ui.image {
  769. margin-right: 0;
  770. }
  771. .following.bar .searchbox {
  772. background-color: #f4f4f4 !important;
  773. }
  774. .following.bar .searchbox:focus {
  775. background-color: #e9e9e9 !important;
  776. }
  777. .following.bar .text .octicon {
  778. width: 16px;
  779. text-align: center;
  780. }
  781. .following.bar .right.menu .menu {
  782. left: auto;
  783. right: 0;
  784. }
  785. .following.bar .right.menu .dropdown .menu {
  786. margin-top: 0;
  787. }
  788. .ui.left {
  789. float: left;
  790. }
  791. .ui.right {
  792. float: right;
  793. }
  794. .ui .text.red {
  795. color: #d95c5c!important;
  796. }
  797. .ui .text.red a {
  798. color: #d95c5c!important;
  799. }
  800. .ui .text.red a:hover {
  801. color: #E67777!important;
  802. }
  803. .ui .text.blue {
  804. color: #428bca!important;
  805. }
  806. .ui .text.blue a {
  807. color: #15c!important;
  808. }
  809. .ui .text.blue a:hover {
  810. color: #428bca!important;
  811. }
  812. .ui .text.grey {
  813. color: #767676!important;
  814. }
  815. .ui .text.grey a {
  816. color: #444!important;
  817. }
  818. .ui .text.grey a:hover {
  819. color: #000!important;
  820. }
  821. .ui .text.green {
  822. color: #6cc644!important;
  823. }
  824. .ui .text.purple {
  825. color: #6e5494!important;
  826. }
  827. .ui .text.left {
  828. text-align: left!important;
  829. }
  830. .ui .text.right {
  831. text-align: right!important;
  832. }
  833. .ui .text.small {
  834. font-size: 0.75em;
  835. }
  836. .ui .text.truncate {
  837. overflow: hidden;
  838. text-overflow: ellipsis;
  839. white-space: nowrap;
  840. display: inline-block;
  841. }
  842. .ui .text.thin {
  843. font-weight: normal;
  844. }
  845. .ui .text.middle {
  846. vertical-align: middle;
  847. }
  848. .ui .message {
  849. text-align: center;
  850. }
  851. .ui .header > i + .content {
  852. padding-left: 0.75rem;
  853. vertical-align: middle;
  854. }
  855. .ui .warning.header {
  856. background-color: #F9EDBE!important;
  857. border-color: #F0C36D;
  858. }
  859. .ui .warning.segment {
  860. border-color: #F0C36D;
  861. }
  862. .ui .info.header {
  863. background-color: #d9edf7!important;
  864. border-color: #85c5e5;
  865. }
  866. .ui .info.segment {
  867. border-color: #85c5e5;
  868. }
  869. .ui .normal.header {
  870. font-weight: normal;
  871. }
  872. .ui .avatar.image {
  873. border-radius: 3px;
  874. }
  875. .ui .form .fake {
  876. display: none!important;
  877. }
  878. .ui.status.buttons .octicon {
  879. margin-right: 4px;
  880. }
  881. .overflow.menu .items {
  882. max-height: 300px;
  883. overflow-y: auto;
  884. }
  885. .overflow.menu .items .item {
  886. position: relative;
  887. cursor: pointer;
  888. display: block;
  889. border: none;
  890. height: auto;
  891. border-top: none;
  892. line-height: 1em;
  893. color: rgba(0, 0, 0, 0.8);
  894. padding: .71428571em 1.14285714em!important;
  895. font-size: 1rem;
  896. text-transform: none;
  897. font-weight: 400;
  898. box-shadow: none;
  899. -webkit-touch-callout: none;
  900. }
  901. .overflow.menu .items .item.active {
  902. font-weight: 700;
  903. }
  904. .overflow.menu .items .item:hover {
  905. background: rgba(0, 0, 0, 0.05);
  906. color: rgba(0, 0, 0, 0.8);
  907. z-index: 13;
  908. }
  909. .scrolling.menu .item.selected {
  910. font-weight: 700!important;
  911. }
  912. footer {
  913. margin-top: 54px !important;
  914. height: 40px;
  915. background-color: white;
  916. border-top: 1px solid #d6d6d6;
  917. clear: both;
  918. width: 100%;
  919. color: #888888;
  920. }
  921. footer .container {
  922. padding-top: 10px;
  923. }
  924. footer .container .fa {
  925. width: 16px;
  926. text-align: center;
  927. color: #428bca;
  928. }
  929. footer .container .links > * {
  930. border-left: 1px solid #d6d6d6;
  931. padding-left: 8px;
  932. margin-left: 5px;
  933. }
  934. footer .container .links > *:first-child {
  935. border-left: none;
  936. }
  937. .hide {
  938. display: none;
  939. }
  940. .center {
  941. text-align: center;
  942. }
  943. .img-1 {
  944. width: 2px !important;
  945. height: 2px !important;
  946. }
  947. .img-2 {
  948. width: 4px !important;
  949. height: 4px !important;
  950. }
  951. .img-3 {
  952. width: 6px !important;
  953. height: 6px !important;
  954. }
  955. .img-4 {
  956. width: 8px !important;
  957. height: 8px !important;
  958. }
  959. .img-5 {
  960. width: 10px !important;
  961. height: 10px !important;
  962. }
  963. .img-6 {
  964. width: 12px !important;
  965. height: 12px !important;
  966. }
  967. .img-7 {
  968. width: 14px !important;
  969. height: 14px !important;
  970. }
  971. .img-8 {
  972. width: 16px !important;
  973. height: 16px !important;
  974. }
  975. .img-9 {
  976. width: 18px !important;
  977. height: 18px !important;
  978. }
  979. .img-10 {
  980. width: 20px !important;
  981. height: 20px !important;
  982. }
  983. .img-11 {
  984. width: 22px !important;
  985. height: 22px !important;
  986. }
  987. .img-12 {
  988. width: 24px !important;
  989. height: 24px !important;
  990. }
  991. .img-13 {
  992. width: 26px !important;
  993. height: 26px !important;
  994. }
  995. .img-14 {
  996. width: 28px !important;
  997. height: 28px !important;
  998. }
  999. .img-15 {
  1000. width: 30px !important;
  1001. height: 30px !important;
  1002. }
  1003. .img-16 {
  1004. width: 32px !important;
  1005. height: 32px !important;
  1006. }
  1007. .octicon.icon,
  1008. .mega-octicon.icon {
  1009. font-family: octicons;
  1010. opacity: 1!important;
  1011. }
  1012. .sr-only {
  1013. position: absolute;
  1014. width: 1px;
  1015. height: 1px;
  1016. padding: 0;
  1017. margin: -1px;
  1018. overflow: hidden;
  1019. clip: rect(0, 0, 0, 0);
  1020. border: 0;
  1021. }
  1022. .sr-only-focusable:active,
  1023. .sr-only-focusable:focus {
  1024. position: static;
  1025. width: auto;
  1026. height: auto;
  1027. margin: 0;
  1028. overflow: visible;
  1029. clip: auto;
  1030. }
  1031. @media only screen and (max-width: 991px) and (min-width: 768px) {
  1032. .ui.container {
  1033. width: 95%;
  1034. }
  1035. }
  1036. .markdown {
  1037. overflow: hidden;
  1038. font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
  1039. font-size: 16px;
  1040. line-height: 1.6;
  1041. word-wrap: break-word;
  1042. }
  1043. .markdown > *:first-child {
  1044. margin-top: 0 !important;
  1045. }
  1046. .markdown > *:last-child {
  1047. margin-bottom: 0 !important;
  1048. }
  1049. .markdown a:not([href]) {
  1050. color: inherit;
  1051. text-decoration: none;
  1052. }
  1053. .markdown .absent {
  1054. color: #c00;
  1055. }
  1056. .markdown .anchor {
  1057. position: absolute;
  1058. top: 0;
  1059. left: 0;
  1060. display: block;
  1061. padding-right: 6px;
  1062. padding-left: 30px;
  1063. margin-left: -30px;
  1064. }
  1065. .markdown .anchor:focus {
  1066. outline: none;
  1067. }
  1068. .markdown h1,
  1069. .markdown h2,
  1070. .markdown h3,
  1071. .markdown h4,
  1072. .markdown h5,
  1073. .markdown h6 {
  1074. position: relative;
  1075. margin-top: 1em;
  1076. margin-bottom: 16px;
  1077. font-weight: bold;
  1078. line-height: 1.4;
  1079. }
  1080. .markdown h1 .octicon-link,
  1081. .markdown h2 .octicon-link,
  1082. .markdown h3 .octicon-link,
  1083. .markdown h4 .octicon-link,
  1084. .markdown h5 .octicon-link,
  1085. .markdown h6 .octicon-link {
  1086. display: none;
  1087. color: #000;
  1088. vertical-align: middle;
  1089. }
  1090. .markdown h1:hover .anchor,
  1091. .markdown h2:hover .anchor,
  1092. .markdown h3:hover .anchor,
  1093. .markdown h4:hover .anchor,
  1094. .markdown h5:hover .anchor,
  1095. .markdown h6:hover .anchor {
  1096. padding-left: 8px;
  1097. margin-left: -30px;
  1098. text-decoration: none;
  1099. }
  1100. .markdown h1:hover .anchor .octicon-link,
  1101. .markdown h2:hover .anchor .octicon-link,
  1102. .markdown h3:hover .anchor .octicon-link,
  1103. .markdown h4:hover .anchor .octicon-link,
  1104. .markdown h5:hover .anchor .octicon-link,
  1105. .markdown h6:hover .anchor .octicon-link {
  1106. display: inline-block;
  1107. }
  1108. .markdown h1 tt,
  1109. .markdown h1 code,
  1110. .markdown h2 tt,
  1111. .markdown h2 code,
  1112. .markdown h3 tt,
  1113. .markdown h3 code,
  1114. .markdown h4 tt,
  1115. .markdown h4 code,
  1116. .markdown h5 tt,
  1117. .markdown h5 code,
  1118. .markdown h6 tt,
  1119. .markdown h6 code {
  1120. font-size: inherit;
  1121. }
  1122. .markdown h1 {
  1123. padding-bottom: 0.3em;
  1124. font-size: 2.25em;
  1125. line-height: 1.2;
  1126. border-bottom: 1px solid #eee;
  1127. }
  1128. .markdown h1 .anchor {
  1129. line-height: 1;
  1130. }
  1131. .markdown h2 {
  1132. padding-bottom: 0.3em;
  1133. font-size: 1.75em;
  1134. line-height: 1.225;
  1135. border-bottom: 1px solid #eee;
  1136. }
  1137. .markdown h2 .anchor {
  1138. line-height: 1;
  1139. }
  1140. .markdown h3 {
  1141. font-size: 1.5em;
  1142. line-height: 1.43;
  1143. }
  1144. .markdown h3 .anchor {
  1145. line-height: 1.2;
  1146. }
  1147. .markdown h4 {
  1148. font-size: 1.25em;
  1149. }
  1150. .markdown h4 .anchor {
  1151. line-height: 1.2;
  1152. }
  1153. .markdown h5 {
  1154. font-size: 1em;
  1155. }
  1156. .markdown h5 .anchor {
  1157. line-height: 1.1;
  1158. }
  1159. .markdown h6 {
  1160. font-size: 1em;
  1161. color: #777;
  1162. }
  1163. .markdown h6 .anchor {
  1164. line-height: 1.1;
  1165. }
  1166. .markdown p,
  1167. .markdown blockquote,
  1168. .markdown ul,
  1169. .markdown ol,
  1170. .markdown dl,
  1171. .markdown table,
  1172. .markdown pre {
  1173. margin-top: 0;
  1174. margin-bottom: 16px;
  1175. }
  1176. .markdown hr {
  1177. height: 4px;
  1178. padding: 0;
  1179. margin: 16px 0;
  1180. background-color: #e7e7e7;
  1181. border: 0 none;
  1182. }
  1183. .markdown ul,
  1184. .markdown ol {
  1185. padding-left: 2em;
  1186. }
  1187. .markdown ul.no-list,
  1188. .markdown ol.no-list {
  1189. padding: 0;
  1190. list-style-type: none;
  1191. }
  1192. .markdown ul ul,
  1193. .markdown ul ol,
  1194. .markdown ol ol,
  1195. .markdown ol ul {
  1196. margin-top: 0;
  1197. margin-bottom: 0;
  1198. }
  1199. .markdown ol ol,
  1200. .markdown ul ol {
  1201. list-style-type: lower-roman;
  1202. }
  1203. .markdown li > p {
  1204. margin-top: 16px;
  1205. }
  1206. .markdown dl {
  1207. padding: 0;
  1208. }
  1209. .markdown dl dt {
  1210. padding: 0;
  1211. margin-top: 16px;
  1212. font-size: 1em;
  1213. font-style: italic;
  1214. font-weight: bold;
  1215. }
  1216. .markdown dl dd {
  1217. padding: 0 16px;
  1218. margin-bottom: 16px;
  1219. }
  1220. .markdown blockquote {
  1221. padding: 0 15px;
  1222. color: #777;
  1223. border-left: 4px solid #ddd;
  1224. }
  1225. .markdown blockquote > :first-child {
  1226. margin-top: 0;
  1227. }
  1228. .markdown blockquote > :last-child {
  1229. margin-bottom: 0;
  1230. }
  1231. .markdown table {
  1232. display: block;
  1233. width: 100%;
  1234. overflow: auto;
  1235. word-break: normal;
  1236. word-break: keep-all;
  1237. }
  1238. .markdown table th {
  1239. font-weight: bold;
  1240. }
  1241. .markdown table th,
  1242. .markdown table td {
  1243. padding: 6px 13px !important;
  1244. border: 1px solid #ddd;
  1245. }
  1246. .markdown table tr {
  1247. background-color: #fff;
  1248. border-top: 1px solid #ccc;
  1249. }
  1250. .markdown table tr:nth-child(2n) {
  1251. background-color: #f8f8f8;
  1252. }
  1253. .markdown img {
  1254. max-width: 100%;
  1255. box-sizing: border-box;
  1256. }
  1257. .markdown .emoji {
  1258. max-width: none;
  1259. }
  1260. .markdown span.frame {
  1261. display: block;
  1262. overflow: hidden;
  1263. }
  1264. .markdown span.frame > span {
  1265. display: block;
  1266. float: left;
  1267. width: auto;
  1268. padding: 7px;
  1269. margin: 13px 0 0;
  1270. overflow: hidden;
  1271. border: 1px solid #ddd;
  1272. }
  1273. .markdown span.frame span img {
  1274. display: block;
  1275. float: left;
  1276. }
  1277. .markdown span.frame span span {
  1278. display: block;
  1279. padding: 5px 0 0;
  1280. clear: both;
  1281. color: #333;
  1282. }
  1283. .markdown span.align-center {
  1284. display: block;
  1285. overflow: hidden;
  1286. clear: both;
  1287. }
  1288. .markdown span.align-center > span {
  1289. display: block;
  1290. margin: 13px auto 0;
  1291. overflow: hidden;
  1292. text-align: center;
  1293. }
  1294. .markdown span.align-center span img {
  1295. margin: 0 auto;
  1296. text-align: center;
  1297. }
  1298. .markdown span.align-right {
  1299. display: block;
  1300. overflow: hidden;
  1301. clear: both;
  1302. }
  1303. .markdown span.align-right > span {
  1304. display: block;
  1305. margin: 13px 0 0;
  1306. overflow: hidden;
  1307. text-align: right;
  1308. }
  1309. .markdown span.align-right span img {
  1310. margin: 0;
  1311. text-align: right;
  1312. }
  1313. .markdown span.float-left {
  1314. display: block;
  1315. float: left;
  1316. margin-right: 13px;
  1317. overflow: hidden;
  1318. }
  1319. .markdown span.float-left span {
  1320. margin: 13px 0 0;
  1321. }
  1322. .markdown span.float-right {
  1323. display: block;
  1324. float: right;
  1325. margin-left: 13px;
  1326. overflow: hidden;
  1327. }
  1328. .markdown span.float-right > span {
  1329. display: block;
  1330. margin: 13px auto 0;
  1331. overflow: hidden;
  1332. text-align: right;
  1333. }
  1334. .markdown code,
  1335. .markdown tt {
  1336. padding: 0;
  1337. padding-top: 0.2em;
  1338. padding-bottom: 0.2em;
  1339. margin: 0;
  1340. font-size: 85%;
  1341. background-color: rgba(0, 0, 0, 0.04);
  1342. border-radius: 3px;
  1343. }
  1344. .markdown code:before,
  1345. .markdown code:after,
  1346. .markdown tt:before,
  1347. .markdown tt:after {
  1348. letter-spacing: -0.2em;
  1349. content: "\00a0";
  1350. }
  1351. .markdown code br,
  1352. .markdown tt br {
  1353. display: none;
  1354. }
  1355. .markdown del code {
  1356. text-decoration: inherit;
  1357. }
  1358. .markdown pre > code {
  1359. padding: 0;
  1360. margin: 0;
  1361. font-size: 100%;
  1362. word-break: normal;
  1363. white-space: pre;
  1364. background: transparent;
  1365. border: 0;
  1366. }
  1367. .markdown .highlight {
  1368. margin-bottom: 16px;
  1369. }
  1370. .markdown .highlight pre,
  1371. .markdown pre {
  1372. padding: 16px;
  1373. overflow: auto;
  1374. font-size: 85%;
  1375. line-height: 1.45;
  1376. background-color: #f7f7f7;
  1377. border-radius: 3px;
  1378. }
  1379. .markdown .highlight pre {
  1380. margin-bottom: 0;
  1381. word-break: normal;
  1382. }
  1383. .markdown pre {
  1384. word-wrap: normal;
  1385. }
  1386. .markdown pre code,
  1387. .markdown pre tt {
  1388. display: inline;
  1389. max-width: initial;
  1390. padding: 0;
  1391. margin: 0;
  1392. overflow: initial;
  1393. line-height: inherit;
  1394. word-wrap: normal;
  1395. background-color: transparent;
  1396. border: 0;
  1397. }
  1398. .markdown pre code:before,
  1399. .markdown pre code:after,
  1400. .markdown pre tt:before,
  1401. .markdown pre tt:after {
  1402. content: normal;
  1403. }
  1404. .markdown kbd {
  1405. display: inline-block;
  1406. padding: 3px 5px;
  1407. font-size: 11px;
  1408. line-height: 10px;
  1409. color: #555;
  1410. vertical-align: middle;
  1411. background-color: #fcfcfc;
  1412. border: solid 1px #ccc;
  1413. border-bottom-color: #bbb;
  1414. border-radius: 3px;
  1415. box-shadow: inset 0 -1px 0 #bbbbbb;
  1416. }
  1417. .markdown .csv-data td,
  1418. .markdown .csv-data th {
  1419. padding: 5px;
  1420. overflow: hidden;
  1421. font-size: 12px;
  1422. line-height: 1;
  1423. text-align: left;
  1424. white-space: nowrap;
  1425. }
  1426. .markdown .csv-data .blob-num {
  1427. padding: 10px 8px 9px;
  1428. text-align: right;
  1429. background: #fff;
  1430. border: 0;
  1431. }
  1432. .markdown .csv-data tr {
  1433. border-top: 0;
  1434. }
  1435. .markdown .csv-data th {
  1436. font-weight: bold;
  1437. background: #f8f8f8;
  1438. border-top: 0;
  1439. }
  1440. /* Author: jmblog */
  1441. /* Project: https://github.com/jmblog/color-themes-for-google-code-prettify */
  1442. /* GitHub Theme */
  1443. /* Pretty printing styles. Used with prettify.js. */
  1444. /* SPAN elements with the classes below are added by prettyprint. */
  1445. /* plain text */
  1446. .pln {
  1447. color: #333333;
  1448. }
  1449. @media screen {
  1450. /* string content */
  1451. .str {
  1452. color: #dd1144;
  1453. }
  1454. /* a keyword */
  1455. .kwd {
  1456. color: #333333;
  1457. }
  1458. /* a comment */
  1459. .com {
  1460. color: #999988;
  1461. font-style: italic;
  1462. }
  1463. /* a type name */
  1464. .typ {
  1465. color: #445588;
  1466. }
  1467. /* a literal value */
  1468. .lit {
  1469. color: #445588;
  1470. }
  1471. /* punctuation */
  1472. .pun {
  1473. color: #333333;
  1474. }
  1475. /* lisp open bracket */
  1476. .opn {
  1477. color: #333333;
  1478. }
  1479. /* lisp close bracket */
  1480. .clo {
  1481. color: #333333;
  1482. }
  1483. /* a markup tag name */
  1484. .tag {
  1485. color: navy;
  1486. }
  1487. /* a markup attribute name */
  1488. .atn {
  1489. color: teal;
  1490. }
  1491. /* a markup attribute value */
  1492. .atv {
  1493. color: #dd1144;
  1494. }
  1495. /* a declaration */
  1496. .dec {
  1497. color: #333333;
  1498. }
  1499. /* a variable name */
  1500. .var {
  1501. color: teal;
  1502. }
  1503. /* a function name */
  1504. .fun {
  1505. color: #990000;
  1506. }
  1507. }
  1508. /* Use higher contrast and text-weight for printable form. */
  1509. @media print, projection {
  1510. .str {
  1511. color: #006600;
  1512. }
  1513. .kwd {
  1514. color: #006;
  1515. font-weight: bold;
  1516. }
  1517. .com {
  1518. color: #600;
  1519. font-style: italic;
  1520. }
  1521. .typ {
  1522. color: #404;
  1523. font-weight: bold;
  1524. }
  1525. .lit {
  1526. color: #004444;
  1527. }
  1528. .pun,
  1529. .opn,
  1530. .clo {
  1531. color: #444400;
  1532. }
  1533. .tag {
  1534. color: #006;
  1535. font-weight: bold;
  1536. }
  1537. .atn {
  1538. color: #440044;
  1539. }
  1540. .atv {
  1541. color: #006600;
  1542. }
  1543. }
  1544. /* Specify class=linenums on a pre to get line numbering */
  1545. ol.linenums {
  1546. margin-top: 0;
  1547. margin-bottom: 0;
  1548. }
  1549. .home {
  1550. padding-bottom: 80px;
  1551. }
  1552. .home .logo {
  1553. max-width: 220px;
  1554. }
  1555. .home .hero h1,
  1556. .home .hero h2 {
  1557. font-family: 'PT Sans Narrow', sans-serif, 'Microsoft YaHei';
  1558. }
  1559. .home .hero h1 {
  1560. font-size: 5.5em;
  1561. }
  1562. .home .hero h2 {
  1563. font-size: 3em;
  1564. }
  1565. .home .hero .octicon {
  1566. color: #d9453d;
  1567. font-size: 40px;
  1568. width: 50px;
  1569. }
  1570. .home .hero.header {
  1571. font-size: 20px;
  1572. }
  1573. .home p.large {
  1574. font-size: 16px;
  1575. }
  1576. .home .stackable {
  1577. padding-top: 30px;
  1578. }
  1579. .home a {
  1580. color: #d9453d;
  1581. }
  1582. .signup {
  1583. padding-top: 15px;
  1584. padding-bottom: 80px;
  1585. }
  1586. .install {
  1587. padding-top: 45px;
  1588. padding-bottom: 80px;
  1589. }
  1590. .install form label {
  1591. text-align: right;
  1592. width: 320px !important;
  1593. }
  1594. .install form input {
  1595. width: 35% !important;
  1596. }
  1597. .install form .field {
  1598. text-align: left;
  1599. }
  1600. .install form .field .help {
  1601. margin-left: 335px !important;
  1602. }
  1603. .install form .field.optional .title {
  1604. margin-left: 38%;
  1605. }
  1606. .install .ui .checkbox {
  1607. margin-left: 40% !important;
  1608. }
  1609. .install .ui .checkbox label {
  1610. width: auto !important;
  1611. }
  1612. .form .help {
  1613. color: #999999;
  1614. padding-top: .6em;
  1615. padding-bottom: .6em;
  1616. display: inline-block;
  1617. }
  1618. .ui.attached.header {
  1619. background: #f0f0f0;
  1620. }
  1621. .ui.attached.header .right {
  1622. margin-top: -5px;
  1623. }
  1624. .ui.attached.header .right .button {
  1625. padding: 8px 10px;
  1626. font-weight: normal;
  1627. }
  1628. #create-page-form form {
  1629. margin: auto;
  1630. width: 800px!important;
  1631. }
  1632. #create-page-form form .ui.message {
  1633. text-align: center;
  1634. }
  1635. #create-page-form form .header {
  1636. padding-left: 280px !important;
  1637. }
  1638. #create-page-form form .inline.field > label {
  1639. text-align: right;
  1640. width: 250px !important;
  1641. word-wrap: break-word;
  1642. }
  1643. #create-page-form form .help {
  1644. margin-left: 265px !important;
  1645. }
  1646. #create-page-form form .optional .title {
  1647. margin-left: 250px !important;
  1648. }
  1649. #create-page-form form input,
  1650. #create-page-form form textarea {
  1651. width: 50%!important;
  1652. }
  1653. .user.activate form,
  1654. .user.forgot.password form,
  1655. .user.reset.password form,
  1656. .user.signin form,
  1657. .user.signup form {
  1658. margin: auto;
  1659. width: 800px!important;
  1660. }
  1661. .user.activate form .ui.message,
  1662. .user.forgot.password form .ui.message,
  1663. .user.reset.password form .ui.message,
  1664. .user.signin form .ui.message,
  1665. .user.signup form .ui.message {
  1666. text-align: center;
  1667. }
  1668. .user.activate form .header,
  1669. .user.forgot.password form .header,
  1670. .user.reset.password form .header,
  1671. .user.signin form .header,
  1672. .user.signup form .header {
  1673. padding-left: 280px !important;
  1674. }
  1675. .user.activate form .inline.field > label,
  1676. .user.forgot.password form .inline.field > label,
  1677. .user.reset.password form .inline.field > label,
  1678. .user.signin form .inline.field > label,
  1679. .user.signup form .inline.field > label {
  1680. text-align: right;
  1681. width: 250px !important;
  1682. word-wrap: break-word;
  1683. }
  1684. .user.activate form .help,
  1685. .user.forgot.password form .help,
  1686. .user.reset.password form .help,
  1687. .user.signin form .help,
  1688. .user.signup form .help {
  1689. margin-left: 265px !important;
  1690. }
  1691. .user.activate form .optional .title,
  1692. .user.forgot.password form .optional .title,
  1693. .user.reset.password form .optional .title,
  1694. .user.signin form .optional .title,
  1695. .user.signup form .optional .title {
  1696. margin-left: 250px !important;
  1697. }
  1698. .user.activate form input,
  1699. .user.forgot.password form input,
  1700. .user.reset.password form input,
  1701. .user.signin form input,
  1702. .user.signup form input,
  1703. .user.activate form textarea,
  1704. .user.forgot.password form textarea,
  1705. .user.reset.password form textarea,
  1706. .user.signin form textarea,
  1707. .user.signup form textarea {
  1708. width: 50%!important;
  1709. }
  1710. .user.activate form,
  1711. .user.forgot.password form,
  1712. .user.reset.password form,
  1713. .user.signin form,
  1714. .user.signup form {
  1715. width: 700px!important;
  1716. }
  1717. .user.activate form .header,
  1718. .user.forgot.password form .header,
  1719. .user.reset.password form .header,
  1720. .user.signin form .header,
  1721. .user.signup form .header {
  1722. padding-left: 230px !important;
  1723. }
  1724. .user.activate form .inline.field > label,
  1725. .user.forgot.password form .inline.field > label,
  1726. .user.reset.password form .inline.field > label,
  1727. .user.signin form .inline.field > label,
  1728. .user.signup form .inline.field > label {
  1729. width: 200px !important;
  1730. }
  1731. .repository.new.repo form,
  1732. .repository.new.migrate form,
  1733. .repository.new.fork form {
  1734. margin: auto;
  1735. width: 800px!important;
  1736. }
  1737. .repository.new.repo form .ui.message,
  1738. .repository.new.migrate form .ui.message,
  1739. .repository.new.fork form .ui.message {
  1740. text-align: center;
  1741. }
  1742. .repository.new.repo form .header,
  1743. .repository.new.migrate form .header,
  1744. .repository.new.fork form .header {
  1745. padding-left: 280px !important;
  1746. }
  1747. .repository.new.repo form .inline.field > label,
  1748. .repository.new.migrate form .inline.field > label,
  1749. .repository.new.fork form .inline.field > label {
  1750. text-align: right;
  1751. width: 250px !important;
  1752. word-wrap: break-word;
  1753. }
  1754. .repository.new.repo form .help,
  1755. .repository.new.migrate form .help,
  1756. .repository.new.fork form .help {
  1757. margin-left: 265px !important;
  1758. }
  1759. .repository.new.repo form .optional .title,
  1760. .repository.new.migrate form .optional .title,
  1761. .repository.new.fork form .optional .title {
  1762. margin-left: 250px !important;
  1763. }
  1764. .repository.new.repo form input,
  1765. .repository.new.migrate form input,
  1766. .repository.new.fork form input,
  1767. .repository.new.repo form textarea,
  1768. .repository.new.migrate form textarea,
  1769. .repository.new.fork form textarea {
  1770. width: 50%!important;
  1771. }
  1772. .repository.new.repo form .dropdown .dropdown.icon,
  1773. .repository.new.migrate form .dropdown .dropdown.icon,
  1774. .repository.new.fork form .dropdown .dropdown.icon {
  1775. margin-top: -7px !important;
  1776. }
  1777. .repository.new.repo form .dropdown .text,
  1778. .repository.new.migrate form .dropdown .text,
  1779. .repository.new.fork form .dropdown .text {
  1780. margin-right: 0!important;
  1781. }
  1782. .repository.new.repo form .dropdown .text i,
  1783. .repository.new.migrate form .dropdown .text i,
  1784. .repository.new.fork form .dropdown .text i {
  1785. margin-right: 0!important;
  1786. }
  1787. .repository.new.repo .ui.form .selection.dropdown:not(.owner) {
  1788. width: 50%!important;
  1789. }
  1790. .repository.new.repo .ui.form #auto-init {
  1791. margin-left: 265px !important;
  1792. }
  1793. .new.webhook form .help {
  1794. margin-left: 25px;
  1795. }
  1796. .new.webhook .events.fields .column {
  1797. padding-left: 40px;
  1798. }
  1799. .repository {
  1800. padding-top: 15px;
  1801. padding-bottom: 80px;
  1802. }
  1803. .repository .head .column {
  1804. padding-top: 5px!important;
  1805. padding-bottom: 5px!important;
  1806. }
  1807. .repository .head .ui.compact.menu {
  1808. margin-left: 1rem;
  1809. }
  1810. .repository .head .ui.header {
  1811. margin-top: 0;
  1812. }
  1813. .repository .head .mega-octicon {
  1814. width: 30px;
  1815. font-size: 30px;
  1816. }
  1817. .repository .head .ui.huge.breadcrumb {
  1818. font-weight: 300;
  1819. font-size: 1.7rem;
  1820. }
  1821. .repository .head .fork-flag {
  1822. margin-left: 38px;
  1823. display: block;
  1824. font-size: 12px;
  1825. line-height: 10px;
  1826. white-space: nowrap;
  1827. }
  1828. .repository .metas .menu {
  1829. max-height: 300px;
  1830. overflow-x: auto;
  1831. }
  1832. .repository .metas .ui.list .hide {
  1833. display: none!important;
  1834. }
  1835. .repository .metas .ui.list .label.color {
  1836. padding: 0 8px;
  1837. margin-right: 5px;
  1838. }
  1839. .repository .metas .ui.list a {
  1840. padding-top: 5px;
  1841. padding-right: 10px;
  1842. }
  1843. .repository .metas .ui.list a .text {
  1844. color: #444;
  1845. }
  1846. .repository .metas .ui.list a .text:hover {
  1847. color: #000;
  1848. }
  1849. .repository .filter.menu .label.color {
  1850. margin-left: 15px;
  1851. padding: 0 8px;
  1852. }
  1853. .repository .filter.menu .octicon {
  1854. float: left;
  1855. margin-left: -5px;
  1856. margin-right: -7px;
  1857. }
  1858. .repository .filter.menu .menu {
  1859. max-height: 300px;
  1860. overflow-x: auto;
  1861. right: 0!important;
  1862. left: auto!important;
  1863. }
  1864. .repository .filter.menu .dropdown.item {
  1865. margin: 1px;
  1866. padding-right: 0;
  1867. }
  1868. .repository.options #interval {
  1869. width: 100px!important;
  1870. min-width: 100px;
  1871. }
  1872. .repository.options .danger .item {
  1873. padding: 20px 15px;
  1874. }
  1875. .repository.options .danger .ui.divider {
  1876. margin: 0;
  1877. }
  1878. .repository.new.issue .comment.form .comment .avatar {
  1879. width: 3em;
  1880. }
  1881. .repository.new.issue .comment.form .content {
  1882. margin-left: 4em;
  1883. }
  1884. .repository.new.issue .comment.form .content .markdown {
  1885. font-size: 14px;
  1886. }
  1887. .repository.new.issue .comment.form .metas {
  1888. min-width: 220px;
  1889. }
  1890. .repository.new.issue .comment.form .metas .filter.menu {
  1891. max-height: 300px;
  1892. overflow-x: auto;
  1893. }
  1894. .repository.view.issue .title {
  1895. padding-bottom: 0!important;
  1896. }
  1897. .repository.view.issue .title h1 {
  1898. font-weight: 300;
  1899. font-size: 3rem;
  1900. margin-bottom: 5px;
  1901. }
  1902. .repository.view.issue .title h1 .ui.input {
  1903. font-size: 0.5em;
  1904. vertical-align: top;
  1905. width: 50%;
  1906. min-width: 600px;
  1907. }
  1908. .repository.view.issue .title h1 .ui.input input {
  1909. font-size: 1.5em;
  1910. padding: 6px 10px;
  1911. }
  1912. .repository.view.issue .title .index {
  1913. font-weight: 300;
  1914. color: #aaa;
  1915. letter-spacing: -1px;
  1916. }
  1917. .repository.view.issue .title .label {
  1918. margin-right: 10px;
  1919. }
  1920. .repository.view.issue .title .edit-zone {
  1921. margin-top: 10px;
  1922. }
  1923. .repository.view.issue .pull-desc code {
  1924. color: #0166E6;
  1925. }
  1926. .repository.view.issue .pull.tabular.menu {
  1927. margin-bottom: 10px;
  1928. }
  1929. .repository.view.issue .pull.tabular.menu .octicon {
  1930. margin-right: 5px;
  1931. }
  1932. .repository.view.issue .pull.tab.segment {
  1933. border: none;
  1934. padding: 0;
  1935. padding-top: 10px;
  1936. box-shadow: none;
  1937. background-color: inherit;
  1938. }
  1939. .repository.view.issue .pull .merge.box .avatar {
  1940. margin-left: 10px;
  1941. margin-top: 10px;
  1942. }
  1943. .repository.view.issue .comment-list:before {
  1944. display: block;
  1945. content: "";
  1946. position: absolute;
  1947. margin-top: 12px;
  1948. margin-bottom: 14px;
  1949. top: 0;
  1950. bottom: 0;
  1951. left: 96px;
  1952. width: 2px;
  1953. background-color: #f3f3f3;
  1954. z-index: -1;
  1955. }
  1956. .repository.view.issue .comment-list .comment .avatar {
  1957. width: 3em;
  1958. }
  1959. .repository.view.issue .comment-list .comment .tag {
  1960. color: #767676;
  1961. margin-top: 3px;
  1962. padding: 2px 5px;
  1963. font-size: 12px;
  1964. border: 1px solid rgba(0, 0, 0, 0.1);
  1965. border-radius: 3px;
  1966. }
  1967. .repository.view.issue .comment-list .comment .actions .item {
  1968. float: left;
  1969. }
  1970. .repository.view.issue .comment-list .comment .actions a.item {
  1971. margin-top: 6px;
  1972. margin-left: 10px;
  1973. }
  1974. .repository.view.issue .comment-list .comment .content {
  1975. margin-left: 4em;
  1976. }
  1977. .repository.view.issue .comment-list .comment .content .header {
  1978. font-weight: normal;
  1979. padding: auto 15px;
  1980. color: #767676;
  1981. background-color: #f7f7f7;
  1982. border-bottom: 1px solid #eee;
  1983. border-top-left-radius: 3px;
  1984. border-top-right-radius: 3px;
  1985. }
  1986. .repository.view.issue .comment-list .comment .content .header .text {
  1987. max-width: 78%;
  1988. padding-top: 10px;
  1989. padding-bottom: 10px;
  1990. }
  1991. .repository.view.issue .comment-list .comment .content .markdown {
  1992. font-size: 14px;
  1993. }
  1994. .repository.view.issue .comment-list .comment .content .no-content {
  1995. color: #767676;
  1996. font-style: italic;
  1997. }
  1998. .repository.view.issue .comment-list .comment .content > .bottom.segment {
  1999. background: #f3f4f5;
  2000. }
  2001. .repository.view.issue .comment-list .comment .content > .bottom.segment .ui.image {
  2002. max-height: 150px;
  2003. }
  2004. .repository.view.issue .comment-list .comment .ui.form .field:first-child {
  2005. clear: none;
  2006. }
  2007. .repository.view.issue .comment-list .comment .ui.form .tab.segment {
  2008. border: none;
  2009. padding: 0;
  2010. padding-top: 10px;
  2011. }
  2012. .repository.view.issue .comment-list .comment .ui.form textarea {
  2013. height: 200px;
  2014. }
  2015. .repository.view.issue .comment-list .comment .edit.buttons {
  2016. margin-top: 10px;
  2017. }
  2018. .repository.view.issue .comment-list .event {
  2019. position: relative;
  2020. margin: 15px 0 15px 79px;
  2021. padding-left: 25px;
  2022. }
  2023. .repository.view.issue .comment-list .event .octicon {
  2024. width: 30px;
  2025. float: left;
  2026. margin-left: -36px;
  2027. text-align: center;
  2028. }
  2029. .repository.view.issue .comment-list .event .octicon.octicon-circle-slash {
  2030. margin-top: 5px;
  2031. font-size: 20px;
  2032. color: #bd2c00;
  2033. }
  2034. .repository.view.issue .comment-list .event .octicon.octicon-primitive-dot {
  2035. font-size: 30px;
  2036. color: #6cc644;
  2037. }
  2038. .repository.view.issue .comment-list .event .octicon.octicon-bookmark {
  2039. margin-top: 3px;
  2040. font-size: 25px;
  2041. }
  2042. .repository.view.issue .comment-list .event .detail {
  2043. font-size: 0.9rem;
  2044. margin-top: 5px;
  2045. margin-left: 35px;
  2046. }
  2047. .repository.view.issue .comment-list .event .detail .octicon.octicon-git-commit {
  2048. margin-top: 2px;
  2049. }
  2050. .repository.view.issue .ui.segment.metas {
  2051. margin-top: -3px;
  2052. }
  2053. .repository .comment.form .ui.comments {
  2054. margin-top: -12px;
  2055. max-width: 100%;
  2056. }
  2057. .repository .comment.form .content .field:first-child {
  2058. clear: none;
  2059. }
  2060. .repository .comment.form .content .tab.segment {
  2061. border: none;
  2062. padding: 0;
  2063. padding-top: 10px;
  2064. }
  2065. .repository .comment.form .content textarea {
  2066. height: 200px;
  2067. }
  2068. .repository .label.list {
  2069. list-style: none;
  2070. padding-top: 15px;
  2071. }
  2072. .repository .label.list .item {
  2073. padding-top: 10px;
  2074. padding-bottom: 10px;
  2075. border-bottom: 1px dashed #AAA;
  2076. }
  2077. .repository .label.list .item a {
  2078. font-size: 15px;
  2079. padding-top: 5px;
  2080. padding-right: 10px;
  2081. color: #666;
  2082. }
  2083. .repository .label.list .item a:hover {
  2084. color: #000;
  2085. }
  2086. .repository .label.list .item a.open-issues {
  2087. margin-right: 30px;
  2088. }
  2089. .repository .milestone.list {
  2090. list-style: none;
  2091. padding-top: 15px;
  2092. }
  2093. .repository .milestone.list > .item {
  2094. padding-top: 10px;
  2095. padding-bottom: 10px;
  2096. border-bottom: 1px dashed #AAA;
  2097. }
  2098. .repository .milestone.list > .item > a {
  2099. padding-top: 5px;
  2100. padding-right: 10px;
  2101. color: #000;
  2102. }
  2103. .repository .milestone.list > .item > a:hover {
  2104. color: #4078c0;
  2105. }
  2106. .repository .milestone.list > .item .ui.progress {
  2107. width: 40%;
  2108. padding: 0;
  2109. border: 0;
  2110. margin: 0;
  2111. }
  2112. .repository .milestone.list > .item .ui.progress .bar {
  2113. height: 20px;
  2114. }
  2115. .repository .milestone.list > .item .meta {
  2116. color: #999;
  2117. padding-top: 5px;
  2118. }
  2119. .repository .milestone.list > .item .meta .issue-stats .octicon {
  2120. padding-left: 5px;
  2121. }
  2122. .repository .milestone.list > .item .meta .overdue {
  2123. color: red;
  2124. }
  2125. .repository .milestone.list > .item .operate {
  2126. margin-top: -15px;
  2127. }
  2128. .repository .milestone.list > .item .operate > a {
  2129. font-size: 15px;
  2130. padding-top: 5px;
  2131. padding-right: 10px;
  2132. color: #666;
  2133. }
  2134. .repository .milestone.list > .item .operate > a:hover {
  2135. color: #000;
  2136. }
  2137. .repository .milestone.list > .item .content {
  2138. padding-top: 10px;
  2139. }
  2140. .repository.new.milestone textarea {
  2141. height: 200px;
  2142. }
  2143. .repository.new.milestone #deadline {
  2144. width: 150px;
  2145. }
  2146. .repository.compare.pull .choose.branch .octicon {
  2147. padding-right: 10px;
  2148. }
  2149. .repository .filter.dropdown .menu {
  2150. margin-top: 1px!important;
  2151. }
  2152. .repository.commits .header .ui.right .search input {
  2153. font-weight: normal;
  2154. padding: 5px 10px;
  2155. }
  2156. .repository.commits .header .ui.right .button {
  2157. float: right;
  2158. margin-left: 5px;
  2159. margin-top: 1px;
  2160. }
  2161. .repository .commits.table {
  2162. font-size: 13px;
  2163. }
  2164. .repository .commits.table th:first-child,
  2165. .repository .commits.table td:first-child {
  2166. padding-left: 15px;
  2167. }
  2168. .repository .commits.table td {
  2169. line-height: 15px;
  2170. }
  2171. .repository .commits.table .author {
  2172. min-width: 180px;
  2173. }
  2174. .repository .commits.table .message span {
  2175. max-width: 500px;
  2176. }
  2177. .repository .commits.table .date {
  2178. width: 120px;
  2179. }
  2180. .repository .sha.label {
  2181. font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace;
  2182. font-size: 14px;
  2183. padding: 6px 10px 4px 10px;
  2184. font-weight: normal;
  2185. }
  2186. .repository .diff-detail-box {
  2187. margin: 15px 0;
  2188. line-height: 30px;
  2189. }
  2190. .repository .diff-detail-box ol {
  2191. clear: both;
  2192. padding-left: 0;
  2193. margin-top: 5px;
  2194. margin-bottom: 28px;
  2195. }
  2196. .repository .diff-detail-box ol li {
  2197. list-style: none;
  2198. padding-bottom: 4px;
  2199. margin-bottom: 4px;
  2200. border-bottom: 1px dashed #DDD;
  2201. padding-left: 6px;
  2202. }
  2203. .repository .diff-detail-box span.status {
  2204. display: inline-block;
  2205. width: 12px;
  2206. height: 12px;
  2207. margin-right: 8px;
  2208. vertical-align: middle;
  2209. }
  2210. .repository .diff-detail-box span.status.modify {
  2211. background-color: #f0db88;
  2212. }
  2213. .repository .diff-detail-box span.status.add {
  2214. background-color: #b4e2b4;
  2215. }
  2216. .repository .diff-detail-box span.status.del {
  2217. background-color: #e9aeae;
  2218. }
  2219. .repository .diff-detail-box span.status.rename {
  2220. background-color: #dad8ff;
  2221. }
  2222. .repository .diff-box .count {
  2223. margin-right: 12px;
  2224. }
  2225. .repository .diff-box .count .bar {
  2226. background-color: #e75316;
  2227. height: 12px;
  2228. width: 40px;
  2229. display: inline-block;
  2230. margin: 2px 4px 0 4px;
  2231. vertical-align: text-top;
  2232. }
  2233. .repository .diff-box .count .bar .add {
  2234. background-color: #77c64a;
  2235. height: 12px;
  2236. }
  2237. .repository .diff-box .file {
  2238. color: #888;
  2239. }
  2240. .repository .diff-file-box .header {
  2241. border-bottom: 1px solid #d4d4d5!important;
  2242. }
  2243. .repository .diff-file-box .file-body.file-code .lines-num {
  2244. text-align: right;
  2245. color: #999;
  2246. background: #fafafa;
  2247. width: 1%;
  2248. }
  2249. .repository .diff-file-box .file-body.file-code .lines-num-old {
  2250. border-right: 1px solid #DDD;
  2251. }
  2252. .repository .diff-file-box .code-diff {
  2253. font-size: 13px;
  2254. }
  2255. .repository .diff-file-box .code-diff td {
  2256. padding: 0;
  2257. border-top: none;
  2258. }
  2259. .repository .diff-file-box .code-diff pre {
  2260. margin: 0;
  2261. }
  2262. .repository .diff-file-box .code-diff .lines-num {
  2263. border-right: 1px solid #d4d4d5;
  2264. padding: 0 5px;
  2265. }
  2266. .repository .diff-file-box .code-diff tbody tr.tag-code td,
  2267. .repository .diff-file-box .code-diff tbody tr.tag-code pre {
  2268. background-color: #E0E0E0 !important;
  2269. border-color: #ADADAD!important;
  2270. }
  2271. .repository .diff-file-box .code-diff tbody tr.del-code td,
  2272. .repository .diff-file-box .code-diff tbody tr.del-code pre {
  2273. background-color: #ffe2dd !important;
  2274. border-color: #e9aeae !important;
  2275. }
  2276. .repository .diff-file-box .code-diff tbody tr.add-code td,
  2277. .repository .diff-file-box .code-diff tbody tr.add-code pre {
  2278. background-color: #d1ffd6 !important;
  2279. border-color: #b4e2b4 !important;
  2280. }
  2281. .repository .diff-file-box .code-diff tbody tr:hover td {
  2282. background-color: #FFF8D2 !important;
  2283. border-color: #F0DB88 !important;
  2284. }
  2285. .repository .diff-file-box .code-diff tbody tr:hover pre {
  2286. background-color: transparent !important;
  2287. }
  2288. .repository .code-view {
  2289. overflow: auto;
  2290. overflow-x: auto;
  2291. overflow-y: hidden;
  2292. }
  2293. .repository.quickstart .guide .item {
  2294. padding: 1em;
  2295. }
  2296. .repository.quickstart .guide .item small {
  2297. font-weight: normal;
  2298. }
  2299. .repository.quickstart .guide .clone.button:first-child {
  2300. border-radius: .28571429rem 0 0 .28571429rem;
  2301. }
  2302. .repository.quickstart .guide #repo-clone-url {
  2303. border-radius: 0;
  2304. width: 100%;
  2305. padding: 5px 10px;
  2306. font-size: 1.2em;
  2307. }
  2308. .issue.list {
  2309. list-style: none;
  2310. padding-top: 15px;
  2311. }
  2312. .issue.list > .item {
  2313. padding-top: 15px;
  2314. padding-bottom: 10px;
  2315. border-bottom: 1px dashed #AAA;
  2316. }
  2317. .issue.list > .item .title {
  2318. color: #444;
  2319. font-size: 15px;
  2320. font-weight: bold;
  2321. margin: 0 6px;
  2322. }
  2323. .issue.list > .item .title:hover {
  2324. color: #000;
  2325. }
  2326. .issue.list > .item .comment {
  2327. padding-right: 10px;
  2328. color: #666;
  2329. }
  2330. .issue.list > .item .desc {
  2331. padding-top: 5px;
  2332. color: #999;
  2333. }
  2334. .issue.list > .item .desc a.milestone {
  2335. padding-left: 5px;
  2336. color: #999!important;
  2337. }
  2338. .issue.list > .item .desc a.milestone:hover {
  2339. color: #000!important;
  2340. }
  2341. .issue.list > .item .desc .assignee {
  2342. margin-top: -5px;
  2343. margin-right: 5px;
  2344. }
  2345. .page.buttons {
  2346. padding-top: 15px;
  2347. }
  2348. .ui.comments .dropzone {
  2349. width: 100%;
  2350. margin-bottom: 10px;
  2351. border: 2px dashed #0087F7;
  2352. box-shadow: none!important;
  2353. }
  2354. .ui.comments .dropzone .dz-error-message {
  2355. top: 140px;
  2356. }
  2357. .settings .content {
  2358. margin-top: 2px;
  2359. }
  2360. .settings .content .header,
  2361. .settings .content .segment {
  2362. box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  2363. }
  2364. .settings .key.list .item:not(:first-child) {
  2365. border-top: 1px solid #eaeaea;
  2366. }
  2367. .settings .key.list .ssh-key-state-indicator {
  2368. float: left;
  2369. color: gray;
  2370. padding-left: 10px;
  2371. padding-top: 10px;
  2372. }
  2373. .settings .key.list .ssh-key-state-indicator.active {
  2374. color: #6cc644;
  2375. }
  2376. .settings .key.list .meta {
  2377. padding-top: 5px;
  2378. }
  2379. .settings .key.list .print {
  2380. color: #767676;
  2381. }
  2382. .settings .key.list .activity {
  2383. color: #666;
  2384. }
  2385. .settings .hook.list > .item:not(:first-child) {
  2386. border-top: 1px solid #eaeaea;
  2387. }
  2388. .settings .hook.list .item {
  2389. padding: 10px 20px;
  2390. }
  2391. .settings .hook.list .item .octicon,
  2392. .settings .hook.list .item .fa {
  2393. width: 20px;
  2394. text-align: center;
  2395. }
  2396. .settings .hook.history.list .item {
  2397. padding-left: 13px;
  2398. }
  2399. .settings .hook.history.list .item .meta .ui.right {
  2400. margin-top: 5px;
  2401. }
  2402. .settings .hook.history.list .item .meta .ui.right .time {
  2403. font-size: 12px;
  2404. }
  2405. .settings .hook.history.list .item .info {
  2406. margin-top: 10px;
  2407. }
  2408. .settings .hook.history.list .item .info .tabular.menu .item {
  2409. font-weight: 500;
  2410. }
  2411. .settings .hook.history.list .item .info .tab.segment {
  2412. border: none;
  2413. padding: 0;
  2414. padding-top: 10px;
  2415. box-shadow: none;
  2416. }
  2417. .settings .hook.history.list .item .info .tab.segment > * {
  2418. color: #666;
  2419. }
  2420. .settings .hook.history.list .item .info .tab.segment pre {
  2421. word-wrap: break-word;
  2422. }
  2423. .settings .hook.history.list .item .info .tab.segment pre .hljs {
  2424. padding: 0;
  2425. background-color: inherit;
  2426. }
  2427. .ui.vertical.menu .header.item {
  2428. font-size: 1.1em;
  2429. background: #f0f0f0;
  2430. }
  2431. .edit-label.modal .form .column,
  2432. .new-label.segment .form .column {
  2433. padding-right: 0;
  2434. }
  2435. .edit-label.modal .form .buttons,
  2436. .new-label.segment .form .buttons {
  2437. margin-left: auto;
  2438. padding-top: 15px;
  2439. }
  2440. .edit-label.modal .form .color.picker.column,
  2441. .new-label.segment .form .color.picker.column {
  2442. width: auto;
  2443. }
  2444. .edit-label.modal .form .color.picker.column .color-picker,
  2445. .new-label.segment .form .color.picker.column .color-picker {
  2446. height: 35px;
  2447. width: auto;
  2448. padding-left: 30px;
  2449. }
  2450. .edit-label.modal .form .minicolors-swatch.minicolors-sprite,
  2451. .new-label.segment .form .minicolors-swatch.minicolors-sprite {
  2452. top: 10px;
  2453. left: 10px;
  2454. width: 15px;
  2455. height: 15px;
  2456. }
  2457. .edit-label.modal .form .precolors,
  2458. .new-label.segment .form .precolors {
  2459. padding-left: 0;
  2460. padding-right: 0;
  2461. margin: 3px 10px auto 10px;
  2462. width: 120px;
  2463. }
  2464. .edit-label.modal .form .precolors .color,
  2465. .new-label.segment .form .precolors .color {
  2466. float: left;
  2467. width: 15px;
  2468. height: 15px;
  2469. }
  2470. #transfer-repo-modal .ui.message,
  2471. #delete-repo-modal .ui.message {
  2472. width: 100%!important;
  2473. }
  2474. .organization {
  2475. padding-top: 15px;
  2476. padding-bottom: 80px;
  2477. }
  2478. .organization .head .ui.header .text {
  2479. vertical-align: middle;
  2480. font-size: 1.6rem;
  2481. margin-left: 15px;
  2482. }
  2483. .organization .head .ui.header .ui.right {
  2484. margin-top: 5px;
  2485. }
  2486. .organization.new.org form {
  2487. margin: auto;
  2488. width: 800px!important;
  2489. }
  2490. .organization.new.org form .ui.message {
  2491. text-align: center;
  2492. }
  2493. .organization.new.org form .header {
  2494. padding-left: 280px !important;
  2495. }
  2496. .organization.new.org form .inline.field > label {
  2497. text-align: right;
  2498. width: 250px !important;
  2499. word-wrap: break-word;
  2500. }
  2501. .organization.new.org form .help {
  2502. margin-left: 265px !important;
  2503. }
  2504. .organization.new.org form .optional .title {
  2505. margin-left: 250px !important;
  2506. }
  2507. .organization.new.org form input,
  2508. .organization.new.org form textarea {
  2509. width: 50%!important;
  2510. }
  2511. .organization.options input {
  2512. width: 50%!important;
  2513. min-width: 300px;
  2514. }
  2515. .user {
  2516. padding-top: 15px;
  2517. padding-bottom: 80px;
  2518. }
  2519. .user.settings .list .item.ui.grid {
  2520. margin-top: 15px;
  2521. }
  2522. .user.settings .email.list .item:not(:first-child) {
  2523. border-top: 1px solid #eaeaea;
  2524. height: 50px;
  2525. }
  2526. .user.settings .email.list .item:not(:first-child) .button {
  2527. margin-top: -10px;
  2528. }
  2529. .dashboard {
  2530. padding-top: 15px;
  2531. padding-bottom: 80px;
  2532. }
  2533. .dashboard.issues .context.user.menu {
  2534. z-index: 101;
  2535. min-width: 200px;
  2536. }
  2537. .dashboard.issues .context.user.menu .ui.header {
  2538. font-size: 1rem;
  2539. text-transform: none;
  2540. }
  2541. .dashboard.issues .filter.menu .item {
  2542. text-align: left;
  2543. }
  2544. .dashboard.issues .filter.menu .item .text {
  2545. height: 16px;
  2546. vertical-align: middle;
  2547. }
  2548. .dashboard.issues .filter.menu .item .floating.label {
  2549. top: 7px;
  2550. left: 90%;
  2551. width: 15%;
  2552. }
  2553. .dashboard.issues .filter.menu .item.active {
  2554. background-color: #4183c4;
  2555. color: #FFF;
  2556. }
  2557. .dashboard.issues .filter.menu .item .text {
  2558. width: 85%;
  2559. }
  2560. .dashboard.issues .ui.right .head.menu {
  2561. margin-top: -5px;
  2562. }
  2563. .dashboard.issues .ui.right .head.menu .item.active {
  2564. color: #d9453d;
  2565. }
  2566. .dashboard.issues .head.menu .octicon {
  2567. margin-right: 5px;
  2568. }
  2569. .admin {
  2570. padding-top: 15px;
  2571. padding-bottom: 80px;
  2572. }
  2573. .admin .table.segment {
  2574. padding: 0;
  2575. font-size: 13px;
  2576. }
  2577. .admin .table.segment th {
  2578. padding-top: 5px;
  2579. padding-bottom: 5px;
  2580. }
  2581. .admin .table.segment th:first-child,
  2582. .admin .table.segment td:first-child {
  2583. padding-left: 15px;
  2584. }
  2585. .admin .ui.header,
  2586. .admin .ui.segment {
  2587. box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  2588. }
  2589. .admin.user .email {
  2590. max-width: 200px;
  2591. }
  2592. .explore {
  2593. padding-top: 15px;
  2594. padding-bottom: 80px;
  2595. }
  2596. .explore.repositories .ui.repository.list .item {
  2597. border-top: 1px solid #eee;
  2598. padding-top: 25px;
  2599. padding-bottom: 25px;
  2600. }
  2601. .explore.repositories .ui.repository.list .item .ui.header {
  2602. font-size: 1.5rem;
  2603. padding-bottom: 10px;
  2604. }
  2605. .explore.repositories .ui.repository.list .item .ui.header .metas {
  2606. color: #888;
  2607. font-size: 13px;
  2608. font-weight: normal;
  2609. }
  2610. .explore.repositories .ui.repository.list .item .ui.header .metas span:not(:last-child) {
  2611. margin-right: 5px;
  2612. }
  2613. .explore.repositories .ui.repository.list .item .time {
  2614. font-size: 12px;
  2615. color: #808080;
  2616. }