gogs.css 50 KB

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