gogs.css 42 KB

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