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

gogs.css 62KB

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