gogs.css 61 KB

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