gogs.css 52 KB

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