gogs.css 63 KB

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