gogs.css 51 KB

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