gogs.css 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700
  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. }
  1090. #repo-clone-help {
  1091. clear: both;
  1092. line-height: 48px;
  1093. }
  1094. #repo-clone-zip {
  1095. line-height: 48px;
  1096. }
  1097. #repo-clone-zip a {
  1098. cursor: pointer;
  1099. color: white;
  1100. overflow: visible;
  1101. padding: .6em 1.2em;
  1102. }
  1103. #repo-clone-zip .btn {
  1104. margin: 0 6px;
  1105. }
  1106. #repo-desc {
  1107. font-size: 1.2em;
  1108. }
  1109. #repo-desc .no-description {
  1110. color: #999;
  1111. }
  1112. #repo-sidebar-nav .label {
  1113. font-size: 12px;
  1114. line-height: 1.4em;
  1115. margin-top: 2px;
  1116. }
  1117. #repo-sidebar-nav i {
  1118. margin-right: 6px;
  1119. }
  1120. #repo-sidebar-mini {
  1121. margin-top: 6px;
  1122. width: 60px;
  1123. }
  1124. #repo-sidebar-mini li {
  1125. margin-bottom: 4px;
  1126. }
  1127. #repo-sidebar-mini li > a {
  1128. position: relative;
  1129. padding-left: 12px;
  1130. width: 24px;
  1131. text-align: center;
  1132. }
  1133. #repo-sidebar-mini li > a > i.octicon {
  1134. font-size: 21px;
  1135. }
  1136. #repo-sidebar-mini .num {
  1137. position: absolute;
  1138. font-size: 12px;
  1139. top: 0;
  1140. left: 36px;
  1141. padding: 0 2px;
  1142. min-width: 16px;
  1143. height: 16px;
  1144. text-align: center;
  1145. line-height: 16px;
  1146. border-radius: 4px;
  1147. opacity: 0.7;
  1148. -webkit-transform: scale(0.9);
  1149. font-weight: bold;
  1150. }
  1151. #repo-file-nav {
  1152. padding: .6em 0 1em 0;
  1153. }
  1154. #repo-file-nav > li > a {
  1155. padding-left: 0;
  1156. }
  1157. #repo-file-nav > li > a:hover {
  1158. background-color: transparent;
  1159. }
  1160. #repo-file-nav li.repo-jump > a {
  1161. padding-right: 0;
  1162. }
  1163. #repo-file-nav li.repo-jump > a .btn {
  1164. margin-left: -1px;
  1165. }
  1166. #repo-branch-switch > a .btn {
  1167. padding-right: 30px;
  1168. }
  1169. #repo-branch-switch > a:after {
  1170. position: absolute;
  1171. top: 12px;
  1172. right: 30px;
  1173. margin-left: 0;
  1174. color: #444444;
  1175. }
  1176. #repo-branch-switch > .drop-down {
  1177. top: 40px;
  1178. left: 0;
  1179. }
  1180. #repo-branch-filter-ipt {
  1181. width: 100%;
  1182. border-left: none;
  1183. border-right: none;
  1184. box-sizing: border-box;
  1185. }
  1186. #repo-branch-tag .tab-nav {
  1187. border-bottom: 1px solid #EAEAEA;
  1188. }
  1189. #repo-branch-tag .tab-nav a {
  1190. padding: .3em .8em;
  1191. }
  1192. #repo-branch-tag .tab-nav .js-tab-nav-show {
  1193. background-color: #EEE;
  1194. font-weight: bold;
  1195. }
  1196. #repo-branch-tag .switching-list {
  1197. max-height: 300px;
  1198. overflow-y: auto;
  1199. }
  1200. #repo-branch-list li i,
  1201. #repo-tag-list li i {
  1202. margin-right: 12px;
  1203. opacity: 0;
  1204. }
  1205. #repo-branch-list li.checked i,
  1206. #repo-tag-list li.checked i {
  1207. opacity: 1;
  1208. }
  1209. #repo-bread .bread {
  1210. padding-right: 0;
  1211. font-size: 16px;
  1212. font-weight: bold;
  1213. }
  1214. #repo-main {
  1215. padding-right: 40px;
  1216. box-sizing: border-box;
  1217. }
  1218. #repo-files-table {
  1219. margin-bottom: 20px;
  1220. }
  1221. #repo-files-table th,
  1222. #repo-files-table td {
  1223. text-align: left;
  1224. line-height: 32px;
  1225. }
  1226. #repo-files-table td.icon {
  1227. width: 16px;
  1228. padding-right: .1em;
  1229. padding-left: 1em;
  1230. }
  1231. #repo-files-table td.name {
  1232. max-width: 120px;
  1233. }
  1234. #repo-files-table td.name .text-truncate {
  1235. max-width: 100%;
  1236. }
  1237. #repo-files-table td.age {
  1238. max-width: 120px;
  1239. text-align: right;
  1240. }
  1241. #repo-files-table td.msg {
  1242. max-width: 440px;
  1243. }
  1244. #repo-files-table td.msg .text-truncate {
  1245. max-width: 100%;
  1246. }
  1247. #repo-files-table td.age,
  1248. #repo-files-table td.size,
  1249. #repo-files-table td.msg a {
  1250. color: #888;
  1251. }
  1252. #repo-files-table td.msg a:hover {
  1253. color: #428BCA;
  1254. text-decoration: underline;
  1255. }
  1256. #repo-files-table td.message .text-truncate {
  1257. max-width: 360px;
  1258. }
  1259. #repo-files-table tbody {
  1260. background-color: #FFF;
  1261. }
  1262. #repo-files-table tbody tr:hover {
  1263. background-color: #ffffEE;
  1264. }
  1265. #repo-files-table thead {
  1266. background-color: #F0F0F0;
  1267. }
  1268. #repo-files-table thead .author a {
  1269. margin: 0 .4em;
  1270. }
  1271. #repo-files-table thead .last-commit strong {
  1272. color: #444;
  1273. }
  1274. #repo-files-table thead .last-commit .text-truncate {
  1275. max-width: 440px;
  1276. margin-left: .4em;
  1277. }
  1278. #repo-files-table thead .last-commit .text-truncate,
  1279. #repo-files-table thead .age {
  1280. font-weight: normal;
  1281. color: #888;
  1282. }
  1283. #repo-readme,
  1284. #repo-read-file {
  1285. margin-bottom: 80px;
  1286. }
  1287. #repo-bare-start {
  1288. margin-bottom: 100px;
  1289. }
  1290. #repo-bare-start .panel-content {
  1291. background-color: #FFF;
  1292. }
  1293. #repo-bare-start pre {
  1294. margin: 0 40px;
  1295. padding: 6px 10px;
  1296. border: 1px solid #ddd;
  1297. background: #f8f8f8;
  1298. }
  1299. .repo-bare #repo-bare-start h2 {
  1300. margin-top: 30px;
  1301. margin-bottom: 24px;
  1302. }
  1303. .repo-bare #repo-header-meta {
  1304. display: none;
  1305. }
  1306. .repo-bare #repo-clone-ssh {
  1307. margin-left: 200px;
  1308. }
  1309. .repo-bare #repo-clone-copy {
  1310. margin-right: 200px;
  1311. }
  1312. .repo-bare #repo-clone-help {
  1313. clear: both;
  1314. width: 100%;
  1315. }
  1316. .repo-bare #repo-clone-url {
  1317. width: 520px;
  1318. }
  1319. /* repository create */
  1320. #team-create-form,
  1321. #repo-migrate-form,
  1322. #repo-create-form {
  1323. width: 800px;
  1324. margin: 60px auto auto auto;
  1325. background: white;
  1326. }
  1327. #team-create-form h2,
  1328. #repo-migrate-form h2,
  1329. #repo-create-form h2 {
  1330. margin: .5em 1em;
  1331. }
  1332. #team-create-form .field,
  1333. #repo-migrate-form .field,
  1334. #repo-create-form .field {
  1335. margin: 1.2em 0 2em 0;
  1336. }
  1337. #team-create-form .ipt,
  1338. #repo-migrate-form .ipt,
  1339. #repo-create-form .ipt {
  1340. width: 540px;
  1341. }
  1342. #team-create-form textarea,
  1343. #repo-migrate-form textarea,
  1344. #repo-create-form textarea {
  1345. height: 120px;
  1346. }
  1347. #team-create-form .avatar,
  1348. #repo-migrate-form .avatar,
  1349. #repo-create-form .avatar {
  1350. vertical-align: middle;
  1351. margin-right: .6em;
  1352. width: 28px;
  1353. height: 28px;
  1354. }
  1355. #team-create-form:hover,
  1356. #repo-migrate-form:hover,
  1357. #repo-create-form:hover {
  1358. box-shadow: 0px 0px 6px #CCC;
  1359. }
  1360. #repo-create-cancel {
  1361. margin-left: 4em;
  1362. }
  1363. #release-new-target-branch-list,
  1364. #repo-create-owner-list {
  1365. top: 30px;
  1366. left: 0;
  1367. width: auto;
  1368. max-width: 300px;
  1369. }
  1370. #release-new-target-branch-list .octicon,
  1371. #repo-create-owner-list .octicon {
  1372. margin-right: 12px;
  1373. opacity: 0;
  1374. }
  1375. #release-new-target-branch-list .avatar,
  1376. #repo-create-owner-list .avatar {
  1377. width: 20px;
  1378. height: 20px;
  1379. }
  1380. #release-new-target-branch-list li,
  1381. #repo-create-owner-list li {
  1382. white-space: nowrap;
  1383. }
  1384. #release-new-target-branch-list li.checked .octicon,
  1385. #repo-create-owner-list li.checked .octicon {
  1386. opacity: 1;
  1387. }
  1388. #release-new-target-branch-list li a,
  1389. #repo-create-owner-list li a {
  1390. text-overflow: ellipsis;
  1391. -o-text-overflow: ellipsis;
  1392. overflow: hidden;
  1393. }
  1394. #release-new-target-branch-list {
  1395. margin-top: -1px;
  1396. min-width: 150px;
  1397. }
  1398. #release-new-title {
  1399. margin-top: 10px;
  1400. }
  1401. #release-new-content {
  1402. width: 100%;
  1403. }
  1404. #release-preview-btn .btn {
  1405. border-left: 0;
  1406. }
  1407. #release-preview.markdown {
  1408. margin-top: 5px;
  1409. background-color: transparent;
  1410. }
  1411. .file-name {
  1412. margin-left: 1em;
  1413. }
  1414. .file-size {
  1415. font-size: 13px;
  1416. color: #888;
  1417. margin-left: 1em;
  1418. }
  1419. .code-view {
  1420. overflow: auto;
  1421. overflow-x: auto;
  1422. overflow-y: hidden;
  1423. background: white;
  1424. }
  1425. .code-view .view-raw {
  1426. min-height: 40px;
  1427. text-align: center;
  1428. padding-top: 20px;
  1429. }
  1430. .code-view .view-raw .btn {
  1431. font-size: 1.05em;
  1432. line-height: 16px;
  1433. padding: 6px 8px;
  1434. }
  1435. .code-view table {
  1436. width: 100%;
  1437. }
  1438. .code-view table td {
  1439. padding: 0;
  1440. }
  1441. .code-view .lines-num {
  1442. vertical-align: top;
  1443. text-align: right;
  1444. color: #999;
  1445. background: #f5f5f5;
  1446. width: 1%;
  1447. }
  1448. .code-view .lines-num span {
  1449. font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  1450. line-height: 20px;
  1451. padding: 0 10px;
  1452. cursor: pointer;
  1453. display: block;
  1454. }
  1455. .code-view .lines-code > pre {
  1456. border: none;
  1457. border-left: 1px solid #ddd;
  1458. }
  1459. .code-view .lines-code > pre > ol.linenums > li {
  1460. padding: 0 10px;
  1461. line-height: 20px;
  1462. }
  1463. .code-view .lines-code > pre > ol.linenums > li.active {
  1464. background: #ffffdd;
  1465. }
  1466. .repo-setting-zone {
  1467. padding: 30px;
  1468. }
  1469. #team-repositories-list,
  1470. #team-members-list,
  1471. #repo-collab-list {
  1472. list-style: none;
  1473. padding: 10px 0 5px 0;
  1474. }
  1475. #team-repositories-list li.collab,
  1476. #team-members-list li.collab,
  1477. #repo-collab-list li.collab {
  1478. clear: both;
  1479. height: 50px;
  1480. padding: 0 15px 0 15px;
  1481. }
  1482. #team-repositories-list a.member,
  1483. #team-members-list a.member,
  1484. #repo-collab-list a.member {
  1485. color: #444;
  1486. height: 50px;
  1487. line-height: 50px;
  1488. }
  1489. #team-repositories-list a.member:hover,
  1490. #team-members-list a.member:hover,
  1491. #repo-collab-list a.member:hover {
  1492. color: #4183C4;
  1493. }
  1494. #team-repositories-list .avatar,
  1495. #team-members-list .avatar,
  1496. #repo-collab-list .avatar {
  1497. margin-right: 1em;
  1498. width: 40px;
  1499. }
  1500. #team-repositories-list .remove-collab,
  1501. #team-members-list .remove-collab,
  1502. #repo-collab-list .remove-collab {
  1503. color: #DD4B39;
  1504. }
  1505. .repo-user-list-block {
  1506. position: relative;
  1507. top: 5px;
  1508. }
  1509. .setting-list {
  1510. width: 100%;
  1511. list-style: none;
  1512. }
  1513. #commits-list {
  1514. padding-top: 20px;
  1515. }
  1516. #commits-list h4 {
  1517. line-height: 30px;
  1518. margin-bottom: 0;
  1519. }
  1520. .commit-list th {
  1521. background-color: #FFF;
  1522. line-height: 28px !important;
  1523. }
  1524. .commit-list .date {
  1525. width: 120px;
  1526. }
  1527. .commit-list .author {
  1528. padding-left: 20px;
  1529. min-width: 180px;
  1530. }
  1531. .commit-list .author img {
  1532. margin-top: -4px;
  1533. }
  1534. .commit-list .sha a {
  1535. font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace;
  1536. font-size: 14px;
  1537. }
  1538. .commit-list .message {
  1539. width: 60%;
  1540. }
  1541. .commit-list .message span {
  1542. max-width: 500px;
  1543. }
  1544. .commit-message {
  1545. white-space: pre-wrap;
  1546. }
  1547. .diff-head-box {
  1548. margin-top: 10px;
  1549. }
  1550. .diff-head-box .panel-body {
  1551. padding: 10px 15px 5px 10px;
  1552. }
  1553. .diff-head-box .author img {
  1554. margin-top: -7px;
  1555. }
  1556. .diff-detail-box {
  1557. margin: 15px 0;
  1558. line-height: 30px;
  1559. }
  1560. .diff-detail-box ol {
  1561. clear: both;
  1562. padding-left: 0;
  1563. margin-bottom: 28px;
  1564. }
  1565. .diff-detail-box ol li {
  1566. list-style: none;
  1567. padding-bottom: 4px;
  1568. margin-bottom: 4px;
  1569. border-bottom: 1px dashed #DDD;
  1570. padding-left: 6px;
  1571. }
  1572. .diff-detail-box span.status {
  1573. display: inline-block;
  1574. width: 12px;
  1575. height: 12px;
  1576. margin-right: 8px;
  1577. vertical-align: middle;
  1578. }
  1579. .diff-detail-box span.status.modify {
  1580. background-color: #f0db88;
  1581. }
  1582. .diff-detail-box span.status.add {
  1583. background-color: #b4e2b4;
  1584. }
  1585. .diff-detail-box span.status.del {
  1586. background-color: #e9aeae;
  1587. }
  1588. .diff-detail-box span.status.rename {
  1589. background-color: #dad8ff;
  1590. }
  1591. .diff-box .count {
  1592. margin-right: 12px;
  1593. }
  1594. .diff-box .count .bar {
  1595. background-color: #e75316;
  1596. height: 12px;
  1597. width: 40px;
  1598. display: inline-block;
  1599. margin: 2px 4px 0 4px;
  1600. vertical-align: text-top;
  1601. }
  1602. .diff-box .count .bar .add {
  1603. background-color: #77c64a;
  1604. height: 12px;
  1605. }
  1606. .diff-box .file {
  1607. color: #888;
  1608. }
  1609. .diff-box .panel-header {
  1610. font-size: 14px;
  1611. }
  1612. .diff-file-box .file-body.file-code .lines-num {
  1613. text-align: right;
  1614. color: #999;
  1615. background: #fafafa;
  1616. width: 1%;
  1617. }
  1618. .diff-file-box .file-body.file-code .lines-num-old {
  1619. border-right: 1px solid #DDD;
  1620. }
  1621. .diff-file-box .code-diff tbody tr.tag-code td,
  1622. .diff-file-box .code-diff tbody tr.tag-code pre {
  1623. background-color: #E0E0E0 !important;
  1624. border-color: #ADADAD !important;
  1625. }
  1626. .diff-file-box .code-diff tbody tr.tag-code td.selected-line,
  1627. .diff-file-box .code-diff tbody tr.tag-code td.selected-line pre {
  1628. background-color: #ffffdd !important;
  1629. }
  1630. .diff-file-box .code-diff tbody tr.same-code td.selected-line,
  1631. .diff-file-box .code-diff tbody tr.same-code td.selected-line pre {
  1632. background-color: #ffffdd !important;
  1633. }
  1634. .diff-file-box .code-diff tbody tr.del-code td,
  1635. .diff-file-box .code-diff tbody tr.del-code pre {
  1636. background-color: #ffe2dd !important;
  1637. border-color: #e9aeae !important;
  1638. }
  1639. .diff-file-box .code-diff tbody tr.del-code td.selected-line,
  1640. .diff-file-box .code-diff tbody tr.del-code td.selected-line pre {
  1641. background-color: #ffffdd !important;
  1642. }
  1643. .diff-file-box .code-diff tbody tr.add-code td,
  1644. .diff-file-box .code-diff tbody tr.add-code pre {
  1645. background-color: #d1ffd6 !important;
  1646. border-color: #b4e2b4 !important;
  1647. }
  1648. .diff-file-box .code-diff tbody tr.add-code td.selected-line,
  1649. .diff-file-box .code-diff tbody tr.add-code td.selected-line pre {
  1650. background-color: #ffffdd !important;
  1651. }
  1652. .diff-file-box .code-diff tbody tr:hover td,
  1653. .diff-file-box .code-diff tbody tr:hover pre {
  1654. background-color: #FFF8D2 !important;
  1655. border-color: #F0DB88 !important;
  1656. }
  1657. .compare-head-box {
  1658. margin-top: 10px;
  1659. }
  1660. .compare-head-box .compare {
  1661. padding: 0 15px 15px 15px;
  1662. }
  1663. .fork-flag {
  1664. display: block;
  1665. font-size: 11px;
  1666. line-height: 10px;
  1667. white-space: nowrap;
  1668. margin-left: 44px;
  1669. margin-top: -15px;
  1670. }
  1671. #release h4 {
  1672. font-size: 18px;
  1673. }
  1674. #release h4 small {
  1675. font-weight: 400;
  1676. line-height: 1;
  1677. color: #999;
  1678. }
  1679. #release #release-head {
  1680. margin-top: 0;
  1681. margin-bottom: 0;
  1682. padding-bottom: 20px;
  1683. border-bottom: 1px solid #DDD;
  1684. }
  1685. #release #release-head .btn {
  1686. margin-left: 10px;
  1687. }
  1688. #release .release-item > div {
  1689. padding-top: 20px;
  1690. padding-bottom: 20px;
  1691. }
  1692. #release .release-item .label-green:hover {
  1693. background-color: #65ad4e;
  1694. }
  1695. #release .release-item .release-meta {
  1696. position: relative;
  1697. float: left;
  1698. padding-right: 15px;
  1699. }
  1700. #release .release-item .tag,
  1701. #release .release-item .commit {
  1702. display: block;
  1703. margin-top: 12px;
  1704. line-height: 20px;
  1705. }
  1706. #release .release-item .release-detail {
  1707. margin-top: -1px;
  1708. border-left: 1px solid #DDD;
  1709. position: relative;
  1710. float: left;
  1711. padding-left: 15px;
  1712. }
  1713. #release .release-item .title {
  1714. line-height: 25px;
  1715. margin-top: 0;
  1716. }
  1717. #release .release-item p.info {
  1718. line-height: 20px;
  1719. color: #666;
  1720. margin-bottom: 15px;
  1721. }
  1722. #release .release-item p.info > * {
  1723. margin-right: 10px;
  1724. }
  1725. #release .release-item .author img {
  1726. margin-top: -3px;
  1727. }
  1728. #release .release-item div.desc {
  1729. margin-bottom: 25px;
  1730. }
  1731. #release .release-item div.desc.markdown {
  1732. background-color: transparent;
  1733. }
  1734. #release .release-item .download a {
  1735. margin-right: 10px;
  1736. }
  1737. #release .release-item .dot {
  1738. width: 9px;
  1739. height: 9px;
  1740. background-color: #ccc;
  1741. z-index: 999;
  1742. position: absolute;
  1743. display: block;
  1744. left: -6px;
  1745. top: 27px;
  1746. border-radius: 6px;
  1747. border: 1px solid #FFF;
  1748. }
  1749. #release #release-new-form {
  1750. padding-top: 15px;
  1751. }
  1752. #admin-wrapper,
  1753. #setting-wrapper {
  1754. padding-bottom: 100px;
  1755. }
  1756. #setting-menu {
  1757. box-sizing: border-box;
  1758. }
  1759. #setting-menu li > a {
  1760. border-left: 2px solid #FFF;
  1761. background-color: #FFF;
  1762. }
  1763. #setting-menu li:hover {
  1764. border-color: #EAEAEA;
  1765. }
  1766. #setting-menu li:hover a {
  1767. border-left: 2px solid #EFEFEF;
  1768. background-color: #EFEFEF !important;
  1769. color: #000 !important;
  1770. }
  1771. #setting-menu li.current a {
  1772. color: #000 !important;
  1773. font-weight: bold;
  1774. border-left: 2px solid #d26911;
  1775. }
  1776. .setting-content {
  1777. margin-left: 32px;
  1778. }
  1779. #auth-setting-form,
  1780. #org-setting-form,
  1781. #repo-setting-form,
  1782. #user-profile-form,
  1783. #add-email-form,
  1784. .repo-setting-form {
  1785. background-color: #FFF;
  1786. padding: 30px 0;
  1787. }
  1788. #auth-setting-form textarea,
  1789. #org-setting-form textarea,
  1790. #repo-setting-form textarea,
  1791. #user-profile-form textarea,
  1792. #add-email-form textarea,
  1793. .repo-setting-form textarea {
  1794. margin-left: 4px;
  1795. height: 100px;
  1796. }
  1797. #auth-setting-form label,
  1798. #org-setting-form label,
  1799. #repo-setting-form label,
  1800. #user-profile-form label,
  1801. #add-email-form label,
  1802. .repo-setting-form label,
  1803. #auth-setting-form .form-label,
  1804. #org-setting-form .form-label,
  1805. #repo-setting-form .form-label,
  1806. #user-profile-form .form-label,
  1807. #add-email-form .form-label,
  1808. .repo-setting-form .form-label {
  1809. width: 240px;
  1810. }
  1811. #auth-setting-form .ipt,
  1812. #org-setting-form .ipt,
  1813. #repo-setting-form .ipt,
  1814. #user-profile-form .ipt,
  1815. #add-email-form .ipt,
  1816. .repo-setting-form .ipt {
  1817. width: 360px;
  1818. }
  1819. #auth-setting-form .field,
  1820. #org-setting-form .field,
  1821. #repo-setting-form .field,
  1822. #user-profile-form .field,
  1823. #add-email-form .field,
  1824. .repo-setting-form .field {
  1825. margin-bottom: 24px;
  1826. }
  1827. #hook-type {
  1828. padding: 10px 0 0 0;
  1829. background-color: #fff;
  1830. }
  1831. #hook-type .field {
  1832. margin-bottom: 24px;
  1833. }
  1834. #hook-type label {
  1835. width: 240px;
  1836. }
  1837. #repo-hooks-panel,
  1838. #repo-hooks-history-panel,
  1839. #user-social-panel,
  1840. #user-applications-panel,
  1841. #user-email-panel,
  1842. #user-ssh-panel {
  1843. margin-bottom: 20px;
  1844. }
  1845. #repo-hooks-panel .setting-list,
  1846. #repo-hooks-history-panel .setting-list,
  1847. #user-social-panel .setting-list,
  1848. #user-applications-panel .setting-list,
  1849. #user-email-panel .setting-list,
  1850. #user-ssh-panel .setting-list {
  1851. background-color: #FFF;
  1852. }
  1853. #repo-hooks-panel .setting-list li,
  1854. #repo-hooks-history-panel .setting-list li,
  1855. #user-social-panel .setting-list li,
  1856. #user-applications-panel .setting-list li,
  1857. #user-email-panel .setting-list li,
  1858. #user-ssh-panel .setting-list li {
  1859. padding: 8px 20px;
  1860. border-bottom: 1px solid #eaeaea;
  1861. }
  1862. #repo-hooks-panel .setting-list li.ssh:hover,
  1863. #repo-hooks-history-panel .setting-list li.ssh:hover,
  1864. #user-social-panel .setting-list li.ssh:hover,
  1865. #user-applications-panel .setting-list li.ssh:hover,
  1866. #user-email-panel .setting-list li.ssh:hover,
  1867. #user-ssh-panel .setting-list li.ssh:hover {
  1868. background-color: #ffffEE;
  1869. }
  1870. #repo-hooks-panel .setting-list li i,
  1871. #repo-hooks-history-panel .setting-list li i,
  1872. #user-social-panel .setting-list li i,
  1873. #user-applications-panel .setting-list li i,
  1874. #user-email-panel .setting-list li i,
  1875. #user-ssh-panel .setting-list li i {
  1876. padding-right: 5px;
  1877. }
  1878. #repo-hooks-panel .active-icon,
  1879. #repo-hooks-history-panel .active-icon,
  1880. #user-social-panel .active-icon,
  1881. #user-applications-panel .active-icon,
  1882. #user-email-panel .active-icon,
  1883. #user-ssh-panel .active-icon {
  1884. width: 10px;
  1885. height: 10px;
  1886. border-radius: 6px;
  1887. padding: 0;
  1888. margin-right: 20px;
  1889. margin-top: 10px;
  1890. }
  1891. #repo-hooks-panel .ssh-content,
  1892. #repo-hooks-history-panel .ssh-content,
  1893. #user-social-panel .ssh-content,
  1894. #user-applications-panel .ssh-content,
  1895. #user-email-panel .ssh-content,
  1896. #user-ssh-panel .ssh-content {
  1897. margin-left: 24px;
  1898. }
  1899. #repo-hooks-panel .ssh-content .octicon,
  1900. #repo-hooks-history-panel .ssh-content .octicon,
  1901. #user-social-panel .ssh-content .octicon,
  1902. #user-applications-panel .ssh-content .octicon,
  1903. #user-email-panel .ssh-content .octicon,
  1904. #user-ssh-panel .ssh-content .octicon {
  1905. margin-right: 4px;
  1906. }
  1907. #repo-hooks-panel .ssh-content .print,
  1908. #repo-hooks-history-panel .ssh-content .print,
  1909. #user-social-panel .ssh-content .print,
  1910. #user-applications-panel .ssh-content .print,
  1911. #user-email-panel .ssh-content .print,
  1912. #user-ssh-panel .ssh-content .print,
  1913. #repo-hooks-panel .ssh-content .access,
  1914. #repo-hooks-history-panel .ssh-content .access,
  1915. #user-social-panel .ssh-content .access,
  1916. #user-applications-panel .ssh-content .access,
  1917. #user-email-panel .ssh-content .access,
  1918. #user-ssh-panel .ssh-content .access,
  1919. #repo-hooks-panel .ssh-content .activity,
  1920. #repo-hooks-history-panel .ssh-content .activity,
  1921. #user-social-panel .ssh-content .activity,
  1922. #user-applications-panel .ssh-content .activity,
  1923. #user-email-panel .ssh-content .activity,
  1924. #user-ssh-panel .ssh-content .activity {
  1925. color: #888;
  1926. }
  1927. #repo-hooks-panel .ssh-content .access,
  1928. #repo-hooks-history-panel .ssh-content .access,
  1929. #user-social-panel .ssh-content .access,
  1930. #user-applications-panel .ssh-content .access,
  1931. #user-email-panel .ssh-content .access,
  1932. #user-ssh-panel .ssh-content .access {
  1933. max-width: 500px;
  1934. }
  1935. #repo-hooks-panel .ssh-btn,
  1936. #repo-hooks-history-panel .ssh-btn,
  1937. #user-social-panel .ssh-btn,
  1938. #user-applications-panel .ssh-btn,
  1939. #user-email-panel .ssh-btn,
  1940. #user-ssh-panel .ssh-btn {
  1941. margin-top: 6px;
  1942. }
  1943. .form-settings-add .panel-body {
  1944. background-color: #FFF;
  1945. padding: 30px 0;
  1946. }
  1947. .form-settings-add .ipt {
  1948. width: 500px;
  1949. }
  1950. .form-settings-add textarea {
  1951. height: 120px;
  1952. margin-left: 3px;
  1953. }
  1954. .form-settings-add .field {
  1955. margin-bottom: 24px;
  1956. }
  1957. .pr-main {
  1958. margin-right: 100px;
  1959. }
  1960. .pr-sidebar {
  1961. border-left: 1px solid #DDD;
  1962. box-sizing: border-box;
  1963. position: absolute;
  1964. right: 0;
  1965. top: 12px;
  1966. }
  1967. .pr-title {
  1968. padding: 4px 0;
  1969. }
  1970. .pr-title .pr-num {
  1971. font-weight: normal;
  1972. color: #888;
  1973. }
  1974. .pr-meta {
  1975. color: #888;
  1976. padding: 4px 0 8px 0;
  1977. }
  1978. .pr-meta .pr-author {
  1979. margin: 0 8px;
  1980. color: #444;
  1981. }
  1982. .pr-meta .pr-author:hover {
  1983. text-decoration: underline;
  1984. }
  1985. .pr-meta .pr-branch {
  1986. margin: 0 4px;
  1987. font-size: 12px;
  1988. padding: 4px 6px;
  1989. }
  1990. .pr-nav {
  1991. border-bottom: 1px solid #DDD;
  1992. margin-top: 16px;
  1993. margin-bottom: 16px;
  1994. }
  1995. .pr-nav .octicon {
  1996. margin-right: 4px;
  1997. }
  1998. .pr-nav li > a {
  1999. padding: 3px 9px !important;
  2000. border: 1px solid transparent;
  2001. border-bottom: none;
  2002. border-top-left-radius: .2em;
  2003. border-top-right-radius: .2em;
  2004. }
  2005. .pr-nav li > a .label {
  2006. padding: 1px 5px;
  2007. font-size: 12px;
  2008. margin-left: 4px;
  2009. }
  2010. .pr-nav li.js-tab-nav-show > a {
  2011. background-color: #FFF;
  2012. border-color: #E6E6E6;
  2013. }
  2014. .diff-bar .diff-add {
  2015. color: #65ad4e;
  2016. }
  2017. .diff-bar .diff-delete {
  2018. color: #d9453d;
  2019. }
  2020. .diff-bar .diff-status {
  2021. width: 50px;
  2022. background-color: #d9453d;
  2023. height: 10px;
  2024. margin-top: 7px;
  2025. margin-left: 4px;
  2026. margin-right: 4px;
  2027. border-radius: .2em;
  2028. }
  2029. .diff-bar .diff-status-inner {
  2030. width: 45%;
  2031. background-color: #65ad4e;
  2032. height: 10px;
  2033. border-top-left-radius: .2em;
  2034. border-bottom-left-radius: .2em;
  2035. }
  2036. #pr-commit,
  2037. #pr-file-diff,
  2038. #issue-add-comment-preview {
  2039. display: none;
  2040. }
  2041. #pr-conversation-list {
  2042. padding-right: 30px;
  2043. box-sizing: border-box;
  2044. }
  2045. .issue-comment,
  2046. .issue-commit,
  2047. .issue-line,
  2048. .issue-merge,
  2049. .issue-add-comment {
  2050. margin-bottom: 24px;
  2051. }
  2052. .issue-comment .author-avatar img {
  2053. margin-right: 12px;
  2054. }
  2055. .issue-comment .panel {
  2056. margin-left: 60px;
  2057. margin-top: -40px;
  2058. }
  2059. .issue-comment .panel-header {
  2060. font-size: 13px;
  2061. }
  2062. .issue-comment .author-name {
  2063. font-weight: bold;
  2064. }
  2065. .issue-comment .date {
  2066. margin-left: 4px;
  2067. font-style: italic;
  2068. color: #888;
  2069. }
  2070. .issue-comment .action > * {
  2071. margin-left: 4px;
  2072. font-size: 12px;
  2073. }
  2074. .issue-comment .action i {
  2075. font-size: 13px;
  2076. }
  2077. .issue-commit {
  2078. line-height: 32px;
  2079. }
  2080. .issue-commit i,
  2081. .issue-commit .author-avatar img {
  2082. margin-right: 16px;
  2083. }
  2084. .issue-commit .sha {
  2085. margin-left: 24px;
  2086. }
  2087. .issue-commit .message {
  2088. display: block;
  2089. margin-left: 88px;
  2090. padding-top: 4px;
  2091. line-height: 24px;
  2092. }
  2093. .issue-merge .ico {
  2094. width: 40px;
  2095. height: 40px;
  2096. text-align: center;
  2097. color: #FFF;
  2098. margin-right: 12px;
  2099. }
  2100. .issue-merge .ico i {
  2101. margin-top: 8px;
  2102. font-size: 24px;
  2103. }
  2104. .issue-merge .panel {
  2105. margin-left: 60px;
  2106. margin-top: -40px;
  2107. }
  2108. .issue-merge .panel-header {
  2109. font-size: 13px;
  2110. }
  2111. .issue-merge-ok .ico {
  2112. background-color: #65AD4E;
  2113. }
  2114. .issue-merge-ok .panel,
  2115. .issue-merge-ok .panel-content,
  2116. .issue-merge-ok .panel-header {
  2117. border-color: #65AD4E;
  2118. background-color: #FFF;
  2119. }
  2120. .issue-merge-ok .panel-header {
  2121. color: #508a3e;
  2122. }
  2123. .issue-line {
  2124. height: 4px;
  2125. background-color: #E6E6E6;
  2126. }
  2127. .issue-add-comment .panel {
  2128. margin-left: 60px;
  2129. margin-top: -40px;
  2130. }
  2131. .issue-add-comment .panel-header {
  2132. font-size: 13px;
  2133. padding-bottom: 0;
  2134. }
  2135. .issue-add-comment .add-nav > li > a {
  2136. padding: 4px 12px;
  2137. color: #444;
  2138. border: 1px solid #CCC;
  2139. margin-bottom: -1px;
  2140. font-size: 14px;
  2141. border-top-left-radius: .3em;
  2142. border-top-right-radius: .3em;
  2143. }
  2144. .issue-add-comment .add-nav > li > a:hover {
  2145. background-color: #FFF;
  2146. }
  2147. .issue-add-comment .add-nav > li.js-tab-nav-show > a {
  2148. background-color: #FFF;
  2149. }
  2150. textarea#issue-add-content {
  2151. width: 100%;
  2152. box-sizing: border-box;
  2153. height: 120px;
  2154. resize: vertical;
  2155. }
  2156. #issue-list-nav {
  2157. border-bottom: 1px solid #DDD;
  2158. padding-bottom: 12px;
  2159. }
  2160. #issue-list-nav li > a {
  2161. font-size: 13px;
  2162. font-weight: bold;
  2163. padding: .2em .8em;
  2164. }
  2165. #issue-list-nav li.current > a {
  2166. background-color: #0079bc;
  2167. color: #FAFAFA;
  2168. }
  2169. #issue-list-nav li.right {
  2170. margin-left: 4px;
  2171. }
  2172. #issue-new > a,
  2173. #label-new > a,
  2174. #milestone-new > a {
  2175. padding: 0 !important;
  2176. }
  2177. #issue-new > a button,
  2178. #label-new > a button,
  2179. #milestone-new > a button {
  2180. height: 29px;
  2181. }
  2182. #issue-list-menu {
  2183. padding: 16px 0 12px 0;
  2184. border-bottom: 1px solid #BBB;
  2185. margin-bottom: 12px;
  2186. }
  2187. #issue-list-menu .mark a {
  2188. color: #AAA;
  2189. }
  2190. #issue-list-menu .mark a:hover {
  2191. color: #444;
  2192. }
  2193. #issue-list-menu .mark.hover a {
  2194. color: #222;
  2195. font-weight: bold;
  2196. }
  2197. #issue-list-menu > .left .mark {
  2198. margin-right: 12px;
  2199. }
  2200. #issue-list-menu > .right .mark {
  2201. margin-left: 12px;
  2202. }
  2203. #issue-list .item,
  2204. #pull-list .item {
  2205. position: relative;
  2206. padding-bottom: 12px;
  2207. margin-bottom: 12px;
  2208. border-bottom: 1px dashed #AAA;
  2209. }
  2210. #issue-list .item .title > .title-text,
  2211. #pull-list .item .title > .title-text {
  2212. color: #444;
  2213. font-size: 15px;
  2214. margin: 0 6px;
  2215. }
  2216. #issue-list .comment,
  2217. #pull-list .comment {
  2218. color: #666;
  2219. position: absolute;
  2220. top: 6px;
  2221. right: 0;
  2222. }
  2223. #issue-list .issue-label a,
  2224. #pull-list .issue-label a {
  2225. color: #FFF;
  2226. }
  2227. #issue-list .desc,
  2228. #pull-list .desc {
  2229. color: #999;
  2230. }
  2231. #issue-list .desc a,
  2232. #pull-list .desc a {
  2233. color: #999;
  2234. }
  2235. #issue-list .desc a:hover,
  2236. #pull-list .desc a:hover {
  2237. color: #03a2ef;
  2238. }
  2239. #issue-list-filter .drop > a {
  2240. width: 90px;
  2241. padding: 0;
  2242. margin-left: 12px;
  2243. text-align: center;
  2244. }
  2245. #issue-list-filter .drop-down {
  2246. z-index: 999;
  2247. width: 236px;
  2248. left: -158px;
  2249. top: 22px;
  2250. padding: 0 12px;
  2251. }
  2252. #issue-list-filter .drop-down h4 {
  2253. line-height: 40px;
  2254. border-bottom: 1px solid #CCC;
  2255. margin-bottom: 0;
  2256. }
  2257. #issue-list-filter .drop-down li {
  2258. line-height: 30px;
  2259. border-bottom: 1px dashed #EEE;
  2260. padding-left: 9px;
  2261. }
  2262. #issue-list-filter .drop-down li:hover {
  2263. background-color: #fcffec;
  2264. }
  2265. #issue-list-filter .drop-down > ul > li > a {
  2266. display: block;
  2267. }
  2268. #issue-list-filter .labels .color {
  2269. margin-top: 8px;
  2270. display: inline-block;
  2271. width: 12px;
  2272. height: 12px;
  2273. background-color: red;
  2274. margin-right: 9px;
  2275. margin-left: 9px;
  2276. }
  2277. #issue-list-filter .labels .name {
  2278. vertical-align: top;
  2279. display: inline-block;
  2280. color: #444;
  2281. }
  2282. #issue-list-filter .milestones a {
  2283. color: #444;
  2284. font-weight: bold;
  2285. }
  2286. #issue-list-pager {
  2287. margin: 18px 0 24px 0;
  2288. font-size: 14px;
  2289. line-height: 24px;
  2290. }
  2291. #labels-num {
  2292. margin-right: 1em;
  2293. }
  2294. #label-list a.right {
  2295. margin-left: 1em;
  2296. color: #999;
  2297. line-height: 30px;
  2298. }
  2299. #label-list a.right i {
  2300. margin-right: 3px;
  2301. }
  2302. #label-list a.right:hover {
  2303. color: #444444;
  2304. }
  2305. #label-list .num {
  2306. margin-right: 3px;
  2307. }
  2308. #label-list .issue-num {
  2309. margin-right: 4em;
  2310. }
  2311. #label-list .label:hover {
  2312. color: #FFF;
  2313. }
  2314. #label-list .label i {
  2315. margin-right: 6px;
  2316. }
  2317. #label-list .item {
  2318. height: 30px;
  2319. padding-bottom: 12px;
  2320. margin-bottom: 12px;
  2321. border-bottom: 1px dashed #AAA;
  2322. }
  2323. #label-add-form .ipt,
  2324. #label-edit-form .ipt,
  2325. #label-delete-form .ipt {
  2326. font-size: 14px;
  2327. }
  2328. #label-add-form .ipt[name=name],
  2329. #label-edit-form .ipt[name=name],
  2330. #label-delete-form .ipt[name=name] {
  2331. width: 300px;
  2332. }
  2333. #label-add-form .btn,
  2334. #label-edit-form .btn,
  2335. #label-delete-form .btn {
  2336. height: 33px;
  2337. font-size: 14px;
  2338. margin-left: 12px;
  2339. }
  2340. #label-add-form {
  2341. padding: 18px 0;
  2342. border-bottom: 1px solid #DDD;
  2343. }
  2344. #label-delete-form span {
  2345. line-height: 33px;
  2346. }
  2347. .label-color-drop .ipt {
  2348. width: 100px;
  2349. }
  2350. .label-color-drop .drop-down {
  2351. width: 128px !important;
  2352. top: 22px !important;
  2353. left: 50px !important;
  2354. padding: 12px;
  2355. line-height: 16px;
  2356. }
  2357. .label-color-drop .drop-down a.color {
  2358. width: 16px;
  2359. height: 16px;
  2360. display: inline-block;
  2361. }
  2362. .label-color-drop label {
  2363. width: 24px;
  2364. height: 24px;
  2365. display: inline-block;
  2366. margin: 0 1em;
  2367. vertical-align: middle;
  2368. }
  2369. #milestone-list {
  2370. padding-top: 6px;
  2371. }
  2372. #milestone-list .title-text {
  2373. font-size: 16px;
  2374. }
  2375. #milestone-list .desc {
  2376. color: #999;
  2377. line-height: 30px;
  2378. }
  2379. #milestone-list .content {
  2380. width: 400px;
  2381. }
  2382. #milestone-list .item {
  2383. padding-bottom: 18px;
  2384. margin-bottom: 18px;
  2385. border-bottom: 1px dashed #AAA;
  2386. position: relative;
  2387. }
  2388. #milestone-list .action {
  2389. position: absolute;
  2390. top: 0;
  2391. right: 0;
  2392. }
  2393. #milestone-list .status-bar > .bar {
  2394. margin: -2px 8px 0 8px;
  2395. width: 360px;
  2396. background-color: #DDD;
  2397. height: 14px;
  2398. vertical-align: middle;
  2399. }
  2400. #milestone-list .status-bar .opening {
  2401. background-color: #65ad4e;
  2402. width: 40%;
  2403. height: 14px;
  2404. vertical-align: top;
  2405. }
  2406. #milestone-list .action-bar {
  2407. margin-top: 8px;
  2408. }
  2409. #milestone-list .action-bar a {
  2410. margin-left: 12px;
  2411. }
  2412. .org-header-alert .alert {
  2413. margin-top: 10px;
  2414. }
  2415. .org-header {
  2416. padding: 16px 0;
  2417. background-color: #FFF;
  2418. border-bottom: 1px solid #DDD;
  2419. }
  2420. .org-header img {
  2421. padding-right: 10px;
  2422. }
  2423. #org-home-header {
  2424. min-height: 100px;
  2425. }
  2426. #org-header {
  2427. height: 48px;
  2428. }
  2429. #org-header .org-name {
  2430. padding-left: 10px;
  2431. font-size: 1.4em;
  2432. height: 50px;
  2433. line-height: 50px;
  2434. margin-bottom: 0;
  2435. }
  2436. #org-header > div > .menu-line > li.right > a {
  2437. font-size: 1.2em;
  2438. color: #444444;
  2439. }
  2440. #org-header > div > .menu-line > li.right > a:hover {
  2441. background-color: transparent;
  2442. color: #d9453d;
  2443. }
  2444. #org-header > div > .menu-line > li.right > a .octicon {
  2445. margin-right: 4px;
  2446. }
  2447. #org-header > div > .menu-line > li.right > a .label {
  2448. margin-left: 4px;
  2449. }
  2450. #org-header > div > .menu-line > li.right .current {
  2451. border-bottom: 2px solid #D26911;
  2452. }
  2453. #org-home-header-info {
  2454. padding-top: 10px;
  2455. }
  2456. #org-home-header-info h2 {
  2457. font-size: 30px;
  2458. }
  2459. #org-home-header-info ul {
  2460. list-style: none;
  2461. }
  2462. #org-home-header-info ul li {
  2463. float: left;
  2464. padding-right: 5px;
  2465. }
  2466. #org-home-repo-list {
  2467. padding: 10px 0;
  2468. }
  2469. #org-repo-list {
  2470. padding: 10px 0;
  2471. }
  2472. #org-repo-list .org-repo-item {
  2473. border-top: 1px solid #eee;
  2474. padding: 30px 20px;
  2475. }
  2476. #org-repo-list .org-repo-item .org-repo-status {
  2477. list-style: none;
  2478. color: #888;
  2479. }
  2480. #org-repo-list .org-repo-item .org-repo-status li {
  2481. float: left;
  2482. margin-right: 6px;
  2483. }
  2484. #org-repo-list .org-repo-item h2 {
  2485. margin-bottom: 5px;
  2486. }
  2487. #org-repo-list .org-repo-item .org-repo-description {
  2488. margin: 0;
  2489. font-size: 14px;
  2490. color: #666;
  2491. }
  2492. #org-repo-list .org-repo-item .org-repo-updated {
  2493. font-size: 12px;
  2494. display: block;
  2495. margin: 5px 0 0;
  2496. color: #808080;
  2497. }
  2498. .org-sidebar {
  2499. margin: -80px 0 0 20px;
  2500. }
  2501. .org-sidebar .panel-footer {
  2502. padding: .8em 1.2em;
  2503. }
  2504. .org-sidebar .member-avatar-group {
  2505. padding: 15px;
  2506. }
  2507. .org-sidebar .member-avatar-group img {
  2508. width: 59px;
  2509. height: 59px;
  2510. border-radius: 3px;
  2511. }
  2512. #org-home-team-list {
  2513. padding: 0 15px;
  2514. }
  2515. #org-home-team-list ul {
  2516. list-style: none;
  2517. padding-top: 10px;
  2518. }
  2519. #org-home-team-list ul li {
  2520. padding: 10px 0;
  2521. border-bottom: 1px solid #eee;
  2522. }
  2523. #org-home-team-list ul li:last-child {
  2524. border-bottom: 0;
  2525. }
  2526. .team-name {
  2527. display: block;
  2528. font-size: 14px;
  2529. overflow: hidden;
  2530. text-overflow: ellipsis;
  2531. white-space: nowrap;
  2532. }
  2533. .team-meta {
  2534. margin-top: 0;
  2535. margin-bottom: 0;
  2536. color: #777;
  2537. }
  2538. .org-toolbar {
  2539. padding: 10px 0;
  2540. border-bottom: 1px solid #eee;
  2541. }
  2542. #org-member-list .org-member-item {
  2543. height: 50px;
  2544. line-height: 50px;
  2545. border-bottom: 1px solid #eee;
  2546. padding: 15px 20px;
  2547. }
  2548. #org-member-list .org-member-item .member-name {
  2549. padding-left: 15px;
  2550. }
  2551. #org-member-list .org-member-item ul {
  2552. list-style: none;
  2553. }
  2554. #org-member-list .org-member-item ul li {
  2555. text-align: center;
  2556. display: inline-block;
  2557. }
  2558. .invite-box {
  2559. padding: 50px 0;
  2560. min-height: 130px;
  2561. margin: 0 auto;
  2562. width: 50%;
  2563. }
  2564. .invite-box input {
  2565. width: 300px;
  2566. }
  2567. #org-member-list-block {
  2568. padding-top: 2px;
  2569. }
  2570. .org-team-list .org-team-list-item {
  2571. float: left;
  2572. padding: 15px;
  2573. width: 555px;
  2574. }
  2575. .org-team-list .org-team-list-item .member-avatar-group {
  2576. padding: 5px 15px;
  2577. }
  2578. .org-team-list .org-team-list-item .member-avatar-group img {
  2579. width: 38px;
  2580. height: 38px;
  2581. border-radius: 3px;
  2582. }
  2583. #team-create-form .note {
  2584. margin-left: 153px;
  2585. }
  2586. #org-team-card .desc {
  2587. font-size: 14px;
  2588. padding: 10px 20px;
  2589. }
  2590. #org-team-card .team-stats {
  2591. padding: 0 20px 10px 20px;
  2592. text-transform: uppercase;
  2593. border-bottom: 1px solid #dddddd;
  2594. }
  2595. #org-team-card .panel-footer {
  2596. padding: 10px 20px;
  2597. }
  2598. #team-repositories-list .panel-body .search,
  2599. #team-members-list .panel-body .search {
  2600. padding: 4px 0 10px 10px;
  2601. border-bottom: 1px solid #dddddd;
  2602. }
  2603. #team-repositories-list li.collab,
  2604. #team-members-list li.collab {
  2605. padding-top: 10px !important;
  2606. border-bottom: 1px solid #dddddd;
  2607. }
  2608. #team-repositories-list li:last-child,
  2609. #team-members-list li:last-child {
  2610. border-bottom: 0 !important;
  2611. }
  2612. #team-repositories-list li a .octicon {
  2613. color: #888;
  2614. }
  2615. #team-repositories-list li .member {
  2616. color: #428bca;
  2617. font-size: 14px;
  2618. height: 40px;
  2619. line-height: 40px;
  2620. }
  2621. .admin-panel {
  2622. padding: 10px 20px;
  2623. }
  2624. .admin-desc {
  2625. padding: 10px 20px;
  2626. }
  2627. .admin-table {
  2628. padding: 15px 0 5px 0;
  2629. }
  2630. .dl-horizontal dt {
  2631. float: left;
  2632. width: 160px;
  2633. clear: left;
  2634. overflow: hidden;
  2635. text-overflow: ellipsis;
  2636. white-space: nowrap;
  2637. }
  2638. .admin-dl-horizontal {
  2639. padding: 20px;
  2640. }
  2641. .admin-dl-horizontal > dt {
  2642. width: 250px;
  2643. }
  2644. .admin-dl-horizontal > dd {
  2645. margin-left: 240px;
  2646. }
  2647. .profile-avatar {
  2648. width: 100%;
  2649. border-radius: 6px;
  2650. }
  2651. #profile-name {
  2652. padding: 10px 0;
  2653. }
  2654. #profile-fullname {
  2655. font-size: 1.6em;
  2656. }
  2657. #profile-username {
  2658. font-size: 1.6em;
  2659. font-weight: bold;
  2660. }
  2661. .profile-info {
  2662. font-size: 14px;
  2663. }
  2664. .profile-info ul {
  2665. padding-bottom: 10px;
  2666. }
  2667. .profile-info ul .list-group-item {
  2668. background-color: transparent;
  2669. padding-top: 5px;
  2670. color: #666;
  2671. }
  2672. .profile-info ul .profile-rel {
  2673. width: 31%;
  2674. text-align: center;
  2675. display: inline-block;
  2676. }
  2677. .profile-info ul .profile-rel strong {
  2678. display: block;
  2679. font-size: 28px;
  2680. font-weight: bold;
  2681. line-height: 1;
  2682. }
  2683. .profile-info ul .profile-rel p {
  2684. font-size: 12px;
  2685. }
  2686. #profile-header li a {
  2687. font-size: 1.2em;
  2688. color: #444444;
  2689. padding: .4em .8em;
  2690. }
  2691. #profile-header li a:hover {
  2692. background-color: transparent;
  2693. color: #d9453d;
  2694. }
  2695. #profile-header li .current {
  2696. border-bottom: 2px solid #D26911;
  2697. }
  2698. #profile-body {
  2699. margin-left: 20px;
  2700. }