gogs.css 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721
  1. .emoji {
  2. width: 1.5em;
  3. height: 1.5em;
  4. display: inline-block;
  5. background-size: contain;
  6. }
  7. .ui.header,
  8. .ui.menu,
  9. .ui.button,
  10. h1,
  11. h2,
  12. h3,
  13. h4,
  14. h5,
  15. input {
  16. font-family: "Helvetica Neue", "Meiryo Ui", "Microsoft YaHei", Arial, Helvetica, sans-serif !important;
  17. }
  18. body {
  19. font-family: "Helvetica Neue", "Meiryo Ui", "Microsoft YaHei", Arial, Helvetica, sans-serif !important;
  20. background-color: #fff;
  21. overflow-y: scroll;
  22. }
  23. img {
  24. border-radius: 3px;
  25. }
  26. pre,
  27. code {
  28. font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  29. }
  30. pre.raw,
  31. code.raw {
  32. padding: 7px 12px;
  33. margin: 10px 0;
  34. background-color: #f8f8f8;
  35. border: 1px solid #ddd;
  36. border-radius: 3px;
  37. font-size: 13px;
  38. line-height: 1.5;
  39. overflow: auto;
  40. }
  41. pre.wrap,
  42. code.wrap {
  43. white-space: pre-wrap;
  44. /* CSS 3 */
  45. word-break: break-word;
  46. }
  47. .dont-break-out {
  48. /* These are technically the same, but use both */
  49. overflow-wrap: break-word;
  50. word-wrap: break-word;
  51. -ms-word-break: break-all;
  52. /* This is the dangerous one in WebKit, as it breaks things wherever */
  53. word-break: break-all;
  54. /* Instead use this non-standard one: */
  55. word-break: break-word;
  56. /* Adds a hyphen where the word breaks, if supported (No Blink) */
  57. -ms-hyphens: auto;
  58. -moz-hyphens: auto;
  59. -webkit-hyphens: auto;
  60. hyphens: auto;
  61. }
  62. .full.height {
  63. padding: 0;
  64. margin: 0 0 -80px 0;
  65. min-height: 100%;
  66. }
  67. .following.bar {
  68. z-index: 900;
  69. left: 0;
  70. width: 100%;
  71. }
  72. .following.bar.light {
  73. background-color: white;
  74. border-bottom: 1px solid #DDDDDD;
  75. box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  76. }
  77. .following.bar .column .menu {
  78. margin-top: 0;
  79. }
  80. .following.bar .top.menu a.item.brand {
  81. padding-left: 0;
  82. }
  83. .following.bar .brand .ui.mini.image {
  84. width: 30px;
  85. }
  86. .following.bar .top.menu a.item:hover,
  87. .following.bar .top.menu .dropdown.item:hover,
  88. .following.bar .top.menu .dropdown.item.active {
  89. background-color: transparent;
  90. }
  91. .following.bar .top.menu a.item:hover {
  92. color: rgba(0, 0, 0, 0.45);
  93. }
  94. .following.bar .top.menu .menu {
  95. z-index: 900;
  96. }
  97. .following.bar .icon,
  98. .following.bar .octicon {
  99. margin-right: 5px !important;
  100. }
  101. .following.bar .head.link.item {
  102. padding-right: 0 !important;
  103. }
  104. .following.bar .avatar > .ui.image {
  105. margin-right: 0;
  106. }
  107. .following.bar .searchbox {
  108. background-color: #f4f4f4 !important;
  109. }
  110. .following.bar .searchbox:focus {
  111. background-color: #e9e9e9 !important;
  112. }
  113. .following.bar .text .octicon {
  114. width: 16px;
  115. text-align: center;
  116. }
  117. .following.bar .right.menu .menu {
  118. left: auto;
  119. right: 0;
  120. }
  121. .following.bar .right.menu .dropdown .menu {
  122. margin-top: 0;
  123. }
  124. .ui.left {
  125. float: left;
  126. }
  127. .ui.right {
  128. float: right;
  129. }
  130. .ui.container.fluid.padded {
  131. padding: 0 10px 0 10px;
  132. }
  133. .ui.form .ui.button {
  134. font-weight: normal;
  135. }
  136. .ui .text.red {
  137. color: #d95c5c !important;
  138. }
  139. .ui .text.red a {
  140. color: #d95c5c !important;
  141. }
  142. .ui .text.red a:hover {
  143. color: #E67777 !important;
  144. }
  145. .ui .text.blue {
  146. color: #428bca !important;
  147. }
  148. .ui .text.blue a {
  149. color: #15c !important;
  150. }
  151. .ui .text.blue a:hover {
  152. color: #428bca !important;
  153. }
  154. .ui .text.black {
  155. color: #444;
  156. }
  157. .ui .text.black:hover {
  158. color: #000;
  159. }
  160. .ui .text.grey {
  161. color: #767676 !important;
  162. }
  163. .ui .text.grey a {
  164. color: #444 !important;
  165. }
  166. .ui .text.grey a:hover {
  167. color: #000 !important;
  168. }
  169. .ui .text.light.grey {
  170. color: #888 !important;
  171. }
  172. .ui .text.green {
  173. color: #6cc644 !important;
  174. }
  175. .ui .text.purple {
  176. color: #6e5494 !important;
  177. }
  178. .ui .text.yellow {
  179. color: #FBBD08 !important;
  180. }
  181. .ui .text.gold {
  182. color: #a1882b !important;
  183. }
  184. .ui .text.left {
  185. text-align: left !important;
  186. }
  187. .ui .text.right {
  188. text-align: right !important;
  189. }
  190. .ui .text.small {
  191. font-size: 0.75em;
  192. }
  193. .ui .text.normal {
  194. font-weight: normal;
  195. }
  196. .ui .text.bold {
  197. font-weight: bold;
  198. }
  199. .ui .text.italic {
  200. font-style: italic;
  201. }
  202. .ui .text.truncate {
  203. overflow: hidden;
  204. text-overflow: ellipsis;
  205. white-space: nowrap;
  206. display: inline-block;
  207. }
  208. .ui .text.thin {
  209. font-weight: normal;
  210. }
  211. .ui .text.middle {
  212. vertical-align: middle;
  213. }
  214. .ui .message {
  215. text-align: center;
  216. }
  217. .ui .header > i + .content {
  218. padding-left: 0.75rem;
  219. vertical-align: middle;
  220. }
  221. .ui .warning.header {
  222. background-color: #F9EDBE !important;
  223. border-color: #F0C36D;
  224. }
  225. .ui .warning.segment {
  226. border-color: #F0C36D;
  227. }
  228. .ui .info.segment {
  229. border: 1px solid #c5d5dd;
  230. }
  231. .ui .info.segment.top {
  232. background-color: #e6f1f6 !important;
  233. }
  234. .ui .info.segment.top h3,
  235. .ui .info.segment.top h4 {
  236. margin-top: 0;
  237. }
  238. .ui .info.segment.top h3:last-child {
  239. margin-top: 4px;
  240. }
  241. .ui .info.segment.top > :last-child {
  242. margin-bottom: 0;
  243. }
  244. .ui .normal.header {
  245. font-weight: normal;
  246. }
  247. .ui .avatar.image {
  248. border-radius: 3px;
  249. }
  250. .ui .form .fake {
  251. display: none !important;
  252. }
  253. .ui .form .sub.field {
  254. margin-left: 25px;
  255. }
  256. .ui .sha.label {
  257. font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace;
  258. font-size: 13px;
  259. padding: 6px 10px 4px 10px;
  260. font-weight: normal;
  261. margin: 0 6px;
  262. }
  263. .ui.status.buttons .octicon {
  264. margin-right: 4px;
  265. }
  266. .ui.inline.delete-button {
  267. padding: 8px 15px;
  268. font-weight: normal;
  269. }
  270. .overflow.menu .items {
  271. max-height: 300px;
  272. overflow-y: auto;
  273. }
  274. .overflow.menu .items .item {
  275. position: relative;
  276. cursor: pointer;
  277. display: block;
  278. border: none;
  279. height: auto;
  280. border-top: none;
  281. line-height: 1em;
  282. color: rgba(0, 0, 0, 0.8);
  283. padding: .71428571em 1.14285714em !important;
  284. font-size: 1rem;
  285. text-transform: none;
  286. font-weight: 400;
  287. box-shadow: none;
  288. -webkit-touch-callout: none;
  289. }
  290. .overflow.menu .items .item.active {
  291. font-weight: 700;
  292. }
  293. .overflow.menu .items .item:hover {
  294. background: rgba(0, 0, 0, 0.05);
  295. color: rgba(0, 0, 0, 0.8);
  296. z-index: 13;
  297. }
  298. .scrolling.menu .item.selected {
  299. font-weight: 700 !important;
  300. }
  301. footer {
  302. margin-top: 54px !important;
  303. height: 40px;
  304. background-color: white;
  305. border-top: 1px solid #d6d6d6;
  306. clear: both;
  307. width: 100%;
  308. color: #888888;
  309. }
  310. footer .container {
  311. padding-top: 10px;
  312. }
  313. footer .container .fa {
  314. width: 16px;
  315. text-align: center;
  316. color: #428bca;
  317. }
  318. footer .container .links > * {
  319. border-left: 1px solid #d6d6d6;
  320. padding-left: 8px;
  321. margin-left: 5px;
  322. }
  323. footer .container .links > *:first-child {
  324. border-left: none;
  325. }
  326. footer .ui.language .menu {
  327. max-height: 500px;
  328. overflow-y: auto;
  329. margin-bottom: 7px;
  330. }
  331. .hide {
  332. display: none;
  333. }
  334. .center {
  335. text-align: center;
  336. }
  337. .img-1 {
  338. width: 2px !important;
  339. height: 2px !important;
  340. }
  341. .img-2 {
  342. width: 4px !important;
  343. height: 4px !important;
  344. }
  345. .img-3 {
  346. width: 6px !important;
  347. height: 6px !important;
  348. }
  349. .img-4 {
  350. width: 8px !important;
  351. height: 8px !important;
  352. }
  353. .img-5 {
  354. width: 10px !important;
  355. height: 10px !important;
  356. }
  357. .img-6 {
  358. width: 12px !important;
  359. height: 12px !important;
  360. }
  361. .img-7 {
  362. width: 14px !important;
  363. height: 14px !important;
  364. }
  365. .img-8 {
  366. width: 16px !important;
  367. height: 16px !important;
  368. }
  369. .img-9 {
  370. width: 18px !important;
  371. height: 18px !important;
  372. }
  373. .img-10 {
  374. width: 20px !important;
  375. height: 20px !important;
  376. }
  377. .img-11 {
  378. width: 22px !important;
  379. height: 22px !important;
  380. }
  381. .img-12 {
  382. width: 24px !important;
  383. height: 24px !important;
  384. }
  385. .img-13 {
  386. width: 26px !important;
  387. height: 26px !important;
  388. }
  389. .img-14 {
  390. width: 28px !important;
  391. height: 28px !important;
  392. }
  393. .img-15 {
  394. width: 30px !important;
  395. height: 30px !important;
  396. }
  397. .img-16 {
  398. width: 32px !important;
  399. height: 32px !important;
  400. }
  401. .sr-only {
  402. position: absolute;
  403. width: 1px;
  404. height: 1px;
  405. padding: 0;
  406. margin: -1px;
  407. overflow: hidden;
  408. clip: rect(0, 0, 0, 0);
  409. border: 0;
  410. }
  411. .sr-only-focusable:active,
  412. .sr-only-focusable:focus {
  413. position: static;
  414. width: auto;
  415. height: auto;
  416. margin: 0;
  417. overflow: visible;
  418. clip: auto;
  419. }
  420. @media only screen and (max-width: 991px) and (min-width: 768px) {
  421. .ui.container {
  422. width: 95%;
  423. }
  424. }
  425. /* Overrides some styles of the Highlight.js plugin */
  426. .hljs {
  427. background: inherit !important;
  428. padding: 0 !important;
  429. }
  430. .markdown:not(code) {
  431. overflow: hidden;
  432. font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
  433. font-size: 16px;
  434. line-height: 1.6 !important;
  435. word-wrap: break-word;
  436. }
  437. .markdown:not(code).file-view {
  438. padding: 2em 2em 2em !important;
  439. }
  440. .markdown:not(code) > *:first-child {
  441. margin-top: 0 !important;
  442. }
  443. .markdown:not(code) > *:last-child {
  444. margin-bottom: 0 !important;
  445. }
  446. .markdown:not(code) a:not([href]) {
  447. color: inherit;
  448. text-decoration: none;
  449. }
  450. .markdown:not(code) .absent {
  451. color: #c00;
  452. }
  453. .markdown:not(code) .anchor {
  454. position: absolute;
  455. top: 0;
  456. left: 0;
  457. display: block;
  458. padding-right: 6px;
  459. padding-left: 30px;
  460. margin-left: -30px;
  461. }
  462. .markdown:not(code) .anchor:focus {
  463. outline: none;
  464. }
  465. .markdown:not(code) h1,
  466. .markdown:not(code) h2,
  467. .markdown:not(code) h3,
  468. .markdown:not(code) h4,
  469. .markdown:not(code) h5,
  470. .markdown:not(code) h6 {
  471. position: relative;
  472. margin-top: 1em;
  473. margin-bottom: 16px;
  474. font-weight: bold;
  475. line-height: 1.4;
  476. }
  477. .markdown:not(code) h1:first-of-type,
  478. .markdown:not(code) h2:first-of-type,
  479. .markdown:not(code) h3:first-of-type,
  480. .markdown:not(code) h4:first-of-type,
  481. .markdown:not(code) h5:first-of-type,
  482. .markdown:not(code) h6:first-of-type {
  483. margin-top: 0 !important;
  484. }
  485. .markdown:not(code) h1 .octicon-link,
  486. .markdown:not(code) h2 .octicon-link,
  487. .markdown:not(code) h3 .octicon-link,
  488. .markdown:not(code) h4 .octicon-link,
  489. .markdown:not(code) h5 .octicon-link,
  490. .markdown:not(code) h6 .octicon-link {
  491. display: none;
  492. color: #000;
  493. vertical-align: middle;
  494. }
  495. .markdown:not(code) h1:hover .anchor,
  496. .markdown:not(code) h2:hover .anchor,
  497. .markdown:not(code) h3:hover .anchor,
  498. .markdown:not(code) h4:hover .anchor,
  499. .markdown:not(code) h5:hover .anchor,
  500. .markdown:not(code) h6:hover .anchor {
  501. padding-left: 8px;
  502. margin-left: -30px;
  503. text-decoration: none;
  504. }
  505. .markdown:not(code) h1:hover .anchor .octicon-link,
  506. .markdown:not(code) h2:hover .anchor .octicon-link,
  507. .markdown:not(code) h3:hover .anchor .octicon-link,
  508. .markdown:not(code) h4:hover .anchor .octicon-link,
  509. .markdown:not(code) h5:hover .anchor .octicon-link,
  510. .markdown:not(code) h6:hover .anchor .octicon-link {
  511. display: inline-block;
  512. }
  513. .markdown:not(code) h1 tt,
  514. .markdown:not(code) h1 code,
  515. .markdown:not(code) h2 tt,
  516. .markdown:not(code) h2 code,
  517. .markdown:not(code) h3 tt,
  518. .markdown:not(code) h3 code,
  519. .markdown:not(code) h4 tt,
  520. .markdown:not(code) h4 code,
  521. .markdown:not(code) h5 tt,
  522. .markdown:not(code) h5 code,
  523. .markdown:not(code) h6 tt,
  524. .markdown:not(code) h6 code {
  525. font-size: inherit;
  526. }
  527. .markdown:not(code) h1 {
  528. padding-bottom: 0.3em;
  529. font-size: 2.25em;
  530. line-height: 1.2;
  531. border-bottom: 1px solid #eee;
  532. }
  533. .markdown:not(code) h1 .anchor {
  534. line-height: 1;
  535. }
  536. .markdown:not(code) h2 {
  537. padding-bottom: 0.3em;
  538. font-size: 1.75em;
  539. line-height: 1.225;
  540. border-bottom: 1px solid #eee;
  541. }
  542. .markdown:not(code) h2 .anchor {
  543. line-height: 1;
  544. }
  545. .markdown:not(code) h3 {
  546. font-size: 1.5em;
  547. line-height: 1.43;
  548. }
  549. .markdown:not(code) h3 .anchor {
  550. line-height: 1.2;
  551. }
  552. .markdown:not(code) h4 {
  553. font-size: 1.25em;
  554. }
  555. .markdown:not(code) h4 .anchor {
  556. line-height: 1.2;
  557. }
  558. .markdown:not(code) h5 {
  559. font-size: 1em;
  560. }
  561. .markdown:not(code) h5 .anchor {
  562. line-height: 1.1;
  563. }
  564. .markdown:not(code) h6 {
  565. font-size: 1em;
  566. color: #777;
  567. }
  568. .markdown:not(code) h6 .anchor {
  569. line-height: 1.1;
  570. }
  571. .markdown:not(code) p,
  572. .markdown:not(code) blockquote,
  573. .markdown:not(code) ul,
  574. .markdown:not(code) ol,
  575. .markdown:not(code) dl,
  576. .markdown:not(code) table,
  577. .markdown:not(code) pre {
  578. margin-top: 0;
  579. margin-bottom: 16px;
  580. }
  581. .markdown:not(code) blockquote {
  582. margin-left: 0;
  583. }
  584. .markdown:not(code) hr {
  585. height: 4px;
  586. padding: 0;
  587. margin: 16px 0;
  588. background-color: #e7e7e7;
  589. border: 0 none;
  590. }
  591. .markdown:not(code) ul,
  592. .markdown:not(code) ol {
  593. padding-left: 2em;
  594. }
  595. .markdown:not(code) ul.no-list,
  596. .markdown:not(code) ol.no-list {
  597. padding: 0;
  598. list-style-type: none;
  599. }
  600. .markdown:not(code) ul ul,
  601. .markdown:not(code) ul ol,
  602. .markdown:not(code) ol ol,
  603. .markdown:not(code) ol ul {
  604. margin-top: 0;
  605. margin-bottom: 0;
  606. }
  607. .markdown:not(code) ol ol,
  608. .markdown:not(code) ul ol {
  609. list-style-type: lower-roman;
  610. }
  611. .markdown:not(code) li > p {
  612. margin-top: 16px;
  613. }
  614. .markdown:not(code) dl {
  615. padding: 0;
  616. }
  617. .markdown:not(code) dl dt {
  618. padding: 0;
  619. margin-top: 16px;
  620. font-size: 1em;
  621. font-style: italic;
  622. font-weight: bold;
  623. }
  624. .markdown:not(code) dl dd {
  625. padding: 0 16px;
  626. margin-bottom: 16px;
  627. }
  628. .markdown:not(code) blockquote {
  629. padding: 0 15px;
  630. color: #777;
  631. border-left: 4px solid #ddd;
  632. }
  633. .markdown:not(code) blockquote > :first-child {
  634. margin-top: 0;
  635. }
  636. .markdown:not(code) blockquote > :last-child {
  637. margin-bottom: 0;
  638. }
  639. .markdown:not(code) table {
  640. display: block;
  641. width: 100%;
  642. overflow: auto;
  643. word-break: normal;
  644. word-break: keep-all;
  645. }
  646. .markdown:not(code) table th {
  647. font-weight: bold;
  648. }
  649. .markdown:not(code) table th,
  650. .markdown:not(code) table td {
  651. padding: 6px 13px !important;
  652. border: 1px solid #ddd !important;
  653. }
  654. .markdown:not(code) table tr {
  655. background-color: #fff;
  656. border-top: 1px solid #ccc;
  657. }
  658. .markdown:not(code) table tr:nth-child(2n) {
  659. background-color: #f8f8f8;
  660. }
  661. .markdown:not(code) img {
  662. max-width: 100%;
  663. box-sizing: border-box;
  664. }
  665. .markdown:not(code) .emoji {
  666. max-width: none;
  667. }
  668. .markdown:not(code) span.frame {
  669. display: block;
  670. overflow: hidden;
  671. }
  672. .markdown:not(code) span.frame > span {
  673. display: block;
  674. float: left;
  675. width: auto;
  676. padding: 7px;
  677. margin: 13px 0 0;
  678. overflow: hidden;
  679. border: 1px solid #ddd;
  680. }
  681. .markdown:not(code) span.frame span img {
  682. display: block;
  683. float: left;
  684. }
  685. .markdown:not(code) span.frame span span {
  686. display: block;
  687. padding: 5px 0 0;
  688. clear: both;
  689. color: #333;
  690. }
  691. .markdown:not(code) span.align-center {
  692. display: block;
  693. overflow: hidden;
  694. clear: both;
  695. }
  696. .markdown:not(code) span.align-center > span {
  697. display: block;
  698. margin: 13px auto 0;
  699. overflow: hidden;
  700. text-align: center;
  701. }
  702. .markdown:not(code) span.align-center span img {
  703. margin: 0 auto;
  704. text-align: center;
  705. }
  706. .markdown:not(code) span.align-right {
  707. display: block;
  708. overflow: hidden;
  709. clear: both;
  710. }
  711. .markdown:not(code) span.align-right > span {
  712. display: block;
  713. margin: 13px 0 0;
  714. overflow: hidden;
  715. text-align: right;
  716. }
  717. .markdown:not(code) span.align-right span img {
  718. margin: 0;
  719. text-align: right;
  720. }
  721. .markdown:not(code) span.float-left {
  722. display: block;
  723. float: left;
  724. margin-right: 13px;
  725. overflow: hidden;
  726. }
  727. .markdown:not(code) span.float-left span {
  728. margin: 13px 0 0;
  729. }
  730. .markdown:not(code) span.float-right {
  731. display: block;
  732. float: right;
  733. margin-left: 13px;
  734. overflow: hidden;
  735. }
  736. .markdown:not(code) span.float-right > span {
  737. display: block;
  738. margin: 13px auto 0;
  739. overflow: hidden;
  740. text-align: right;
  741. }
  742. .markdown:not(code) code,
  743. .markdown:not(code) tt {
  744. padding: 0;
  745. padding-top: 0.2em;
  746. padding-bottom: 0.2em;
  747. margin: 0;
  748. font-size: 85%;
  749. background-color: rgba(0, 0, 0, 0.04);
  750. border-radius: 3px;
  751. }
  752. .markdown:not(code) code:before,
  753. .markdown:not(code) code:after,
  754. .markdown:not(code) tt:before,
  755. .markdown:not(code) tt:after {
  756. letter-spacing: -0.2em;
  757. content: "\00a0";
  758. }
  759. .markdown:not(code) code br,
  760. .markdown:not(code) tt br {
  761. display: none;
  762. }
  763. .markdown:not(code) del code {
  764. text-decoration: inherit;
  765. }
  766. .markdown:not(code) pre > code {
  767. padding: 0;
  768. margin: 0;
  769. font-size: 100%;
  770. word-break: normal;
  771. white-space: pre;
  772. background: transparent;
  773. border: 0;
  774. }
  775. .markdown:not(code) .highlight {
  776. margin-bottom: 16px;
  777. }
  778. .markdown:not(code) .highlight pre,
  779. .markdown:not(code) pre {
  780. padding: 16px;
  781. overflow: auto;
  782. font-size: 85%;
  783. line-height: 1.45;
  784. background-color: #f7f7f7;
  785. border-radius: 3px;
  786. }
  787. .markdown:not(code) .highlight pre {
  788. margin-bottom: 0;
  789. word-break: normal;
  790. }
  791. .markdown:not(code) pre {
  792. word-wrap: normal;
  793. }
  794. .markdown:not(code) pre code,
  795. .markdown:not(code) pre tt {
  796. display: inline;
  797. max-width: initial;
  798. padding: 0;
  799. margin: 0;
  800. overflow: initial;
  801. line-height: inherit;
  802. word-wrap: normal;
  803. background-color: transparent;
  804. border: 0;
  805. }
  806. .markdown:not(code) pre code:before,
  807. .markdown:not(code) pre code:after,
  808. .markdown:not(code) pre tt:before,
  809. .markdown:not(code) pre tt:after {
  810. content: normal;
  811. }
  812. .markdown:not(code) kbd {
  813. display: inline-block;
  814. padding: 3px 5px;
  815. font-size: 11px;
  816. line-height: 10px;
  817. color: #555;
  818. vertical-align: middle;
  819. background-color: #fcfcfc;
  820. border: solid 1px #ccc;
  821. border-bottom-color: #bbb;
  822. border-radius: 3px;
  823. box-shadow: inset 0 -1px 0 #bbb;
  824. }
  825. .markdown:not(code) input[type="checkbox"] {
  826. vertical-align: middle !important;
  827. }
  828. .markdown:not(code) .csv-data td,
  829. .markdown:not(code) .csv-data th {
  830. padding: 5px;
  831. overflow: hidden;
  832. font-size: 12px;
  833. line-height: 1;
  834. text-align: left;
  835. white-space: nowrap;
  836. }
  837. .markdown:not(code) .csv-data .blob-num {
  838. padding: 10px 8px 9px;
  839. text-align: right;
  840. background: #fff;
  841. border: 0;
  842. }
  843. .markdown:not(code) .csv-data tr {
  844. border-top: 0;
  845. }
  846. .markdown:not(code) .csv-data th {
  847. font-weight: bold;
  848. background: #f8f8f8;
  849. border-top: 0;
  850. }
  851. .home {
  852. padding-bottom: 80px;
  853. }
  854. .home .logo {
  855. max-width: 220px;
  856. }
  857. .home .hero h1,
  858. .home .hero h2 {
  859. font-family: 'PT Sans Narrow', sans-serif, 'Microsoft YaHei';
  860. }
  861. .home .hero h1 {
  862. font-size: 5.5em;
  863. }
  864. .home .hero h2 {
  865. font-size: 3em;
  866. }
  867. .home .hero .octicon {
  868. color: #d9453d;
  869. font-size: 40px;
  870. width: 50px;
  871. }
  872. .home .hero.header {
  873. font-size: 20px;
  874. }
  875. .home p.large {
  876. font-size: 16px;
  877. }
  878. .home .stackable {
  879. padding-top: 30px;
  880. }
  881. .home a {
  882. color: #d9453d;
  883. }
  884. .signup {
  885. padding-top: 15px;
  886. padding-bottom: 80px;
  887. }
  888. .install {
  889. padding-top: 45px;
  890. padding-bottom: 80px;
  891. }
  892. .install form label {
  893. text-align: right;
  894. width: 320px !important;
  895. }
  896. .install form input {
  897. width: 35% !important;
  898. }
  899. .install form .field {
  900. text-align: left;
  901. }
  902. .install form .field .help {
  903. margin-left: 335px !important;
  904. }
  905. .install form .field.optional .title {
  906. margin-left: 38%;
  907. }
  908. .install .ui .checkbox {
  909. margin-left: 40% !important;
  910. }
  911. .install .ui .checkbox label {
  912. width: auto !important;
  913. }
  914. .form .help {
  915. color: #999999;
  916. padding-top: .6em;
  917. padding-bottom: .6em;
  918. display: inline-block;
  919. }
  920. .ui.attached.header {
  921. background: #f0f0f0;
  922. }
  923. .ui.attached.header .right {
  924. margin-top: -5px;
  925. }
  926. .ui.attached.header .right .button {
  927. padding: 8px 10px;
  928. font-weight: normal;
  929. }
  930. #create-page-form form {
  931. margin: auto;
  932. width: 800px!important;
  933. }
  934. #create-page-form form .ui.message {
  935. text-align: center;
  936. }
  937. #create-page-form form .header {
  938. padding-left: 280px !important;
  939. }
  940. #create-page-form form .inline.field > label {
  941. text-align: right;
  942. width: 250px !important;
  943. word-wrap: break-word;
  944. }
  945. #create-page-form form .help {
  946. margin-left: 265px !important;
  947. }
  948. #create-page-form form .optional .title {
  949. margin-left: 250px !important;
  950. }
  951. #create-page-form form input,
  952. #create-page-form form textarea {
  953. width: 50%!important;
  954. }
  955. .user.activate form,
  956. .user.forgot.password form,
  957. .user.reset.password form,
  958. .user.signin form,
  959. .user.signup form {
  960. margin: auto;
  961. width: 800px!important;
  962. }
  963. .user.activate form .ui.message,
  964. .user.forgot.password form .ui.message,
  965. .user.reset.password form .ui.message,
  966. .user.signin form .ui.message,
  967. .user.signup form .ui.message {
  968. text-align: center;
  969. }
  970. .user.activate form .header,
  971. .user.forgot.password form .header,
  972. .user.reset.password form .header,
  973. .user.signin form .header,
  974. .user.signup form .header {
  975. padding-left: 280px !important;
  976. }
  977. .user.activate form .inline.field > label,
  978. .user.forgot.password form .inline.field > label,
  979. .user.reset.password form .inline.field > label,
  980. .user.signin form .inline.field > label,
  981. .user.signup form .inline.field > label {
  982. text-align: right;
  983. width: 250px !important;
  984. word-wrap: break-word;
  985. }
  986. .user.activate form .help,
  987. .user.forgot.password form .help,
  988. .user.reset.password form .help,
  989. .user.signin form .help,
  990. .user.signup form .help {
  991. margin-left: 265px !important;
  992. }
  993. .user.activate form .optional .title,
  994. .user.forgot.password form .optional .title,
  995. .user.reset.password form .optional .title,
  996. .user.signin form .optional .title,
  997. .user.signup form .optional .title {
  998. margin-left: 250px !important;
  999. }
  1000. .user.activate form input,
  1001. .user.forgot.password form input,
  1002. .user.reset.password form input,
  1003. .user.signin form input,
  1004. .user.signup form input,
  1005. .user.activate form textarea,
  1006. .user.forgot.password form textarea,
  1007. .user.reset.password form textarea,
  1008. .user.signin form textarea,
  1009. .user.signup form textarea {
  1010. width: 50%!important;
  1011. }
  1012. .user.activate form,
  1013. .user.forgot.password form,
  1014. .user.reset.password form,
  1015. .user.signin form,
  1016. .user.signup form {
  1017. width: 700px!important;
  1018. }
  1019. .user.activate form .header,
  1020. .user.forgot.password form .header,
  1021. .user.reset.password form .header,
  1022. .user.signin form .header,
  1023. .user.signup form .header {
  1024. padding-left: 230px !important;
  1025. }
  1026. .user.activate form .inline.field > label,
  1027. .user.forgot.password form .inline.field > label,
  1028. .user.reset.password form .inline.field > label,
  1029. .user.signin form .inline.field > label,
  1030. .user.signup form .inline.field > label {
  1031. width: 200px !important;
  1032. }
  1033. .repository.new.repo form,
  1034. .repository.new.migrate form,
  1035. .repository.new.fork form {
  1036. margin: auto;
  1037. width: 800px!important;
  1038. }
  1039. .repository.new.repo form .ui.message,
  1040. .repository.new.migrate form .ui.message,
  1041. .repository.new.fork form .ui.message {
  1042. text-align: center;
  1043. }
  1044. .repository.new.repo form .header,
  1045. .repository.new.migrate form .header,
  1046. .repository.new.fork form .header {
  1047. padding-left: 280px !important;
  1048. }
  1049. .repository.new.repo form .inline.field > label,
  1050. .repository.new.migrate form .inline.field > label,
  1051. .repository.new.fork form .inline.field > label {
  1052. text-align: right;
  1053. width: 250px !important;
  1054. word-wrap: break-word;
  1055. }
  1056. .repository.new.repo form .help,
  1057. .repository.new.migrate form .help,
  1058. .repository.new.fork form .help {
  1059. margin-left: 265px !important;
  1060. }
  1061. .repository.new.repo form .optional .title,
  1062. .repository.new.migrate form .optional .title,
  1063. .repository.new.fork form .optional .title {
  1064. margin-left: 250px !important;
  1065. }
  1066. .repository.new.repo form input,
  1067. .repository.new.migrate form input,
  1068. .repository.new.fork form input,
  1069. .repository.new.repo form textarea,
  1070. .repository.new.migrate form textarea,
  1071. .repository.new.fork form textarea {
  1072. width: 50%!important;
  1073. }
  1074. .repository.new.repo form .dropdown .dropdown.icon,
  1075. .repository.new.migrate form .dropdown .dropdown.icon,
  1076. .repository.new.fork form .dropdown .dropdown.icon {
  1077. margin-top: -7px !important;
  1078. }
  1079. .repository.new.repo form .dropdown .text,
  1080. .repository.new.migrate form .dropdown .text,
  1081. .repository.new.fork form .dropdown .text {
  1082. margin-right: 0!important;
  1083. }
  1084. .repository.new.repo form .dropdown .text i,
  1085. .repository.new.migrate form .dropdown .text i,
  1086. .repository.new.fork form .dropdown .text i {
  1087. margin-right: 0!important;
  1088. }
  1089. .repository.new.repo .ui.form .selection.dropdown:not(.owner) {
  1090. width: 50%!important;
  1091. }
  1092. .repository.new.repo .ui.form #auto-init {
  1093. margin-left: 265px !important;
  1094. }
  1095. .new.webhook form .help {
  1096. margin-left: 25px;
  1097. }
  1098. .new.webhook .events.fields .column {
  1099. padding-left: 40px;
  1100. }
  1101. .repository {
  1102. padding-top: 15px;
  1103. padding-bottom: 80px;
  1104. }
  1105. .repository .head .column {
  1106. padding-top: 5px !important;
  1107. padding-bottom: 5px !important;
  1108. }
  1109. .repository .head .ui.compact.menu {
  1110. margin-left: 1rem;
  1111. }
  1112. .repository .head .ui.header {
  1113. margin-top: 0;
  1114. }
  1115. .repository .head .mega-octicon {
  1116. width: 30px;
  1117. font-size: 30px;
  1118. }
  1119. .repository .head .ui.huge.breadcrumb {
  1120. font-weight: 400;
  1121. font-size: 1.7rem;
  1122. }
  1123. .repository .head .fork-flag {
  1124. margin-left: 38px;
  1125. margin-top: 3px;
  1126. display: block;
  1127. font-size: 12px;
  1128. white-space: nowrap;
  1129. }
  1130. .repository .head .octicon.octicon-repo-forked {
  1131. margin-top: -1px;
  1132. font-size: 15px;
  1133. }
  1134. .repository .navbar .ui.label {
  1135. margin-top: -2px;
  1136. margin-left: 7px;
  1137. padding: 3px 5px;
  1138. }
  1139. .repository .owner.dropdown {
  1140. min-width: 40% !important;
  1141. }
  1142. .repository .metas .menu {
  1143. max-height: 300px;
  1144. overflow-x: auto;
  1145. }
  1146. .repository .metas .ui.list .hide {
  1147. display: none!important;
  1148. }
  1149. .repository .metas .ui.list .item {
  1150. padding: 0px;
  1151. }
  1152. .repository .metas .ui.list .label.color {
  1153. padding: 0 8px;
  1154. margin-right: 5px;
  1155. }
  1156. .repository .metas .ui.list a {
  1157. margin: 2px 0;
  1158. }
  1159. .repository .metas .ui.list a .text {
  1160. color: #444;
  1161. }
  1162. .repository .metas .ui.list a .text:hover {
  1163. color: #000;
  1164. }
  1165. .repository .header-wrapper {
  1166. background-color: #FAFAFA;
  1167. margin-top: -15px;
  1168. padding-top: 15px;
  1169. }
  1170. .repository .header-wrapper .ui.tabs.divider {
  1171. border-bottom: none;
  1172. }
  1173. .repository .header-wrapper .ui.tabular .octicon {
  1174. margin-right: 5px;
  1175. }
  1176. .repository .filter.menu .label.color {
  1177. border-radius: 3px;
  1178. margin-left: 15px;
  1179. padding: 0 8px;
  1180. }
  1181. .repository .filter.menu .octicon {
  1182. float: left;
  1183. margin-left: -5px;
  1184. margin-right: -7px;
  1185. }
  1186. .repository .filter.menu .menu {
  1187. max-height: 300px;
  1188. overflow-x: auto;
  1189. right: 0!important;
  1190. left: auto!important;
  1191. }
  1192. .repository .filter.menu .dropdown.item {
  1193. margin: 1px;
  1194. padding-right: 0;
  1195. }
  1196. .repository .ui.tabs.container {
  1197. margin-top: 14px;
  1198. margin-bottom: 0px;
  1199. }
  1200. .repository .ui.tabs.container .ui.menu {
  1201. border-bottom: none;
  1202. }
  1203. .repository .ui.tabs.divider {
  1204. margin-top: 0;
  1205. margin-bottom: 20px;
  1206. }
  1207. .repository #clone-panel {
  1208. margin-top: -8px;
  1209. width: 100%;
  1210. }
  1211. .repository #clone-panel input {
  1212. border-radius: 0;
  1213. padding: 5px 10px;
  1214. }
  1215. .repository #clone-panel .clone.button {
  1216. font-size: 13px;
  1217. padding: 0 5px;
  1218. }
  1219. .repository #clone-panel .clone.button:first-child {
  1220. border-radius: .28571429rem 0 0 .28571429rem;
  1221. }
  1222. .repository #clone-panel .icon.button {
  1223. padding: 0 10px;
  1224. }
  1225. .repository #clone-panel .dropdown .menu {
  1226. right: 0!important;
  1227. left: auto!important;
  1228. }
  1229. .repository.file.list #repo-desc {
  1230. font-size: 1.2em;
  1231. }
  1232. .repository.file.list .choose.reference .header .icon {
  1233. font-size: 1.4em;
  1234. }
  1235. .repository.file.list #repo-files-table thead th {
  1236. padding-top: 8px;
  1237. padding-bottom: 5px;
  1238. font-weight: normal;
  1239. }
  1240. .repository.file.list #repo-files-table thead th:first-child {
  1241. display: block;
  1242. position: relative;
  1243. width: 325%;
  1244. }
  1245. .repository.file.list #repo-files-table thead .ui.avatar {
  1246. margin-bottom: 5px;
  1247. }
  1248. .repository.file.list #repo-files-table tbody .octicon {
  1249. margin-left: 3px;
  1250. margin-right: 5px;
  1251. }
  1252. .repository.file.list #repo-files-table tbody .octicon.octicon-mail-reply {
  1253. margin-right: 10px;
  1254. }
  1255. .repository.file.list #repo-files-table td {
  1256. padding-top: 8px;
  1257. padding-bottom: 8px;
  1258. }
  1259. .repository.file.list #repo-files-table tr:hover {
  1260. background-color: #ffffEE;
  1261. }
  1262. .repository.file.list #file-content .header .icon {
  1263. font-size: 1em;
  1264. margin-top: -2px;
  1265. }
  1266. .repository.file.list #file-content .view-raw * {
  1267. max-width: 100%;
  1268. }
  1269. .repository.file.list #file-content .view-raw img {
  1270. padding: 5px 5px 0 5px;
  1271. }
  1272. .repository.file.list #file-content .code-view * {
  1273. font-size: 12px;
  1274. font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  1275. line-height: 20px;
  1276. }
  1277. .repository.file.list #file-content .code-view table {
  1278. width: 100%;
  1279. }
  1280. .repository.file.list #file-content .code-view .lines-num {
  1281. vertical-align: top;
  1282. text-align: right;
  1283. color: #999;
  1284. background: #f5f5f5;
  1285. width: 1%;
  1286. }
  1287. .repository.file.list #file-content .code-view .lines-num span {
  1288. line-height: 20px;
  1289. padding: 0 10px;
  1290. cursor: pointer;
  1291. display: block;
  1292. }
  1293. .repository.file.list #file-content .code-view .lines-num,
  1294. .repository.file.list #file-content .code-view .lines-code {
  1295. padding: 0;
  1296. }
  1297. .repository.file.list #file-content .code-view .lines-num pre,
  1298. .repository.file.list #file-content .code-view .lines-code pre,
  1299. .repository.file.list #file-content .code-view .lines-num ol,
  1300. .repository.file.list #file-content .code-view .lines-code ol,
  1301. .repository.file.list #file-content .code-view .lines-num .hljs,
  1302. .repository.file.list #file-content .code-view .lines-code .hljs {
  1303. background-color: white;
  1304. margin: 0;
  1305. padding: 0 !important;
  1306. }
  1307. .repository.file.list #file-content .code-view .lines-num pre li,
  1308. .repository.file.list #file-content .code-view .lines-code pre li,
  1309. .repository.file.list #file-content .code-view .lines-num ol li,
  1310. .repository.file.list #file-content .code-view .lines-code ol li,
  1311. .repository.file.list #file-content .code-view .lines-num .hljs li,
  1312. .repository.file.list #file-content .code-view .lines-code .hljs li {
  1313. padding-left: 5px;
  1314. }
  1315. .repository.file.list #file-content .code-view .lines-num pre li.active,
  1316. .repository.file.list #file-content .code-view .lines-code pre li.active,
  1317. .repository.file.list #file-content .code-view .lines-num ol li.active,
  1318. .repository.file.list #file-content .code-view .lines-code ol li.active,
  1319. .repository.file.list #file-content .code-view .lines-num .hljs li.active,
  1320. .repository.file.list #file-content .code-view .lines-code .hljs li.active {
  1321. background: #ffffdd;
  1322. }
  1323. .repository.file.list .sidebar {
  1324. padding-left: 0;
  1325. }
  1326. .repository.file.list .sidebar .octicon {
  1327. width: 16px;
  1328. }
  1329. .repository.options #interval {
  1330. width: 100px!important;
  1331. min-width: 100px;
  1332. }
  1333. .repository.options .danger .item {
  1334. padding: 20px 15px;
  1335. }
  1336. .repository.options .danger .ui.divider {
  1337. margin: 0;
  1338. }
  1339. .repository.new.issue .comment.form .comment .avatar {
  1340. width: 3em;
  1341. }
  1342. .repository.new.issue .comment.form .content {
  1343. margin-left: 4em;
  1344. }
  1345. .repository.new.issue .comment.form .content:before,
  1346. .repository.new.issue .comment.form .content:after {
  1347. right: 100%;
  1348. top: 20px;
  1349. border: solid transparent;
  1350. content: " ";
  1351. height: 0;
  1352. width: 0;
  1353. position: absolute;
  1354. pointer-events: none;
  1355. }
  1356. .repository.new.issue .comment.form .content:before {
  1357. border-right-color: #D4D4D5;
  1358. border-width: 9px;
  1359. margin-top: -9px;
  1360. }
  1361. .repository.new.issue .comment.form .content:after {
  1362. border-right-color: #f7f7f7;
  1363. border-width: 8px;
  1364. margin-top: -8px;
  1365. }
  1366. .repository.new.issue .comment.form .content:after {
  1367. border-right-color: #fff;
  1368. }
  1369. .repository.new.issue .comment.form .content .markdown {
  1370. font-size: 14px;
  1371. }
  1372. .repository.new.issue .comment.form .metas {
  1373. min-width: 220px;
  1374. }
  1375. .repository.new.issue .comment.form .metas .filter.menu {
  1376. max-height: 300px;
  1377. overflow-x: auto;
  1378. }
  1379. .repository.view.issue .title {
  1380. padding-bottom: 0!important;
  1381. }
  1382. .repository.view.issue .title h1 {
  1383. font-weight: 300;
  1384. font-size: 2.3rem;
  1385. margin-bottom: 5px;
  1386. }
  1387. .repository.view.issue .title h1 .ui.input {
  1388. font-size: 0.5em;
  1389. vertical-align: top;
  1390. width: 50%;
  1391. min-width: 600px;
  1392. }
  1393. .repository.view.issue .title h1 .ui.input input {
  1394. font-size: 1.5em;
  1395. padding: 6px 10px;
  1396. }
  1397. .repository.view.issue .title .index {
  1398. font-weight: 300;
  1399. color: #aaa;
  1400. letter-spacing: -1px;
  1401. }
  1402. .repository.view.issue .title .label {
  1403. margin-right: 10px;
  1404. }
  1405. .repository.view.issue .title .edit-zone {
  1406. margin-top: 10px;
  1407. }
  1408. .repository.view.issue .pull-desc code {
  1409. color: #0166E6;
  1410. }
  1411. .repository.view.issue .pull.tabular.menu {
  1412. margin-bottom: 10px;
  1413. }
  1414. .repository.view.issue .pull.tabular.menu .octicon {
  1415. margin-right: 5px;
  1416. }
  1417. .repository.view.issue .pull.tab.segment {
  1418. border: none;
  1419. padding: 0;
  1420. padding-top: 10px;
  1421. box-shadow: none;
  1422. background-color: inherit;
  1423. }
  1424. .repository.view.issue .pull .merge.box .avatar {
  1425. margin-left: 10px;
  1426. margin-top: 10px;
  1427. }
  1428. .repository.view.issue .comment-list:before {
  1429. display: block;
  1430. content: "";
  1431. position: absolute;
  1432. margin-top: 12px;
  1433. margin-bottom: 14px;
  1434. top: 0;
  1435. bottom: 0;
  1436. left: 96px;
  1437. width: 2px;
  1438. background-color: #f3f3f3;
  1439. z-index: -1;
  1440. }
  1441. .repository.view.issue .comment-list .comment .avatar {
  1442. width: 3em;
  1443. }
  1444. .repository.view.issue .comment-list .comment .tag {
  1445. color: #767676;
  1446. margin-top: 3px;
  1447. padding: 2px 5px;
  1448. font-size: 12px;
  1449. border: 1px solid rgba(0, 0, 0, 0.1);
  1450. border-radius: 3px;
  1451. }
  1452. .repository.view.issue .comment-list .comment .actions .item {
  1453. float: left;
  1454. }
  1455. .repository.view.issue .comment-list .comment .actions .item.tag {
  1456. margin-right: 5px;
  1457. }
  1458. .repository.view.issue .comment-list .comment .actions .item.action {
  1459. margin-top: 6px;
  1460. margin-left: 10px;
  1461. }
  1462. .repository.view.issue .comment-list .comment .content {
  1463. margin-left: 4em;
  1464. }
  1465. .repository.view.issue .comment-list .comment .content .header {
  1466. font-weight: normal;
  1467. padding: auto 15px;
  1468. position: relative;
  1469. color: #767676;
  1470. background-color: #f7f7f7;
  1471. border-bottom: 1px solid #eee;
  1472. border-top-left-radius: 3px;
  1473. border-top-right-radius: 3px;
  1474. }
  1475. .repository.view.issue .comment-list .comment .content .header:before,
  1476. .repository.view.issue .comment-list .comment .content .header:after {
  1477. right: 100%;
  1478. top: 20px;
  1479. border: solid transparent;
  1480. content: " ";
  1481. height: 0;
  1482. width: 0;
  1483. position: absolute;
  1484. pointer-events: none;
  1485. }
  1486. .repository.view.issue .comment-list .comment .content .header:before {
  1487. border-right-color: #D4D4D5;
  1488. border-width: 9px;
  1489. margin-top: -9px;
  1490. }
  1491. .repository.view.issue .comment-list .comment .content .header:after {
  1492. border-right-color: #f7f7f7;
  1493. border-width: 8px;
  1494. margin-top: -8px;
  1495. }
  1496. .repository.view.issue .comment-list .comment .content .header .text {
  1497. max-width: 78%;
  1498. padding-top: 10px;
  1499. padding-bottom: 10px;
  1500. }
  1501. .repository.view.issue .comment-list .comment .content .markdown {
  1502. font-size: 14px;
  1503. }
  1504. .repository.view.issue .comment-list .comment .content .no-content {
  1505. color: #767676;
  1506. font-style: italic;
  1507. }
  1508. .repository.view.issue .comment-list .comment .content > .bottom.segment {
  1509. background: #f3f4f5;
  1510. }
  1511. .repository.view.issue .comment-list .comment .content > .bottom.segment .ui.images::after {
  1512. clear: both;
  1513. content: ' ';
  1514. display: block;
  1515. }
  1516. .repository.view.issue .comment-list .comment .content > .bottom.segment a {
  1517. display: block;
  1518. float: left;
  1519. margin: 5px;
  1520. padding: 5px;
  1521. height: 150px;
  1522. border: solid 1px #eee;
  1523. border-radius: 3px;
  1524. max-width: 150px;
  1525. background-color: #fff;
  1526. }
  1527. .repository.view.issue .comment-list .comment .content > .bottom.segment a:before {
  1528. content: ' ';
  1529. display: inline-block;
  1530. height: 100%;
  1531. vertical-align: middle;
  1532. }
  1533. .repository.view.issue .comment-list .comment .content > .bottom.segment .ui.image {
  1534. max-height: 100%;
  1535. width: auto;
  1536. margin: 0;
  1537. vertical-align: middle;
  1538. }
  1539. .repository.view.issue .comment-list .comment .ui.form .field:first-child {
  1540. clear: none;
  1541. }
  1542. .repository.view.issue .comment-list .comment .ui.form .tab.segment {
  1543. border: none;
  1544. padding: 0;
  1545. padding-top: 10px;
  1546. }
  1547. .repository.view.issue .comment-list .comment .ui.form textarea {
  1548. height: 200px;
  1549. font-family: "Consolas", monospace;
  1550. }
  1551. .repository.view.issue .comment-list .comment .edit.buttons {
  1552. margin-top: 10px;
  1553. }
  1554. .repository.view.issue .comment-list .event {
  1555. position: relative;
  1556. margin: 15px 0 15px 79px;
  1557. padding-left: 25px;
  1558. }
  1559. .repository.view.issue .comment-list .event .octicon {
  1560. width: 30px;
  1561. float: left;
  1562. text-align: center;
  1563. }
  1564. .repository.view.issue .comment-list .event .octicon.octicon-circle-slash {
  1565. margin-top: 5px;
  1566. margin-left: -34.5px;
  1567. font-size: 20px;
  1568. color: #bd2c00;
  1569. }
  1570. .repository.view.issue .comment-list .event .octicon.octicon-primitive-dot {
  1571. margin-left: -28.5px;
  1572. margin-right: -1px;
  1573. font-size: 30px;
  1574. color: #6cc644;
  1575. }
  1576. .repository.view.issue .comment-list .event .octicon.octicon-bookmark {
  1577. margin-top: 3px;
  1578. margin-left: -31px;
  1579. margin-right: -1px;
  1580. font-size: 25px;
  1581. }
  1582. .repository.view.issue .comment-list .event .detail {
  1583. font-size: 0.9rem;
  1584. margin-top: 5px;
  1585. margin-left: 35px;
  1586. }
  1587. .repository.view.issue .comment-list .event .detail .octicon.octicon-git-commit {
  1588. margin-top: 2px;
  1589. }
  1590. .repository.view.issue .ui.segment.metas {
  1591. margin-top: -3px;
  1592. }
  1593. .repository.view.issue .ui.participants img {
  1594. margin-top: 5px;
  1595. margin-right: 5px;
  1596. }
  1597. .repository .comment.form .ui.comments {
  1598. margin-top: -12px;
  1599. max-width: 100%;
  1600. }
  1601. .repository .comment.form .content .field:first-child {
  1602. clear: none;
  1603. }
  1604. .repository .comment.form .content .form:before,
  1605. .repository .comment.form .content .form:after {
  1606. right: 100%;
  1607. top: 20px;
  1608. border: solid transparent;
  1609. content: " ";
  1610. height: 0;
  1611. width: 0;
  1612. position: absolute;
  1613. pointer-events: none;
  1614. }
  1615. .repository .comment.form .content .form:before {
  1616. border-right-color: #D4D4D5;
  1617. border-width: 9px;
  1618. margin-top: -9px;
  1619. }
  1620. .repository .comment.form .content .form:after {
  1621. border-right-color: #f7f7f7;
  1622. border-width: 8px;
  1623. margin-top: -8px;
  1624. }
  1625. .repository .comment.form .content .form:after {
  1626. border-right-color: #fff;
  1627. }
  1628. .repository .comment.form .content .tab.segment {
  1629. border: none;
  1630. padding: 0;
  1631. padding-top: 10px;
  1632. }
  1633. .repository .comment.form .content textarea {
  1634. height: 200px;
  1635. font-family: "Consolas", monospace;
  1636. }
  1637. .repository .label.list {
  1638. list-style: none;
  1639. padding-top: 15px;
  1640. }
  1641. .repository .label.list .item {
  1642. padding-top: 10px;
  1643. padding-bottom: 10px;
  1644. border-bottom: 1px dashed #AAA;
  1645. }
  1646. .repository .label.list .item a {
  1647. font-size: 15px;
  1648. padding-top: 5px;
  1649. padding-right: 10px;
  1650. color: #666;
  1651. }
  1652. .repository .label.list .item a:hover {
  1653. color: #000;
  1654. }
  1655. .repository .label.list .item a.open-issues {
  1656. margin-right: 30px;
  1657. }
  1658. .repository .label.list .item .ui.label {
  1659. font-size: 1em;
  1660. }
  1661. .repository .milestone.list {
  1662. list-style: none;
  1663. padding-top: 15px;
  1664. }
  1665. .repository .milestone.list > .item {
  1666. padding-top: 10px;
  1667. padding-bottom: 10px;
  1668. border-bottom: 1px dashed #AAA;
  1669. }
  1670. .repository .milestone.list > .item > a {
  1671. padding-top: 5px;
  1672. padding-right: 10px;
  1673. color: #000;
  1674. }
  1675. .repository .milestone.list > .item > a:hover {
  1676. color: #4078c0;
  1677. }
  1678. .repository .milestone.list > .item .ui.progress {
  1679. width: 40%;
  1680. padding: 0;
  1681. border: 0;
  1682. margin: 0;
  1683. }
  1684. .repository .milestone.list > .item .ui.progress .bar {
  1685. height: 20px;
  1686. }
  1687. .repository .milestone.list > .item .meta {
  1688. color: #999;
  1689. padding-top: 5px;
  1690. }
  1691. .repository .milestone.list > .item .meta .issue-stats .octicon {
  1692. padding-left: 5px;
  1693. }
  1694. .repository .milestone.list > .item .meta .overdue {
  1695. color: red;
  1696. }
  1697. .repository .milestone.list > .item .operate {
  1698. margin-top: -15px;
  1699. }
  1700. .repository .milestone.list > .item .operate > a {
  1701. font-size: 15px;
  1702. padding-top: 5px;
  1703. padding-right: 10px;
  1704. color: #666;
  1705. }
  1706. .repository .milestone.list > .item .operate > a:hover {
  1707. color: #000;
  1708. }
  1709. .repository .milestone.list > .item .content {
  1710. padding-top: 10px;
  1711. }
  1712. .repository.new.milestone textarea {
  1713. height: 200px;
  1714. }
  1715. .repository.new.milestone #deadline {
  1716. width: 150px;
  1717. }
  1718. .repository.compare.pull .choose.branch .octicon {
  1719. padding-right: 10px;
  1720. }
  1721. .repository.compare.pull .comment.form .content:before,
  1722. .repository.compare.pull .comment.form .content:after {
  1723. right: 100%;
  1724. top: 20px;
  1725. border: solid transparent;
  1726. content: " ";
  1727. height: 0;
  1728. width: 0;
  1729. position: absolute;
  1730. pointer-events: none;
  1731. }
  1732. .repository.compare.pull .comment.form .content:before {
  1733. border-right-color: #D4D4D5;
  1734. border-width: 9px;
  1735. margin-top: -9px;
  1736. }
  1737. .repository.compare.pull .comment.form .content:after {
  1738. border-right-color: #f7f7f7;
  1739. border-width: 8px;
  1740. margin-top: -8px;
  1741. }
  1742. .repository.compare.pull .comment.form .content:after {
  1743. border-right-color: #fff;
  1744. }
  1745. .repository .filter.dropdown .menu {
  1746. margin-top: 1px!important;
  1747. }
  1748. .repository.commits .header .ui.right .search input {
  1749. font-weight: normal;
  1750. padding: 5px 10px;
  1751. }
  1752. .repository #commits-table thead th:first-of-type {
  1753. padding-left: 15px;
  1754. }
  1755. .repository #commits-table thead .sha {
  1756. font-size: 13px;
  1757. padding: 6px 40px 4px 35px;
  1758. }
  1759. .repository #commits-table.ui.basic.striped.table tbody tr:nth-child(2n) {
  1760. background-color: rgba(0, 0, 0, 0.02) !important;
  1761. }
  1762. .repository .diff-detail-box {
  1763. margin: 15px 0;
  1764. line-height: 30px;
  1765. }
  1766. .repository .diff-detail-box ol {
  1767. clear: both;
  1768. padding-left: 0;
  1769. margin-top: 5px;
  1770. margin-bottom: 28px;
  1771. }
  1772. .repository .diff-detail-box ol li {
  1773. list-style: none;
  1774. padding-bottom: 4px;
  1775. margin-bottom: 4px;
  1776. border-bottom: 1px dashed #DDD;
  1777. padding-left: 6px;
  1778. }
  1779. .repository .diff-detail-box span.status {
  1780. display: inline-block;
  1781. width: 12px;
  1782. height: 12px;
  1783. margin-right: 8px;
  1784. vertical-align: middle;
  1785. }
  1786. .repository .diff-detail-box span.status.modify {
  1787. background-color: #f0db88;
  1788. }
  1789. .repository .diff-detail-box span.status.add {
  1790. background-color: #b4e2b4;
  1791. }
  1792. .repository .diff-detail-box span.status.del {
  1793. background-color: #e9aeae;
  1794. }
  1795. .repository .diff-detail-box span.status.rename {
  1796. background-color: #dad8ff;
  1797. }
  1798. .repository .diff-box .count {
  1799. margin-right: 12px;
  1800. font-size: 13px;
  1801. }
  1802. .repository .diff-box .count .bar {
  1803. background-color: #bd2c00;
  1804. height: 12px;
  1805. width: 40px;
  1806. display: inline-block;
  1807. margin: 2px 4px 0 4px;
  1808. vertical-align: text-top;
  1809. }
  1810. .repository .diff-box .count .bar .add {
  1811. background-color: #55a532;
  1812. height: 12px;
  1813. }
  1814. .repository .diff-box .file {
  1815. color: #888;
  1816. }
  1817. .repository .diff-file-box .header {
  1818. background-color: #f7f7f7;
  1819. }
  1820. .repository .diff-file-box .file-body.file-code .lines-num {
  1821. text-align: right;
  1822. color: #A7A7A7;
  1823. background: #fafafa;
  1824. width: 1%;
  1825. }
  1826. .repository .diff-file-box .file-body.file-code .lines-num span.fold {
  1827. display: block;
  1828. text-align: center;
  1829. }
  1830. .repository .diff-file-box .file-body.file-code .lines-num-old {
  1831. border-right: 1px solid #DDD;
  1832. }
  1833. .repository .diff-file-box .code-diff {
  1834. font-size: 12px;
  1835. }
  1836. .repository .diff-file-box .code-diff td {
  1837. padding: 0;
  1838. padding-left: 10px;
  1839. border-top: none;
  1840. }
  1841. .repository .diff-file-box .code-diff pre {
  1842. margin: 0;
  1843. }
  1844. .repository .diff-file-box .code-diff .lines-num {
  1845. border-right: 1px solid #d4d4d5;
  1846. padding: 0 5px;
  1847. }
  1848. .repository .diff-file-box .code-diff tbody tr.tag-code td,
  1849. .repository .diff-file-box .code-diff tbody tr.tag-code pre {
  1850. background-color: #F0F0F0 !important;
  1851. border-color: #D2CECE!important;
  1852. padding-top: 4px;
  1853. padding-bottom: 4px;
  1854. }
  1855. .repository .diff-file-box .code-diff tbody tr.tag-code td.halfwidth {
  1856. width: 50%;
  1857. }
  1858. .repository .diff-file-box .code-diff tbody tr.del-code td.add-code {
  1859. background-color: #eaffea !important;
  1860. border-color: #c1e9c1 !important;
  1861. }
  1862. .repository .diff-file-box .code-diff tbody tr.del-code td.add-code pre {
  1863. background-color: #eaffea !important;
  1864. border-color: #c1e9c1 !important;
  1865. }
  1866. .repository .diff-file-box .code-diff tbody tr.del-code td,
  1867. .repository .diff-file-box .code-diff tbody tr.del-code pre {
  1868. background-color: #ffecec !important;
  1869. border-color: #f1c0c0 !important;
  1870. }
  1871. .repository .diff-file-box .code-diff tbody tr.del-code td.halfwidth {
  1872. width: 50%;
  1873. }
  1874. .repository .diff-file-box .code-diff tbody tr.add-code td,
  1875. .repository .diff-file-box .code-diff tbody tr.add-code pre {
  1876. background-color: #eaffea !important;
  1877. border-color: #c1e9c1 !important;
  1878. }
  1879. .repository .diff-file-box .code-diff tbody tr.add-code td.halfwidth {
  1880. width: 50%;
  1881. }
  1882. .repository .diff-file-box .code-diff tbody tr .removed-code {
  1883. background-color: #ff9999;
  1884. }
  1885. .repository .diff-file-box .code-diff tbody tr .added-code {
  1886. background-color: #99ff99;
  1887. }
  1888. .repository .diff-file-box.file-content img {
  1889. max-width: 100%;
  1890. padding: 5px 5px 0 5px;
  1891. }
  1892. .repository .code-view {
  1893. overflow: auto;
  1894. overflow-x: auto;
  1895. overflow-y: hidden;
  1896. }
  1897. .repository.quickstart .guide .item {
  1898. padding: 1em;
  1899. }
  1900. .repository.quickstart .guide .item small {
  1901. font-weight: normal;
  1902. }
  1903. .repository.quickstart .guide .clone.button:first-child {
  1904. border-radius: .28571429rem 0 0 .28571429rem;
  1905. }
  1906. .repository.quickstart .guide .ui.action.small.input {
  1907. width: 100%;
  1908. }
  1909. .repository.quickstart .guide #repo-clone-url {
  1910. border-radius: 0;
  1911. padding: 5px 10px;
  1912. font-size: 1.2em;
  1913. }
  1914. .repository.release #release-list {
  1915. border-top: 1px solid #DDD;
  1916. margin-top: 20px;
  1917. padding-top: 15px;
  1918. }
  1919. .repository.release #release-list > li {
  1920. list-style: none;
  1921. }
  1922. .repository.release #release-list > li .meta,
  1923. .repository.release #release-list > li .detail {
  1924. padding-top: 30px;
  1925. padding-bottom: 40px;
  1926. }
  1927. .repository.release #release-list > li .meta {
  1928. text-align: right;
  1929. position: relative;
  1930. }
  1931. .repository.release #release-list > li .meta .tag:not(.icon) {
  1932. display: block;
  1933. margin-top: 15px;
  1934. }
  1935. .repository.release #release-list > li .meta .commit {
  1936. display: block;
  1937. margin-top: 10px;
  1938. }
  1939. .repository.release #release-list > li .detail {
  1940. border-left: 1px solid #DDD;
  1941. }
  1942. .repository.release #release-list > li .detail .author img {
  1943. margin-bottom: -3px;
  1944. }
  1945. .repository.release #release-list > li .detail .download {
  1946. margin-top: 20px;
  1947. }
  1948. .repository.release #release-list > li .detail .download > a .octicon {
  1949. margin-left: 5px;
  1950. margin-right: 5px;
  1951. }
  1952. .repository.release #release-list > li .detail .download .list {
  1953. padding-left: 0;
  1954. border-top: 1px solid #eee;
  1955. }
  1956. .repository.release #release-list > li .detail .download .list li {
  1957. list-style: none;
  1958. display: block;
  1959. padding-top: 8px;
  1960. padding-bottom: 8px;
  1961. border-bottom: 1px solid #eee;
  1962. }
  1963. .repository.release #release-list > li .detail .dot {
  1964. width: 9px;
  1965. height: 9px;
  1966. background-color: #ccc;
  1967. z-index: 999;
  1968. position: absolute;
  1969. display: block;
  1970. left: -5px;
  1971. top: 40px;
  1972. border-radius: 6px;
  1973. border: 1px solid #FFF;
  1974. }
  1975. .repository.new.release .target {
  1976. min-width: 500px;
  1977. }
  1978. .repository.new.release .target #tag-name {
  1979. margin-top: -4px;
  1980. }
  1981. .repository.new.release .target .at {
  1982. margin-left: -5px;
  1983. margin-right: 5px;
  1984. }
  1985. .repository.new.release .target .dropdown.icon {
  1986. margin: 0;
  1987. padding-top: 3px;
  1988. }
  1989. .repository.new.release .target .selection.dropdown {
  1990. padding-top: 10px;
  1991. padding-bottom: 10px;
  1992. }
  1993. .repository.new.release .prerelease.field {
  1994. margin-bottom: 0;
  1995. }
  1996. .repository.forks .list {
  1997. margin-top: 0;
  1998. }
  1999. .repository.forks .list .item {
  2000. padding-top: 10px;
  2001. padding-bottom: 10px;
  2002. border-bottom: 1px solid #DDD;
  2003. }
  2004. .repository.forks .list .item .ui.avatar {
  2005. float: left;
  2006. margin-right: 5px;
  2007. }
  2008. .repository.forks .list .item .link {
  2009. padding-top: 5px;
  2010. }
  2011. .repository.wiki.start .ui.segment {
  2012. padding-top: 70px;
  2013. padding-bottom: 100px;
  2014. }
  2015. .repository.wiki.start .ui.segment .mega-octicon {
  2016. font-size: 48px;
  2017. }
  2018. .repository.wiki.new .CodeMirror .CodeMirror-code {
  2019. font-family: "Consolas", monospace;
  2020. }
  2021. .repository.wiki.new .CodeMirror .CodeMirror-code .cm-comment {
  2022. background: inherit;
  2023. }
  2024. .repository.wiki.new .editor-preview {
  2025. background-color: white;
  2026. }
  2027. .repository.wiki.view .choose.page {
  2028. margin-top: -5px;
  2029. }
  2030. .repository.wiki.view .ui.sub.header {
  2031. text-transform: none;
  2032. }
  2033. .repository.wiki.view .markdown {
  2034. padding: 15px 30px;
  2035. }
  2036. .repository.wiki.view .markdown h1:first-of-type,
  2037. .repository.wiki.view .markdown h2:first-of-type,
  2038. .repository.wiki.view .markdown h3:first-of-type,
  2039. .repository.wiki.view .markdown h4:first-of-type,
  2040. .repository.wiki.view .markdown h5:first-of-type,
  2041. .repository.wiki.view .markdown h6:first-of-type {
  2042. margin-top: 0;
  2043. }
  2044. .repository.settings.collaboration .collaborator.list {
  2045. padding: 0;
  2046. }
  2047. .repository.settings.collaboration .collaborator.list > .item {
  2048. margin: 0;
  2049. line-height: 2em;
  2050. }
  2051. .repository.settings.collaboration .collaborator.list > .item:not(:last-child) {
  2052. border-bottom: 1px solid #DDD;
  2053. }
  2054. .repository.settings.collaboration #repo-collab-form #search-user-box .results {
  2055. left: 7px;
  2056. }
  2057. .repository.settings.collaboration #repo-collab-form .ui.button {
  2058. margin-left: 5px;
  2059. margin-top: -3px;
  2060. }
  2061. .user-cards .list {
  2062. padding: 0;
  2063. }
  2064. .user-cards .list .item {
  2065. list-style: none;
  2066. width: 32%;
  2067. margin: 10px 10px 10px 0;
  2068. padding-bottom: 14px;
  2069. float: left;
  2070. }
  2071. .user-cards .list .item .avatar {
  2072. width: 48px;
  2073. height: 48px;
  2074. float: left;
  2075. display: block;
  2076. margin-right: 10px;
  2077. }
  2078. .user-cards .list .item .name {
  2079. margin-top: 0;
  2080. margin-bottom: 0;
  2081. font-weight: normal;
  2082. }
  2083. .user-cards .list .item .meta {
  2084. margin-top: 5px;
  2085. }
  2086. #search-repo-box .results,
  2087. #search-user-box .results {
  2088. padding: 0;
  2089. position: absolute;
  2090. }
  2091. #search-repo-box .results .item,
  2092. #search-user-box .results .item {
  2093. padding: 10px 15px;
  2094. border-bottom: 1px solid #DDD;
  2095. cursor: pointer;
  2096. }
  2097. #search-repo-box .results .item:hover,
  2098. #search-user-box .results .item:hover {
  2099. background: rgba(0, 0, 0, 0.05) !important;
  2100. color: rgba(0, 0, 0, 0.95) !important;
  2101. }
  2102. #search-repo-box .results .item img,
  2103. #search-user-box .results .item img {
  2104. margin-right: 8px;
  2105. }
  2106. .issue.list {
  2107. list-style: none;
  2108. padding-top: 15px;
  2109. }
  2110. .issue.list > .item {
  2111. padding-top: 15px;
  2112. padding-bottom: 10px;
  2113. border-bottom: 1px dashed #AAA;
  2114. }
  2115. .issue.list > .item .title {
  2116. color: #444;
  2117. font-size: 15px;
  2118. font-weight: bold;
  2119. margin: 0 6px;
  2120. }
  2121. .issue.list > .item .title:hover {
  2122. color: #000;
  2123. }
  2124. .issue.list > .item .comment {
  2125. padding-right: 10px;
  2126. color: #666;
  2127. }
  2128. .issue.list > .item .desc {
  2129. padding-top: 5px;
  2130. color: #999;
  2131. }
  2132. .issue.list > .item .desc a.milestone {
  2133. padding-left: 5px;
  2134. color: #999!important;
  2135. }
  2136. .issue.list > .item .desc a.milestone:hover {
  2137. color: #000!important;
  2138. }
  2139. .issue.list > .item .desc .assignee {
  2140. margin-top: -5px;
  2141. margin-right: 5px;
  2142. }
  2143. .page.buttons {
  2144. padding-top: 15px;
  2145. }
  2146. .ui.comments .dropzone {
  2147. width: 100%;
  2148. margin-bottom: 10px;
  2149. border: 2px dashed #0087F7;
  2150. box-shadow: none!important;
  2151. }
  2152. .ui.comments .dropzone .dz-error-message {
  2153. top: 140px;
  2154. }
  2155. .settings .content {
  2156. margin-top: 2px;
  2157. }
  2158. .settings .content > .header,
  2159. .settings .content .segment {
  2160. box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  2161. }
  2162. .settings .key.list .item:not(:first-child) {
  2163. border-top: 1px solid #eaeaea;
  2164. }
  2165. .settings .key.list .ssh-key-state-indicator {
  2166. float: left;
  2167. color: gray;
  2168. padding-left: 10px;
  2169. padding-top: 10px;
  2170. }
  2171. .settings .key.list .ssh-key-state-indicator.active {
  2172. color: #6cc644;
  2173. }
  2174. .settings .key.list .meta {
  2175. padding-top: 5px;
  2176. }
  2177. .settings .key.list .print {
  2178. color: #767676;
  2179. }
  2180. .settings .key.list .activity {
  2181. color: #666;
  2182. }
  2183. .settings .hook.list > .item:not(:first-child) {
  2184. border-top: 1px solid #eaeaea;
  2185. }
  2186. .settings .hook.list .item {
  2187. padding: 10px 20px;
  2188. }
  2189. .settings .hook.list .item .octicon,
  2190. .settings .hook.list .item .fa {
  2191. width: 20px;
  2192. text-align: center;
  2193. }
  2194. .settings .hook.list .item a {
  2195. /* These are technically the same, but use both */
  2196. overflow-wrap: break-word;
  2197. word-wrap: break-word;
  2198. -ms-word-break: break-all;
  2199. /* This is the dangerous one in WebKit, as it breaks things wherever */
  2200. word-break: break-all;
  2201. /* Instead use this non-standard one: */
  2202. word-break: break-word;
  2203. /* Adds a hyphen where the word breaks, if supported (No Blink) */
  2204. -ms-hyphens: auto;
  2205. -moz-hyphens: auto;
  2206. -webkit-hyphens: auto;
  2207. hyphens: auto;
  2208. }
  2209. .settings .hook.history.list .item {
  2210. padding-left: 13px;
  2211. }
  2212. .settings .hook.history.list .item .meta .ui.right {
  2213. margin-top: 5px;
  2214. }
  2215. .settings .hook.history.list .item .meta .ui.right .time {
  2216. font-size: 12px;
  2217. }
  2218. .settings .hook.history.list .item .info {
  2219. margin-top: 10px;
  2220. }
  2221. .settings .hook.history.list .item .info .tabular.menu .item {
  2222. font-weight: 500;
  2223. }
  2224. .settings .hook.history.list .item .info .tab.segment {
  2225. border: none;
  2226. padding: 0;
  2227. padding-top: 10px;
  2228. box-shadow: none;
  2229. }
  2230. .settings .hook.history.list .item .info .tab.segment > * {
  2231. color: #666;
  2232. }
  2233. .settings .hook.history.list .item .info .tab.segment pre {
  2234. word-wrap: break-word;
  2235. }
  2236. .settings .hook.history.list .item .info .tab.segment pre .hljs {
  2237. padding: 0;
  2238. background-color: inherit;
  2239. }
  2240. .ui.vertical.menu .header.item {
  2241. font-size: 1.1em;
  2242. background: #f0f0f0;
  2243. }
  2244. .edit-label.modal .form .column,
  2245. .new-label.segment .form .column {
  2246. padding-right: 0;
  2247. }
  2248. .edit-label.modal .form .buttons,
  2249. .new-label.segment .form .buttons {
  2250. margin-left: auto;
  2251. padding-top: 15px;
  2252. }
  2253. .edit-label.modal .form .color.picker.column,
  2254. .new-label.segment .form .color.picker.column {
  2255. width: auto;
  2256. }
  2257. .edit-label.modal .form .color.picker.column .color-picker,
  2258. .new-label.segment .form .color.picker.column .color-picker {
  2259. height: 35px;
  2260. width: auto;
  2261. padding-left: 30px;
  2262. }
  2263. .edit-label.modal .form .minicolors-swatch.minicolors-sprite,
  2264. .new-label.segment .form .minicolors-swatch.minicolors-sprite {
  2265. top: 10px;
  2266. left: 10px;
  2267. width: 15px;
  2268. height: 15px;
  2269. }
  2270. .edit-label.modal .form .precolors,
  2271. .new-label.segment .form .precolors {
  2272. padding-left: 0;
  2273. padding-right: 0;
  2274. margin: 3px 10px auto 10px;
  2275. width: 120px;
  2276. }
  2277. .edit-label.modal .form .precolors .color,
  2278. .new-label.segment .form .precolors .color {
  2279. float: left;
  2280. width: 15px;
  2281. height: 15px;
  2282. }
  2283. #avatar-arrow:before,
  2284. #avatar-arrow:after {
  2285. right: 100%;
  2286. top: 20px;
  2287. border: solid transparent;
  2288. content: " ";
  2289. height: 0;
  2290. width: 0;
  2291. position: absolute;
  2292. pointer-events: none;
  2293. }
  2294. #avatar-arrow:before {
  2295. border-right-color: #D4D4D5;
  2296. border-width: 9px;
  2297. margin-top: -9px;
  2298. }
  2299. #avatar-arrow:after {
  2300. border-right-color: #f7f7f7;
  2301. border-width: 8px;
  2302. margin-top: -8px;
  2303. }
  2304. #transfer-repo-modal .ui.message,
  2305. #delete-repo-modal .ui.message {
  2306. width: 100%!important;
  2307. }
  2308. .organization {
  2309. padding-top: 15px;
  2310. padding-bottom: 80px;
  2311. }
  2312. .organization .head .ui.header .text {
  2313. vertical-align: middle;
  2314. font-size: 1.6rem;
  2315. margin-left: 15px;
  2316. }
  2317. .organization .head .ui.header .ui.right {
  2318. margin-top: 5px;
  2319. }
  2320. .organization.new.org form {
  2321. margin: auto;
  2322. width: 800px!important;
  2323. }
  2324. .organization.new.org form .ui.message {
  2325. text-align: center;
  2326. }
  2327. .organization.new.org form .header {
  2328. padding-left: 280px !important;
  2329. }
  2330. .organization.new.org form .inline.field > label {
  2331. text-align: right;
  2332. width: 250px !important;
  2333. word-wrap: break-word;
  2334. }
  2335. .organization.new.org form .help {
  2336. margin-left: 265px !important;
  2337. }
  2338. .organization.new.org form .optional .title {
  2339. margin-left: 250px !important;
  2340. }
  2341. .organization.new.org form input,
  2342. .organization.new.org form textarea {
  2343. width: 50%!important;
  2344. }
  2345. .organization.options input {
  2346. min-width: 300px;
  2347. }
  2348. .organization.profile #org-avatar {
  2349. width: 100px;
  2350. height: 100px;
  2351. margin-right: 15px;
  2352. }
  2353. .organization.profile #org-info .ui.header {
  2354. font-size: 36px;
  2355. margin-bottom: 0;
  2356. }
  2357. .organization.profile #org-info .desc {
  2358. font-size: 16px;
  2359. margin-bottom: 10px;
  2360. }
  2361. .organization.profile #org-info .meta .item {
  2362. display: inline-block;
  2363. margin-right: 10px;
  2364. }
  2365. .organization.profile #org-info .meta .item .icon {
  2366. margin-right: 5px;
  2367. }
  2368. .organization.profile .ui.top.header .ui.right {
  2369. margin-top: 0;
  2370. }
  2371. .organization.profile .teams .item {
  2372. padding: 10px 15px;
  2373. }
  2374. .organization.teams .members .ui.avatar,
  2375. .organization.profile .members .ui.avatar {
  2376. width: 48px;
  2377. height: 48px;
  2378. margin-right: 5px;
  2379. }
  2380. .organization.invite #invite-box {
  2381. margin: auto;
  2382. margin-top: 50px;
  2383. width: 500px !important;
  2384. }
  2385. .organization.invite #invite-box #search-user-box input {
  2386. margin-left: 0;
  2387. width: 300px;
  2388. }
  2389. .organization.invite #invite-box .ui.button {
  2390. margin-left: 5px;
  2391. margin-top: -3px;
  2392. }
  2393. .organization.members .list .item {
  2394. margin-left: 0;
  2395. margin-right: 0;
  2396. border-bottom: 1px solid #eee;
  2397. }
  2398. .organization.members .list .item .ui.avatar {
  2399. width: 48px;
  2400. height: 48px;
  2401. }
  2402. .organization.members .list .item .meta {
  2403. line-height: 24px;
  2404. }
  2405. .organization.teams .detail .item {
  2406. padding: 10px 15px;
  2407. }
  2408. .organization.teams .detail .item:not(:last-child) {
  2409. border-bottom: 1px solid #eee;
  2410. }
  2411. .organization.teams .repositories .item,
  2412. .organization.teams .members .item {
  2413. padding: 10px 20px;
  2414. line-height: 32px;
  2415. }
  2416. .organization.teams .repositories .item:not(:last-child),
  2417. .organization.teams .members .item:not(:last-child) {
  2418. border-bottom: 1px solid #DDD;
  2419. }
  2420. .organization.teams .repositories .item .button,
  2421. .organization.teams .members .item .button {
  2422. padding: 9px 10px;
  2423. }
  2424. .organization.teams #add-repo-form input,
  2425. .organization.teams #add-member-form input {
  2426. margin-left: 0;
  2427. }
  2428. .organization.teams #add-repo-form .ui.button,
  2429. .organization.teams #add-member-form .ui.button {
  2430. margin-left: 5px;
  2431. margin-top: -3px;
  2432. }
  2433. .user:not(.icon) {
  2434. padding-top: 15px;
  2435. padding-bottom: 80px;
  2436. }
  2437. .user.settings .list .item.ui.grid {
  2438. margin-top: 15px;
  2439. }
  2440. .user.settings .email.list .item:not(:first-child) {
  2441. border-top: 1px solid #eaeaea;
  2442. height: 50px;
  2443. }
  2444. .user.settings .email.list .item:not(:first-child) .button {
  2445. margin-top: -10px;
  2446. }
  2447. .user.profile .ui.card #profile-avatar {
  2448. height: 290px;
  2449. }
  2450. .user.profile .ui.card .username {
  2451. display: block;
  2452. }
  2453. .user.profile .ui.card .extra.content {
  2454. padding: 0;
  2455. }
  2456. .user.profile .ui.card .extra.content ul {
  2457. margin: 0;
  2458. padding: 0;
  2459. }
  2460. .user.profile .ui.card .extra.content ul li {
  2461. padding: 10px;
  2462. list-style: none;
  2463. }
  2464. .user.profile .ui.card .extra.content ul li:not(:last-child) {
  2465. border-bottom: 1px solid #eaeaea;
  2466. }
  2467. .user.profile .ui.card .extra.content ul li .octicon {
  2468. margin-left: 1px;
  2469. margin-right: 5px;
  2470. }
  2471. .user.profile .ui.card .extra.content ul li.follow .ui.button {
  2472. width: 100%;
  2473. }
  2474. .user.profile .ui.repository.list {
  2475. margin-top: 25px;
  2476. }
  2477. .user.followers .header.name {
  2478. font-size: 20px;
  2479. line-height: 24px;
  2480. vertical-align: middle;
  2481. }
  2482. .user.followers .follow .ui.button {
  2483. padding: 8px 15px;
  2484. }
  2485. .dashboard {
  2486. padding-top: 15px;
  2487. padding-bottom: 80px;
  2488. }
  2489. .dashboard.feeds .context.user.menu,
  2490. .dashboard.issues .context.user.menu {
  2491. z-index: 101;
  2492. min-width: 200px;
  2493. }
  2494. .dashboard.feeds .context.user.menu .ui.header,
  2495. .dashboard.issues .context.user.menu .ui.header {
  2496. font-size: 1rem;
  2497. text-transform: none;
  2498. }
  2499. .dashboard.feeds .filter.menu .item,
  2500. .dashboard.issues .filter.menu .item {
  2501. text-align: left;
  2502. }
  2503. .dashboard.feeds .filter.menu .item .text,
  2504. .dashboard.issues .filter.menu .item .text {
  2505. height: 16px;
  2506. vertical-align: middle;
  2507. }
  2508. .dashboard.feeds .filter.menu .item .text.truncate,
  2509. .dashboard.issues .filter.menu .item .text.truncate {
  2510. width: 85%;
  2511. }
  2512. .dashboard.feeds .filter.menu .item .floating.label,
  2513. .dashboard.issues .filter.menu .item .floating.label {
  2514. top: 7px;
  2515. left: 90%;
  2516. width: 15%;
  2517. }
  2518. .dashboard.feeds .filter.menu .jump.item,
  2519. .dashboard.issues .filter.menu .jump.item {
  2520. margin: 1px;
  2521. padding-right: 0;
  2522. }
  2523. .dashboard.feeds .filter.menu .menu,
  2524. .dashboard.issues .filter.menu .menu {
  2525. max-height: 300px;
  2526. overflow-x: auto;
  2527. right: 0!important;
  2528. left: auto!important;
  2529. }
  2530. .dashboard.feeds .ui.right .head.menu,
  2531. .dashboard.issues .ui.right .head.menu {
  2532. margin-top: -5px;
  2533. }
  2534. .dashboard.feeds .ui.right .head.menu .item.active,
  2535. .dashboard.issues .ui.right .head.menu .item.active {
  2536. color: #d9453d;
  2537. }
  2538. .feeds .news .ui.avatar {
  2539. margin-top: 13px;
  2540. }
  2541. .feeds .news p {
  2542. line-height: 1em;
  2543. }
  2544. .feeds .news .time-since {
  2545. font-size: 13px;
  2546. }
  2547. .feeds .news .issue.title {
  2548. line-height: 1.1em;
  2549. width: 80%;
  2550. }
  2551. .feeds .news .push.news .content ul {
  2552. font-size: 13px;
  2553. list-style: none;
  2554. padding-left: 10px;
  2555. }
  2556. .feeds .news .push.news .content ul img {
  2557. margin-bottom: -2px;
  2558. }
  2559. .feeds .news .push.news .content ul .text.truncate {
  2560. width: 80%;
  2561. margin-bottom: -5px;
  2562. }
  2563. .feeds .news .commit-id {
  2564. font-family: Consolas, monospace;
  2565. }
  2566. .feeds .news code {
  2567. padding: 1px;
  2568. font-size: 85%;
  2569. background-color: rgba(0, 0, 0, 0.04);
  2570. border-radius: 3px;
  2571. word-break: break-all;
  2572. }
  2573. .feeds .list .header .ui.label {
  2574. margin-top: -4px;
  2575. padding: 4px 5px;
  2576. font-weight: normal;
  2577. }
  2578. .feeds .list .header .plus.icon {
  2579. margin-top: 5px;
  2580. }
  2581. .feeds .list ul {
  2582. list-style: none;
  2583. margin: 0;
  2584. padding-left: 0;
  2585. }
  2586. .feeds .list ul li:not(:last-child) {
  2587. border-bottom: 1px solid #EAEAEA;
  2588. }
  2589. .feeds .list ul li.private {
  2590. background-color: #fcf8e9;
  2591. }
  2592. .feeds .list ul li a {
  2593. padding: 6px 1.2em;
  2594. display: block;
  2595. }
  2596. .feeds .list ul li a .octicon {
  2597. color: #888;
  2598. }
  2599. .feeds .list ul li a .octicon.rear {
  2600. font-size: 15px;
  2601. }
  2602. .feeds .list ul li a .star-num {
  2603. font-size: 12px;
  2604. }
  2605. .feeds .list .repo-owner-name-list .item-name {
  2606. max-width: 70%;
  2607. margin-bottom: -4px;
  2608. }
  2609. .feeds .list #collaborative-repo-list .owner-and-repo {
  2610. max-width: 80%;
  2611. margin-bottom: -5px;
  2612. }
  2613. .feeds .list #collaborative-repo-list .owner-name {
  2614. max-width: 120px;
  2615. margin-bottom: -5px;
  2616. }
  2617. .admin {
  2618. padding-top: 15px;
  2619. padding-bottom: 80px;
  2620. }
  2621. .admin .table.segment {
  2622. padding: 0;
  2623. font-size: 13px;
  2624. }
  2625. .admin .table.segment:not(.striped) {
  2626. padding-top: 5px;
  2627. }
  2628. .admin .table.segment:not(.striped) thead th:last-child {
  2629. padding-right: 5px !important;
  2630. }
  2631. .admin .table.segment th {
  2632. padding-top: 5px;
  2633. padding-bottom: 5px;
  2634. }
  2635. .admin .table.segment:not(.select) th:first-of-type,
  2636. .admin .table.segment:not(.select) td:first-of-type {
  2637. padding-left: 15px !important;
  2638. }
  2639. .admin .ui.header,
  2640. .admin .ui.segment {
  2641. box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  2642. }
  2643. .admin.user .email {
  2644. max-width: 200px;
  2645. }
  2646. .admin dl.admin-dl-horizontal {
  2647. padding: 20px;
  2648. margin: 0;
  2649. }
  2650. .admin dl.admin-dl-horizontal dd {
  2651. margin-left: 240px;
  2652. }
  2653. .admin dl.admin-dl-horizontal dt {
  2654. font-weight: bolder;
  2655. float: left;
  2656. width: 250px;
  2657. clear: left;
  2658. overflow: hidden;
  2659. text-overflow: ellipsis;
  2660. white-space: nowrap;
  2661. }
  2662. .admin.config #test-mail-btn {
  2663. margin-left: 5px;
  2664. }
  2665. .explore {
  2666. padding-top: 15px;
  2667. padding-bottom: 80px;
  2668. }
  2669. .explore .navbar .octicon {
  2670. width: 16px;
  2671. text-align: center;
  2672. }
  2673. .ui.repository.list .item {
  2674. padding-bottom: 25px;
  2675. }
  2676. .ui.repository.list .item:not(:first-child) {
  2677. border-top: 1px solid #eee;
  2678. padding-top: 25px;
  2679. }
  2680. .ui.repository.list .item .ui.header {
  2681. font-size: 1.5rem;
  2682. padding-bottom: 10px;
  2683. }
  2684. .ui.repository.list .item .ui.header .name {
  2685. word-break: break-all;
  2686. }
  2687. .ui.repository.list .item .ui.header .metas {
  2688. color: #888;
  2689. font-size: 14px;
  2690. font-weight: normal;
  2691. }
  2692. .ui.repository.list .item .ui.header .metas span:not(:last-child) {
  2693. margin-right: 5px;
  2694. }
  2695. .ui.repository.list .item .time {
  2696. font-size: 12px;
  2697. color: #808080;
  2698. }
  2699. .ui.user.list .item {
  2700. padding-bottom: 25px;
  2701. }
  2702. .ui.user.list .item:not(:first-child) {
  2703. border-top: 1px solid #eee;
  2704. padding-top: 25px;
  2705. }
  2706. .ui.user.list .item .ui.avatar.image {
  2707. width: 40px;
  2708. height: 40px;
  2709. }
  2710. .ui.user.list .item .description {
  2711. margin-top: 5px;
  2712. }
  2713. .ui.user.list .item .description .octicon:not(:first-child) {
  2714. margin-left: 5px;
  2715. }
  2716. .ui.user.list .item .description a {
  2717. color: #333;
  2718. }
  2719. .ui.user.list .item .description a:hover {
  2720. text-decoration: underline;
  2721. }