gogs.css 45 KB

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