gogs.css 61 KB

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