gogs.css 51 KB

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