gogs.css 62 KB

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