gogs.css 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241
  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: 44px;
  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: -4px 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;
  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.right > a {
  720. font-size: 1.2em;
  721. color: #444444;
  722. padding: .4em .8em;
  723. }
  724. #dashboard-header > .menu-line > li.right > a:hover {
  725. background-color: transparent;
  726. color: #d9453d;
  727. }
  728. #dashboard-header > .menu-line > li.right > a .octicon {
  729. margin-right: 6px;
  730. }
  731. #dashboard-header > .menu-line > li.right .current {
  732. border-bottom: 2px solid #D26911;
  733. }
  734. #dashboard-selection-menu a img {
  735. margin: -4px 10px 0 0;
  736. }
  737. #dashboard {
  738. padding: 24px 0;
  739. }
  740. #dashboard-sidebar .panel-header h4 {
  741. margin: 0;
  742. }
  743. #dashboard-sidebar > .panel {
  744. margin-bottom: 24px;
  745. border-bottom-left-radius: .3em;
  746. border-bottom-right-radius: .3em;
  747. }
  748. #dashboard-sidebar-menu {
  749. border-top-left-radius: .3em;
  750. border-top-right-radius: .3em;
  751. width: 100%;
  752. height: 32px;
  753. }
  754. #dashboard-sidebar-menu > li {
  755. border: 1px solid #d6d6d6;
  756. float: left;
  757. margin-right: -1px;
  758. border-bottom: none;
  759. }
  760. #dashboard-sidebar-menu > li > a {
  761. padding-top: .3em;
  762. padding-bottom: .3em;
  763. }
  764. #dashboard-sidebar-menu > li.first {
  765. border-top-left-radius: .3em;
  766. }
  767. #dashboard-sidebar-menu > li.first > a {
  768. border-top-left-radius: .3em;
  769. }
  770. #dashboard-sidebar-menu > li.drop {
  771. border: none;
  772. float: right;
  773. }
  774. #dashboard-sidebar-menu > li.js-tab-nav-show {
  775. background-color: #EEEEEE;
  776. }
  777. #dashboard-sidebar-menu > li.last {
  778. border-top-right-radius: .3em;
  779. }
  780. #dashboard-sidebar-menu > li.last > a {
  781. border-top-right-radius: .3em;
  782. }
  783. #dashboard-my-mirror li,
  784. #dashboard-my-org li,
  785. #dashboard-my-repo li {
  786. border-bottom: 1px solid #EAEAEA;
  787. }
  788. #dashboard-my-mirror li.private,
  789. #dashboard-my-org li.private,
  790. #dashboard-my-repo li.private {
  791. background-color: #fcf8e9;
  792. }
  793. #dashboard-my-mirror li:last-child,
  794. #dashboard-my-org li:last-child,
  795. #dashboard-my-repo li:last-child {
  796. border-bottom: none;
  797. }
  798. #dashboard-my-mirror li a,
  799. #dashboard-my-org li a,
  800. #dashboard-my-repo li a {
  801. padding: 6px 1.2em;
  802. display: block;
  803. }
  804. #dashboard-my-mirror li a .octicon,
  805. #dashboard-my-org li a .octicon,
  806. #dashboard-my-repo li a .octicon {
  807. margin-right: 6px;
  808. color: #888;
  809. }
  810. #dashboard-my-mirror li a:hover .repo-name,
  811. #dashboard-my-org li a:hover .repo-name,
  812. #dashboard-my-repo li a:hover .repo-name {
  813. text-decoration: underline;
  814. }
  815. #dashboard-my-mirror .repo-name,
  816. #dashboard-my-org .repo-name,
  817. #dashboard-my-repo .repo-name {
  818. font-size: 1.1em;
  819. }
  820. #dashboard-my-mirror .repo-star,
  821. #dashboard-my-org .repo-star,
  822. #dashboard-my-repo .repo-star {
  823. color: #888;
  824. }
  825. #dashboard-my-mirror .repo-contrib-header,
  826. #dashboard-my-org .repo-contrib-header,
  827. #dashboard-my-repo .repo-contrib-header {
  828. border-top: 1px solid #d6d6d6;
  829. }
  830. #dashboard-my-mirror .panel-header,
  831. #dashboard-my-org .panel-header,
  832. #dashboard-my-repo .panel-header {
  833. font-size: 14px;
  834. }
  835. #dashboard-my-repo .panel-header .octicon {
  836. margin-right: 6px;
  837. font-size: 12px;
  838. }
  839. #dashboard-my-repo .repo-count {
  840. margin-left: 4px;
  841. }
  842. #dashboard-my-org,
  843. #dashboard-my-mirror {
  844. display: none;
  845. }
  846. #dashboard-new-repo {
  847. width: 50px;
  848. height: 33px;
  849. padding-top: 6px;
  850. margin-right: 1px;
  851. border-top-left-radius: .3em;
  852. border-top-right-radius: .3em;
  853. }
  854. #dashboard-new-repo .octicon {
  855. font-size: 2em;
  856. }
  857. #dashboard-new-repo-menu {
  858. top: 33px;
  859. width: 180px;
  860. background-color: #FFF;
  861. left: -132px;
  862. }
  863. #dashboard-new-repo-menu .octicon {
  864. margin-right: 6px;
  865. font-size: 1.1em;
  866. }
  867. #dashboard-selection-menu {
  868. width: auto;
  869. max-width: 300px;
  870. }
  871. #dashboard-selection-menu > .drop-down {
  872. top: 56px;
  873. }
  874. #dashboard-selection-menu li {
  875. white-space: nowrap;
  876. }
  877. #dashboard-selection-menu li.checked .octicon {
  878. opacity: 1;
  879. }
  880. #dashboard-selection-menu li a {
  881. text-overflow: ellipsis;
  882. -o-text-overflow: ellipsis;
  883. overflow: hidden;
  884. }
  885. #dashboard-switch-menu {
  886. border-bottom-left-radius: .3em;
  887. border-bottom-right-radius: .3em;
  888. }
  889. #dashboard-switch-menu > li > a img {
  890. margin-top: 0;
  891. }
  892. #dashboard-switch-menu > li > a .octicon {
  893. margin-right: 12px;
  894. }
  895. #dashboard-switch-menu > li:last-child > a {
  896. border-bottom-left-radius: .3em;
  897. border-bottom-right-radius: .3em;
  898. }
  899. #dashboard-switch-menu > li.org > a .octicon {
  900. opacity: 0;
  901. }
  902. #dashboard-switch-menu > li.checked > a {
  903. font-weight: bold;
  904. }
  905. #dashboard-switch-menu > li.checked > a .octicon {
  906. opacity: 1;
  907. }
  908. #dashboard-news {
  909. padding-bottom: 60px;
  910. }
  911. #dashboard-news .news {
  912. margin-right: 2.4em;
  913. padding-bottom: 1em;
  914. margin-bottom: 1em;
  915. border-bottom: 1px solid #E6E6E6;
  916. min-height: 30px;
  917. }
  918. #dashboard-news .news .mega-octicon {
  919. color: #CCC;
  920. }
  921. #dashboard-news .news .avatar {
  922. margin: 0 1.2em;
  923. }
  924. #dashboard-news .news .news-content,
  925. #dashboard-news .news .news-time {
  926. color: #888;
  927. }
  928. #dashboard-news .push-news .news-content li {
  929. margin-left: 1em;
  930. }
  931. #dashboard-news .push-news .news-content li img {
  932. vertical-align: inherit;
  933. margin-bottom: -2px;
  934. }
  935. /*
  936. The register and sign-in page style
  937. */
  938. #sign-wrapper {
  939. padding: 60px 0;
  940. }
  941. .sign-panel {
  942. background-color: #ffffff;
  943. }
  944. .sign-form.form-align .field {
  945. margin: 1.2em 0 2em 0;
  946. }
  947. .sign-form.form-align .ipt-large {
  948. width: 300px;
  949. }
  950. .sign-form.form-align label,
  951. .sign-form.form-align .form-label {
  952. width: 160px;
  953. }
  954. .sign-form.form-align .alert {
  955. margin: 0 30px 24px 30px;
  956. }
  957. .sign-form.form-align:hover {
  958. box-shadow: 0 0 6px #CCC;
  959. }
  960. .sign-form.container {
  961. padding: 0;
  962. width: 600px;
  963. margin-bottom: 80px;
  964. }
  965. #sign-up-form .panel-content {
  966. margin-top: 1.2em;
  967. }
  968. #sign-up-form h2 {
  969. margin: .5em 1em;
  970. }
  971. #sign-social {
  972. position: relative;
  973. margin: 40px 0;
  974. }
  975. #sign-social .or {
  976. position: absolute;
  977. width: 30px;
  978. top: -52px;
  979. left: 50%;
  980. background-color: #FFF;
  981. margin-left: -15px;
  982. }
  983. /* repository main */
  984. #repo-wrapper {
  985. padding-bottom: 100px;
  986. }
  987. #repo-header {
  988. height: 69px;
  989. border-bottom: 1px solid #d6d6d6;
  990. background-color: #ffffff;
  991. }
  992. #repo-header-name {
  993. line-height: 66px;
  994. color: #888888;
  995. font-size: 1.6em;
  996. font-weight: normal;
  997. margin-bottom: 0;
  998. }
  999. #repo-header-name i {
  1000. margin-right: 12px;
  1001. vertical-align: middle;
  1002. }
  1003. #repo-header-name .divider {
  1004. margin: 0 4px;
  1005. }
  1006. #repo-header-meta {
  1007. line-height: 66px;
  1008. }
  1009. #repo-header-meta li > a {
  1010. padding: 0;
  1011. }
  1012. #repo-header-meta li > a:hover {
  1013. background-color: transparent;
  1014. }
  1015. #repo-header-meta a > .btn {
  1016. line-height: 16px;
  1017. margin-left: 16px;
  1018. font-size: 13px;
  1019. }
  1020. #repo-header-meta a > .btn i {
  1021. margin-right: 6px;
  1022. }
  1023. #repo-header-meta a > .btn .num {
  1024. margin-left: 6px;
  1025. }
  1026. #repo-header-download-btn > .btn > i {
  1027. margin-right: 0 !important;
  1028. }
  1029. #repo-header-download-btn:hover:after,
  1030. #repo-header-download-btn:hover .btn {
  1031. background-color: #383838;
  1032. color: #FFF;
  1033. }
  1034. #repo-header-download-btn:after {
  1035. background-color: #444444;
  1036. padding: 9px 16px 8px 0;
  1037. margin-left: -8px !important;
  1038. color: #FFF;
  1039. border-top: 1px solid #444444;
  1040. border-bottom: 1px solid #444444;
  1041. border-top-right-radius: .25em;
  1042. border-bottom-right-radius: .25em;
  1043. }
  1044. #repo-header-download-drop {
  1045. line-height: 24px;
  1046. width: 440px;
  1047. top: 50px;
  1048. left: -370px;
  1049. padding: 20px;
  1050. box-sizing: border-box;
  1051. z-index: 1;
  1052. }
  1053. #repo-header-download-drop .btn > i {
  1054. margin-right: 6px;
  1055. }
  1056. #repo-header-download-drop button,
  1057. #repo-header-download-drop input {
  1058. font-size: 11px;
  1059. }
  1060. #repo-content {
  1061. padding: 18px 0;
  1062. }
  1063. .repo-wide-wrapper {
  1064. padding: 18px 0;
  1065. position: relative;
  1066. }
  1067. #repo-clone-url {
  1068. border-right: none;
  1069. width: 190px;
  1070. border-left: none;
  1071. }
  1072. #repo-clone-help {
  1073. clear: both;
  1074. line-height: 48px;
  1075. }
  1076. #repo-clone-zip {
  1077. line-height: 48px;
  1078. }
  1079. #repo-clone-zip a {
  1080. cursor: pointer;
  1081. color: white;
  1082. overflow: visible;
  1083. padding: .6em 1.2em;
  1084. }
  1085. #repo-clone-zip .btn {
  1086. margin: 0 6px;
  1087. }
  1088. #repo-desc {
  1089. font-size: 1.2em;
  1090. }
  1091. #repo-desc .no-description {
  1092. color: #999;
  1093. }
  1094. #repo-sidebar-nav .label {
  1095. font-size: 12px;
  1096. line-height: 1.4em;
  1097. margin-top: 2px;
  1098. }
  1099. #repo-sidebar-nav i {
  1100. margin-right: 6px;
  1101. }
  1102. #repo-sidebar-mini {
  1103. margin-top: 6px;
  1104. width: 60px;
  1105. }
  1106. #repo-sidebar-mini li {
  1107. margin-bottom: 4px;
  1108. }
  1109. #repo-sidebar-mini li > a {
  1110. position: relative;
  1111. padding-left: 12px;
  1112. width: 24px;
  1113. text-align: center;
  1114. }
  1115. #repo-sidebar-mini li > a > i.octicon {
  1116. font-size: 21px;
  1117. }
  1118. #repo-sidebar-mini .num {
  1119. position: absolute;
  1120. font-size: 12px;
  1121. top: 0;
  1122. left: 36px;
  1123. padding: 0 2px;
  1124. min-width: 16px;
  1125. height: 16px;
  1126. text-align: center;
  1127. line-height: 16px;
  1128. border-radius: 4px;
  1129. opacity: 0.7;
  1130. -webkit-transform: scale(0.9);
  1131. font-weight: bold;
  1132. }
  1133. #repo-file-nav {
  1134. padding: .6em 0 1em 0;
  1135. }
  1136. #repo-file-nav > li > a {
  1137. padding-left: 0;
  1138. }
  1139. #repo-file-nav > li > a:hover {
  1140. background-color: transparent;
  1141. }
  1142. #repo-file-nav li.repo-jump > a {
  1143. padding-right: 0;
  1144. }
  1145. #repo-file-nav li.repo-jump > a .btn {
  1146. margin-left: -1px;
  1147. }
  1148. #repo-branch-switch > a .btn {
  1149. padding-right: 30px;
  1150. }
  1151. #repo-branch-switch > a:after {
  1152. position: absolute;
  1153. top: 12px;
  1154. right: 30px;
  1155. margin-left: 0;
  1156. color: #444444;
  1157. }
  1158. #repo-branch-switch > .drop-down {
  1159. top: 40px;
  1160. left: 0;
  1161. }
  1162. #repo-branch-filter-ipt {
  1163. width: 100%;
  1164. border-left: none;
  1165. border-right: none;
  1166. box-sizing: border-box;
  1167. }
  1168. #repo-branch-tag .tab-nav {
  1169. border-bottom: 1px solid #EAEAEA;
  1170. }
  1171. #repo-branch-tag .tab-nav a {
  1172. padding: .3em .8em;
  1173. }
  1174. #repo-branch-tag .tab-nav .js-tab-nav-show {
  1175. background-color: #EEE;
  1176. font-weight: bold;
  1177. }
  1178. #repo-branch-tag .switching-list {
  1179. max-height: 300px;
  1180. overflow-y: auto;
  1181. }
  1182. #repo-branch-list li i,
  1183. #repo-tag-list li i {
  1184. margin-right: 12px;
  1185. opacity: 0;
  1186. }
  1187. #repo-branch-list li.checked i,
  1188. #repo-tag-list li.checked i {
  1189. opacity: 1;
  1190. }
  1191. #repo-bread .bread {
  1192. padding-right: 0;
  1193. font-size: 16px;
  1194. font-weight: bold;
  1195. }
  1196. #repo-main {
  1197. padding-right: 40px;
  1198. box-sizing: border-box;
  1199. }
  1200. #repo-files-table {
  1201. margin-bottom: 20px;
  1202. }
  1203. #repo-files-table th,
  1204. #repo-files-table td {
  1205. text-align: left;
  1206. line-height: 32px;
  1207. }
  1208. #repo-files-table td.icon {
  1209. width: 16px;
  1210. padding-right: .1em;
  1211. padding-left: 1em;
  1212. }
  1213. #repo-files-table td.name {
  1214. max-width: 120px;
  1215. }
  1216. #repo-files-table td.name .text-truncate {
  1217. max-width: 100%;
  1218. }
  1219. #repo-files-table td.age {
  1220. max-width: 120px;
  1221. text-align: right;
  1222. }
  1223. #repo-files-table td.msg {
  1224. max-width: 440px;
  1225. }
  1226. #repo-files-table td.msg .text-truncate {
  1227. max-width: 100%;
  1228. }
  1229. #repo-files-table td.age,
  1230. #repo-files-table td.size,
  1231. #repo-files-table td.msg a {
  1232. color: #888;
  1233. }
  1234. #repo-files-table td.msg a:hover {
  1235. color: #428BCA;
  1236. text-decoration: underline;
  1237. }
  1238. #repo-files-table tbody {
  1239. background-color: #FFF;
  1240. }
  1241. #repo-files-table tbody tr:hover {
  1242. background-color: #ffffEE;
  1243. }
  1244. #repo-files-table thead {
  1245. background-color: #F0F0F0;
  1246. }
  1247. #repo-files-table thead .author a {
  1248. margin: 0 .4em;
  1249. }
  1250. #repo-files-table thead .last-commit strong {
  1251. color: #444;
  1252. }
  1253. #repo-files-table thead .last-commit .text-truncate {
  1254. margin-left: .4em;
  1255. }
  1256. #repo-files-table thead .last-commit .text-truncate,
  1257. #repo-files-table thead .age {
  1258. font-weight: normal;
  1259. color: #888;
  1260. }
  1261. #repo-readme,
  1262. #repo-read-file {
  1263. margin-bottom: 80px;
  1264. }
  1265. #repo-bare-start {
  1266. margin-bottom: 100px;
  1267. }
  1268. #repo-bare-start .panel-content {
  1269. background-color: #FFF;
  1270. }
  1271. #repo-bare-start pre {
  1272. margin: 0 40px;
  1273. padding: 6px 10px;
  1274. border: 1px solid #ddd;
  1275. background: #f8f8f8;
  1276. }
  1277. .repo-bare #repo-bare-start h2 {
  1278. margin-top: 30px;
  1279. margin-bottom: 24px;
  1280. }
  1281. .repo-bare #repo-header-meta {
  1282. display: none;
  1283. }
  1284. .repo-bare #repo-clone-ssh {
  1285. margin-left: 200px;
  1286. }
  1287. .repo-bare #repo-clone-copy {
  1288. margin-right: 200px;
  1289. }
  1290. .repo-bare #repo-clone-help {
  1291. clear: both;
  1292. width: 100%;
  1293. }
  1294. .repo-bare #repo-clone-url {
  1295. width: 520px;
  1296. }
  1297. /* repository create */
  1298. #team-create-form,
  1299. #repo-migrate-form,
  1300. #repo-create-form {
  1301. width: 800px;
  1302. margin: 60px auto auto auto;
  1303. background: white;
  1304. }
  1305. #team-create-form h2,
  1306. #repo-migrate-form h2,
  1307. #repo-create-form h2 {
  1308. margin: .5em 1em;
  1309. }
  1310. #team-create-form .field,
  1311. #repo-migrate-form .field,
  1312. #repo-create-form .field {
  1313. margin: 1.2em 0 2em 0;
  1314. }
  1315. #team-create-form .ipt,
  1316. #repo-migrate-form .ipt,
  1317. #repo-create-form .ipt {
  1318. width: 540px;
  1319. }
  1320. #team-create-form textarea,
  1321. #repo-migrate-form textarea,
  1322. #repo-create-form textarea {
  1323. height: 120px;
  1324. }
  1325. #team-create-form .avatar,
  1326. #repo-migrate-form .avatar,
  1327. #repo-create-form .avatar {
  1328. vertical-align: middle;
  1329. margin-right: .6em;
  1330. width: 28px;
  1331. height: 28px;
  1332. }
  1333. #team-create-form:hover,
  1334. #repo-migrate-form:hover,
  1335. #repo-create-form:hover {
  1336. box-shadow: 0px 0px 6px #CCC;
  1337. }
  1338. #repo-create-cancel {
  1339. margin-left: 4em;
  1340. }
  1341. #repo-create-owner-list {
  1342. top: 30px;
  1343. left: 0;
  1344. width: auto;
  1345. max-width: 300px;
  1346. }
  1347. #repo-create-owner-list .octicon {
  1348. margin-right: 12px;
  1349. opacity: 0;
  1350. }
  1351. #repo-create-owner-list .avatar {
  1352. width: 20px;
  1353. height: 20px;
  1354. }
  1355. #repo-create-owner-list li {
  1356. white-space: nowrap;
  1357. }
  1358. #repo-create-owner-list li.checked .octicon {
  1359. opacity: 1;
  1360. }
  1361. #repo-create-owner-list li a {
  1362. text-overflow: ellipsis;
  1363. -o-text-overflow: ellipsis;
  1364. overflow: hidden;
  1365. }
  1366. .file-name {
  1367. margin-left: 1em;
  1368. }
  1369. .file-size {
  1370. font-size: 13px;
  1371. color: #888;
  1372. margin-left: 1em;
  1373. }
  1374. .code-view {
  1375. overflow: auto;
  1376. overflow-x: auto;
  1377. overflow-y: hidden;
  1378. background: white;
  1379. }
  1380. .code-view .view-raw {
  1381. min-height: 40px;
  1382. text-align: center;
  1383. padding-top: 20px;
  1384. }
  1385. .code-view .view-raw .btn {
  1386. font-size: 1.05em;
  1387. line-height: 16px;
  1388. padding: 6px 8px;
  1389. }
  1390. .code-view table {
  1391. width: 100%;
  1392. }
  1393. .code-view table td {
  1394. padding: 0;
  1395. }
  1396. .code-view .lines-num {
  1397. vertical-align: top;
  1398. text-align: right;
  1399. color: #999;
  1400. background: #f5f5f5;
  1401. width: 1%;
  1402. }
  1403. .code-view .lines-num span {
  1404. font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  1405. line-height: 1.6;
  1406. padding: 0 10px;
  1407. cursor: pointer;
  1408. display: block;
  1409. }
  1410. .code-view .lines-code > pre {
  1411. border: none;
  1412. border-left: 1px solid #ddd;
  1413. }
  1414. .code-view .lines-code > pre > ol.linenums > li {
  1415. padding: 0 10px;
  1416. }
  1417. .code-view .lines-code > pre > ol.linenums > li.active {
  1418. background: #ffffdd;
  1419. }
  1420. .repo-setting-zone {
  1421. padding: 30px;
  1422. }
  1423. #team-repositories-list,
  1424. #team-members-list,
  1425. #repo-collab-list {
  1426. list-style: none;
  1427. padding: 10px 0 5px 0;
  1428. }
  1429. #team-repositories-list li.collab,
  1430. #team-members-list li.collab,
  1431. #repo-collab-list li.collab {
  1432. clear: both;
  1433. height: 50px;
  1434. padding: 0 15px 0 15px;
  1435. }
  1436. #team-repositories-list a.member,
  1437. #team-members-list a.member,
  1438. #repo-collab-list a.member {
  1439. color: #444;
  1440. height: 50px;
  1441. line-height: 50px;
  1442. }
  1443. #team-repositories-list a.member:hover,
  1444. #team-members-list a.member:hover,
  1445. #repo-collab-list a.member:hover {
  1446. color: #4183C4;
  1447. }
  1448. #team-repositories-list .avatar,
  1449. #team-members-list .avatar,
  1450. #repo-collab-list .avatar {
  1451. margin-right: 1em;
  1452. width: 40px;
  1453. }
  1454. #team-repositories-list .remove-collab,
  1455. #team-members-list .remove-collab,
  1456. #repo-collab-list .remove-collab {
  1457. color: #DD4B39;
  1458. }
  1459. .repo-user-list-block {
  1460. position: relative;
  1461. top: 5px;
  1462. }
  1463. .setting-list {
  1464. width: 100%;
  1465. list-style: none;
  1466. }
  1467. #commits-list {
  1468. padding-top: 20px;
  1469. }
  1470. #commits-list h4 {
  1471. line-height: 30px;
  1472. margin-bottom: 0;
  1473. }
  1474. .commit-list th {
  1475. background-color: #FFF;
  1476. line-height: 28px !important;
  1477. }
  1478. .commit-list .date {
  1479. width: 120px;
  1480. }
  1481. .commit-list .author {
  1482. padding-left: 20px;
  1483. min-width: 180px;
  1484. }
  1485. .commit-list .author img {
  1486. margin-top: -4px;
  1487. }
  1488. .commit-list .sha a {
  1489. font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace;
  1490. font-size: 14px;
  1491. }
  1492. .diff-head-box {
  1493. margin-top: 10px;
  1494. }
  1495. .diff-head-box .panel-body {
  1496. padding: 10px 15px 5px 10px;
  1497. }
  1498. .diff-head-box .author img {
  1499. margin-top: -7px;
  1500. }
  1501. .diff-detail-box {
  1502. margin: 15px 0;
  1503. line-height: 30px;
  1504. }
  1505. .diff-detail-box ol {
  1506. clear: both;
  1507. padding-left: 0;
  1508. margin-bottom: 28px;
  1509. }
  1510. .diff-detail-box ol li {
  1511. list-style: none;
  1512. padding-bottom: 4px;
  1513. margin-bottom: 4px;
  1514. border-bottom: 1px dashed #DDD;
  1515. padding-left: 6px;
  1516. }
  1517. .diff-detail-box span.status {
  1518. display: inline-block;
  1519. width: 12px;
  1520. height: 12px;
  1521. margin-right: 8px;
  1522. vertical-align: middle;
  1523. }
  1524. .diff-detail-box span.status.modify {
  1525. background-color: #f0db88;
  1526. }
  1527. .diff-detail-box span.status.add {
  1528. background-color: #b4e2b4;
  1529. }
  1530. .diff-detail-box span.status.del {
  1531. background-color: #e9aeae;
  1532. }
  1533. .diff-detail-box span.status.rename {
  1534. background-color: #dad8ff;
  1535. }
  1536. .diff-box .count {
  1537. margin-right: 12px;
  1538. }
  1539. .diff-box .count .bar {
  1540. background-color: #e75316;
  1541. height: 12px;
  1542. width: 40px;
  1543. display: inline-block;
  1544. margin: 2px 4px 0 4px;
  1545. vertical-align: text-top;
  1546. }
  1547. .diff-box .count .bar .add {
  1548. background-color: #77c64a;
  1549. height: 12px;
  1550. }
  1551. .diff-box .file {
  1552. color: #888;
  1553. }
  1554. .diff-box .panel-header {
  1555. font-size: 14px;
  1556. }
  1557. .diff-file-box .code-diff tbody tr:hover td,
  1558. .diff-file-box .code-diff tbody tr:hover pre {
  1559. background-color: #FFF8D2 !important;
  1560. border-color: #F0DB88 !important;
  1561. }
  1562. .diff-file-box .file-body.file-code .lines-num-old {
  1563. border-right: 1px solid #DDD;
  1564. }
  1565. .file-content .file-body.file-code .lines-num {
  1566. text-align: right;
  1567. color: #999;
  1568. background: #fafafa;
  1569. width: 1%;
  1570. }
  1571. .diff-file-box .code-diff tbody tr.tag-code td,
  1572. .diff-file-box .code-diff tbody tr.tag-code pre {
  1573. background-color: #E0E0E0 !important;
  1574. border-color: #ADADAD !important;
  1575. }
  1576. .diff-file-box .code-diff tbody tr.del-code td,
  1577. .diff-file-box .code-diff tbody tr.del-code pre {
  1578. background-color: #ffe2dd !important;
  1579. border-color: #e9aeae !important;
  1580. }
  1581. .diff-file-box .code-diff tbody tr.add-code td,
  1582. .diff-file-box .code-diff tbody tr.add-code pre {
  1583. background-color: #d1ffd6 !important;
  1584. border-color: #b4e2b4 !important;
  1585. }
  1586. .compare-head-box {
  1587. margin-top: 10px;
  1588. }
  1589. .compare-head-box .compare {
  1590. padding: 0 15px 15px 15px;
  1591. }
  1592. #admin-wrapper,
  1593. #setting-wrapper {
  1594. padding-bottom: 100px;
  1595. }
  1596. #setting-menu {
  1597. box-sizing: border-box;
  1598. }
  1599. #setting-menu li > a {
  1600. border-left: 2px solid #FFF;
  1601. background-color: #FFF;
  1602. }
  1603. #setting-menu li:hover {
  1604. border-color: #EAEAEA;
  1605. }
  1606. #setting-menu li:hover a {
  1607. border-left: 2px solid #EFEFEF;
  1608. background-color: #EFEFEF !important;
  1609. color: #000 !important;
  1610. }
  1611. #setting-menu li.current a {
  1612. color: #000 !important;
  1613. font-weight: bold;
  1614. border-left: 2px solid #d26911;
  1615. }
  1616. .setting-content {
  1617. margin-left: 32px;
  1618. }
  1619. #auth-setting-form,
  1620. #org-setting-form,
  1621. #repo-setting-form,
  1622. #user-profile-form,
  1623. .repo-setting-form {
  1624. background-color: #FFF;
  1625. padding: 30px 0;
  1626. }
  1627. #auth-setting-form textarea,
  1628. #org-setting-form textarea,
  1629. #repo-setting-form textarea,
  1630. #user-profile-form textarea,
  1631. .repo-setting-form textarea {
  1632. margin-left: 4px;
  1633. height: 100px;
  1634. }
  1635. #auth-setting-form label,
  1636. #org-setting-form label,
  1637. #repo-setting-form label,
  1638. #user-profile-form label,
  1639. .repo-setting-form label,
  1640. #auth-setting-form .form-label,
  1641. #org-setting-form .form-label,
  1642. #repo-setting-form .form-label,
  1643. #user-profile-form .form-label,
  1644. .repo-setting-form .form-label {
  1645. width: 240px;
  1646. }
  1647. #auth-setting-form .ipt,
  1648. #org-setting-form .ipt,
  1649. #repo-setting-form .ipt,
  1650. #user-profile-form .ipt,
  1651. .repo-setting-form .ipt {
  1652. width: 360px;
  1653. }
  1654. #auth-setting-form .field,
  1655. #org-setting-form .field,
  1656. #repo-setting-form .field,
  1657. #user-profile-form .field,
  1658. .repo-setting-form .field {
  1659. margin-bottom: 24px;
  1660. }
  1661. #hook-type {
  1662. padding: 10px 0 0 0;
  1663. background-color: #fff;
  1664. }
  1665. #hook-type .field {
  1666. margin-bottom: 24px;
  1667. }
  1668. #hook-type label {
  1669. width: 240px;
  1670. }
  1671. #repo-hooks-panel,
  1672. #repo-hooks-history-panel,
  1673. #user-social-panel,
  1674. #user-ssh-panel {
  1675. margin-bottom: 20px;
  1676. }
  1677. #repo-hooks-panel .setting-list,
  1678. #repo-hooks-history-panel .setting-list,
  1679. #user-social-panel .setting-list,
  1680. #user-ssh-panel .setting-list {
  1681. background-color: #FFF;
  1682. }
  1683. #repo-hooks-panel .setting-list li,
  1684. #repo-hooks-history-panel .setting-list li,
  1685. #user-social-panel .setting-list li,
  1686. #user-ssh-panel .setting-list li {
  1687. padding: 8px 20px;
  1688. border-bottom: 1px solid #eaeaea;
  1689. }
  1690. #repo-hooks-panel .setting-list li.ssh:hover,
  1691. #repo-hooks-history-panel .setting-list li.ssh:hover,
  1692. #user-social-panel .setting-list li.ssh:hover,
  1693. #user-ssh-panel .setting-list li.ssh:hover {
  1694. background-color: #ffffEE;
  1695. }
  1696. #repo-hooks-panel .setting-list li i,
  1697. #repo-hooks-history-panel .setting-list li i,
  1698. #user-social-panel .setting-list li i,
  1699. #user-ssh-panel .setting-list li i {
  1700. padding-right: 5px;
  1701. }
  1702. #repo-hooks-panel .active-icon,
  1703. #repo-hooks-history-panel .active-icon,
  1704. #user-social-panel .active-icon,
  1705. #user-ssh-panel .active-icon {
  1706. width: 10px;
  1707. height: 10px;
  1708. border-radius: 6px;
  1709. padding: 0;
  1710. margin-right: 20px;
  1711. margin-top: 10px;
  1712. }
  1713. #repo-hooks-panel .ssh-content,
  1714. #repo-hooks-history-panel .ssh-content,
  1715. #user-social-panel .ssh-content,
  1716. #user-ssh-panel .ssh-content {
  1717. margin-left: 24px;
  1718. }
  1719. #repo-hooks-panel .ssh-content .octicon,
  1720. #repo-hooks-history-panel .ssh-content .octicon,
  1721. #user-social-panel .ssh-content .octicon,
  1722. #user-ssh-panel .ssh-content .octicon {
  1723. margin-right: 4px;
  1724. }
  1725. #repo-hooks-panel .ssh-content .print,
  1726. #repo-hooks-history-panel .ssh-content .print,
  1727. #user-social-panel .ssh-content .print,
  1728. #user-ssh-panel .ssh-content .print,
  1729. #repo-hooks-panel .ssh-content .activity,
  1730. #repo-hooks-history-panel .ssh-content .activity,
  1731. #user-social-panel .ssh-content .activity,
  1732. #user-ssh-panel .ssh-content .activity {
  1733. color: #888;
  1734. }
  1735. #repo-hooks-panel .ssh-delete-btn,
  1736. #repo-hooks-history-panel .ssh-delete-btn,
  1737. #user-social-panel .ssh-delete-btn,
  1738. #user-ssh-panel .ssh-delete-btn {
  1739. margin-top: 6px;
  1740. }
  1741. #user-ssh-add-form .panel-body {
  1742. background-color: #FFF;
  1743. padding: 30px 0;
  1744. }
  1745. #user-ssh-add-form .ipt {
  1746. width: 500px;
  1747. }
  1748. #user-ssh-add-form textarea {
  1749. height: 120px;
  1750. margin-left: 3px;
  1751. }
  1752. #user-ssh-add-form .field {
  1753. margin-bottom: 24px;
  1754. }
  1755. .pr-main {
  1756. margin-right: 100px;
  1757. }
  1758. .pr-sidebar {
  1759. border-left: 1px solid #DDD;
  1760. box-sizing: border-box;
  1761. position: absolute;
  1762. right: 0;
  1763. top: 12px;
  1764. }
  1765. .pr-title {
  1766. padding: 4px 0;
  1767. }
  1768. .pr-title .pr-num {
  1769. font-weight: normal;
  1770. color: #888;
  1771. }
  1772. .pr-meta {
  1773. color: #888;
  1774. padding: 4px 0 8px 0;
  1775. }
  1776. .pr-meta .pr-author {
  1777. margin: 0 8px;
  1778. color: #444;
  1779. }
  1780. .pr-meta .pr-author:hover {
  1781. text-decoration: underline;
  1782. }
  1783. .pr-meta .pr-branch {
  1784. margin: 0 4px;
  1785. font-size: 12px;
  1786. padding: 4px 6px;
  1787. }
  1788. .pr-nav {
  1789. border-bottom: 1px solid #DDD;
  1790. margin-top: 16px;
  1791. margin-bottom: 16px;
  1792. }
  1793. .pr-nav .octicon {
  1794. margin-right: 4px;
  1795. }
  1796. .pr-nav li > a {
  1797. padding: 3px 9px !important;
  1798. border: 1px solid transparent;
  1799. border-bottom: none;
  1800. border-top-left-radius: .2em;
  1801. border-top-right-radius: .2em;
  1802. }
  1803. .pr-nav li > a .label {
  1804. padding: 1px 5px;
  1805. font-size: 12px;
  1806. margin-left: 4px;
  1807. }
  1808. .pr-nav li.js-tab-nav-show > a {
  1809. background-color: #FFF;
  1810. border-color: #E6E6E6;
  1811. }
  1812. .diff-bar .diff-add {
  1813. color: #65ad4e;
  1814. }
  1815. .diff-bar .diff-delete {
  1816. color: #d9453d;
  1817. }
  1818. .diff-bar .diff-status {
  1819. width: 50px;
  1820. background-color: #d9453d;
  1821. height: 10px;
  1822. margin-top: 7px;
  1823. margin-left: 4px;
  1824. margin-right: 4px;
  1825. border-radius: .2em;
  1826. }
  1827. .diff-bar .diff-status-inner {
  1828. width: 45%;
  1829. background-color: #65ad4e;
  1830. height: 10px;
  1831. border-top-left-radius: .2em;
  1832. border-bottom-left-radius: .2em;
  1833. }
  1834. #pr-commit,
  1835. #pr-file-diff,
  1836. #issue-add-comment-preview {
  1837. display: none;
  1838. }
  1839. #pr-conversation-list {
  1840. padding-right: 30px;
  1841. box-sizing: border-box;
  1842. }
  1843. .issue-comment,
  1844. .issue-commit,
  1845. .issue-line,
  1846. .issue-merge,
  1847. .issue-add-comment {
  1848. margin-bottom: 24px;
  1849. }
  1850. .issue-comment .author-avatar img {
  1851. margin-right: 12px;
  1852. }
  1853. .issue-comment .panel {
  1854. margin-left: 60px;
  1855. margin-top: -40px;
  1856. }
  1857. .issue-comment .panel-header {
  1858. font-size: 13px;
  1859. }
  1860. .issue-comment .author-name {
  1861. font-weight: bold;
  1862. }
  1863. .issue-comment .date {
  1864. margin-left: 4px;
  1865. font-style: italic;
  1866. color: #888;
  1867. }
  1868. .issue-comment .action > * {
  1869. margin-left: 4px;
  1870. font-size: 12px;
  1871. }
  1872. .issue-comment .action i {
  1873. font-size: 13px;
  1874. }
  1875. .issue-commit {
  1876. line-height: 32px;
  1877. }
  1878. .issue-commit i,
  1879. .issue-commit .author-avatar img {
  1880. margin-right: 16px;
  1881. }
  1882. .issue-commit .sha {
  1883. margin-left: 24px;
  1884. }
  1885. .issue-commit .message {
  1886. display: block;
  1887. margin-left: 88px;
  1888. padding-top: 4px;
  1889. line-height: 24px;
  1890. }
  1891. .issue-merge .ico {
  1892. width: 40px;
  1893. height: 40px;
  1894. text-align: center;
  1895. color: #FFF;
  1896. margin-right: 12px;
  1897. }
  1898. .issue-merge .ico i {
  1899. margin-top: 8px;
  1900. font-size: 24px;
  1901. }
  1902. .issue-merge .panel {
  1903. margin-left: 60px;
  1904. margin-top: -40px;
  1905. }
  1906. .issue-merge .panel-header {
  1907. font-size: 13px;
  1908. }
  1909. .issue-merge-ok .ico {
  1910. background-color: #65AD4E;
  1911. }
  1912. .issue-merge-ok .panel,
  1913. .issue-merge-ok .panel-content,
  1914. .issue-merge-ok .panel-header {
  1915. border-color: #65AD4E;
  1916. background-color: #FFF;
  1917. }
  1918. .issue-merge-ok .panel-header {
  1919. color: #508a3e;
  1920. }
  1921. .issue-line {
  1922. height: 4px;
  1923. background-color: #E6E6E6;
  1924. }
  1925. .issue-add-comment .panel {
  1926. margin-left: 60px;
  1927. margin-top: -40px;
  1928. }
  1929. .issue-add-comment .panel-header {
  1930. font-size: 13px;
  1931. padding-bottom: 0;
  1932. }
  1933. .issue-add-comment .add-nav > li > a {
  1934. padding: 4px 12px;
  1935. color: #444;
  1936. border: 1px solid #CCC;
  1937. margin-bottom: -1px;
  1938. font-size: 14px;
  1939. border-top-left-radius: .3em;
  1940. border-top-right-radius: .3em;
  1941. }
  1942. .issue-add-comment .add-nav > li > a:hover {
  1943. background-color: #FFF;
  1944. }
  1945. .issue-add-comment .add-nav > li.js-tab-nav-show > a {
  1946. background-color: #FFF;
  1947. }
  1948. textarea#issue-add-content {
  1949. width: 100%;
  1950. box-sizing: border-box;
  1951. height: 120px;
  1952. resize: vertical;
  1953. }
  1954. .org-header-alert .alert {
  1955. margin-top: 10px;
  1956. }
  1957. .org-header {
  1958. padding: 16px 0;
  1959. background-color: #FFF;
  1960. border-bottom: 1px solid #DDD;
  1961. }
  1962. .org-header img {
  1963. padding-right: 10px;
  1964. }
  1965. #org-home-header {
  1966. min-height: 100px;
  1967. }
  1968. #org-header {
  1969. height: 48px;
  1970. }
  1971. #org-header .org-name {
  1972. padding-left: 10px;
  1973. font-size: 1.4em;
  1974. height: 50px;
  1975. line-height: 50px;
  1976. margin-bottom: 0;
  1977. }
  1978. #org-header > div > .menu-line > li.right > a {
  1979. font-size: 1.2em;
  1980. color: #444444;
  1981. }
  1982. #org-header > div > .menu-line > li.right > a:hover {
  1983. background-color: transparent;
  1984. color: #d9453d;
  1985. }
  1986. #org-header > div > .menu-line > li.right > a .octicon {
  1987. margin-right: 4px;
  1988. }
  1989. #org-header > div > .menu-line > li.right > a .label {
  1990. margin-left: 4px;
  1991. }
  1992. #org-header > div > .menu-line > li.right .current {
  1993. border-bottom: 2px solid #D26911;
  1994. }
  1995. #org-home-header-info {
  1996. padding-top: 10px;
  1997. }
  1998. #org-home-header-info h2 {
  1999. font-size: 30px;
  2000. }
  2001. #org-home-header-info ul {
  2002. list-style: none;
  2003. }
  2004. #org-home-header-info ul li {
  2005. float: left;
  2006. padding-right: 5px;
  2007. }
  2008. #org-home-repo-list {
  2009. padding: 10px 0;
  2010. }
  2011. #org-repo-list {
  2012. padding: 10px 0;
  2013. }
  2014. #org-repo-list .org-repo-item {
  2015. border-top: 1px solid #eee;
  2016. padding: 30px 20px;
  2017. }
  2018. #org-repo-list .org-repo-item .org-repo-status {
  2019. list-style: none;
  2020. color: #888;
  2021. }
  2022. #org-repo-list .org-repo-item .org-repo-status li {
  2023. float: left;
  2024. margin-right: 6px;
  2025. }
  2026. #org-repo-list .org-repo-item h2 {
  2027. margin-bottom: 5px;
  2028. }
  2029. #org-repo-list .org-repo-item .org-repo-description {
  2030. margin: 0;
  2031. font-size: 14px;
  2032. color: #666;
  2033. }
  2034. #org-repo-list .org-repo-item .org-repo-updated {
  2035. font-size: 12px;
  2036. display: block;
  2037. margin: 5px 0 0;
  2038. color: #808080;
  2039. }
  2040. .org-sidebar {
  2041. margin: -80px 0 0 20px;
  2042. }
  2043. .org-sidebar .panel-footer {
  2044. padding: .8em 1.2em;
  2045. }
  2046. .org-sidebar .member-avatar-group {
  2047. padding: 15px;
  2048. }
  2049. .org-sidebar .member-avatar-group img {
  2050. width: 59px;
  2051. height: 59px;
  2052. border-radius: 3px;
  2053. }
  2054. #org-home-team-list {
  2055. padding: 0 15px;
  2056. }
  2057. #org-home-team-list ul {
  2058. list-style: none;
  2059. padding-top: 10px;
  2060. }
  2061. #org-home-team-list ul li {
  2062. padding: 10px 0;
  2063. border-bottom: 1px solid #eee;
  2064. }
  2065. #org-home-team-list ul li:last-child {
  2066. border-bottom: 0;
  2067. }
  2068. .team-name {
  2069. display: block;
  2070. font-size: 14px;
  2071. overflow: hidden;
  2072. text-overflow: ellipsis;
  2073. white-space: nowrap;
  2074. }
  2075. .team-meta {
  2076. margin-top: 0;
  2077. margin-bottom: 0;
  2078. color: #777;
  2079. }
  2080. .org-toolbar {
  2081. padding: 10px 0;
  2082. border-bottom: 1px solid #eee;
  2083. }
  2084. #org-member-list .org-member-item {
  2085. height: 50px;
  2086. line-height: 50px;
  2087. border-bottom: 1px solid #eee;
  2088. padding: 15px 20px;
  2089. }
  2090. #org-member-list .org-member-item .member-name {
  2091. padding-left: 15px;
  2092. }
  2093. #org-member-list .org-member-item ul {
  2094. list-style: none;
  2095. }
  2096. #org-member-list .org-member-item ul li {
  2097. text-align: center;
  2098. display: inline-block;
  2099. }
  2100. .invite-box {
  2101. padding: 50px 0;
  2102. min-height: 130px;
  2103. margin: 0 auto;
  2104. width: 50%;
  2105. }
  2106. .invite-box input {
  2107. width: 300px;
  2108. }
  2109. #org-member-list-block {
  2110. padding-top: 2px;
  2111. }
  2112. .org-team-list .org-team-list-item {
  2113. float: left;
  2114. padding: 15px;
  2115. width: 555px;
  2116. }
  2117. .org-team-list .org-team-list-item .member-avatar-group {
  2118. padding: 5px 15px;
  2119. }
  2120. .org-team-list .org-team-list-item .member-avatar-group img {
  2121. width: 38px;
  2122. height: 38px;
  2123. border-radius: 3px;
  2124. }
  2125. #team-create-form .note {
  2126. margin-left: 153px;
  2127. }
  2128. #org-team-card .desc {
  2129. font-size: 14px;
  2130. padding: 10px 20px;
  2131. }
  2132. #org-team-card .team-stats {
  2133. padding: 0 20px 10px 20px;
  2134. text-transform: uppercase;
  2135. border-bottom: 1px solid #dddddd;
  2136. }
  2137. #org-team-card .panel-footer {
  2138. padding: 10px 20px;
  2139. }
  2140. #team-repositories-list .panel-body .search,
  2141. #team-members-list .panel-body .search {
  2142. padding: 4px 0 10px 10px;
  2143. border-bottom: 1px solid #dddddd;
  2144. }
  2145. #team-repositories-list li.collab,
  2146. #team-members-list li.collab {
  2147. padding-top: 10px !important;
  2148. border-bottom: 1px solid #dddddd;
  2149. }
  2150. #team-repositories-list li:last-child,
  2151. #team-members-list li:last-child {
  2152. border-bottom: 0 !important;
  2153. }
  2154. #team-repositories-list li a .octicon {
  2155. color: #888;
  2156. }
  2157. #team-repositories-list li .member {
  2158. color: #428bca;
  2159. font-size: 14px;
  2160. height: 40px;
  2161. line-height: 40px;
  2162. }
  2163. .admin-panel {
  2164. padding: 10px 20px;
  2165. }
  2166. .admin-desc {
  2167. padding: 10px 20px;
  2168. }
  2169. .admin-table {
  2170. padding: 15px 0 5px 0;
  2171. }
  2172. .dl-horizontal dt {
  2173. float: left;
  2174. width: 160px;
  2175. clear: left;
  2176. overflow: hidden;
  2177. text-overflow: ellipsis;
  2178. white-space: nowrap;
  2179. }
  2180. .admin-dl-horizontal {
  2181. padding: 20px;
  2182. }
  2183. .admin-dl-horizontal > dt {
  2184. width: 250px;
  2185. }
  2186. .admin-dl-horizontal > dd {
  2187. margin-left: 240px;
  2188. }
  2189. .profile-avatar {
  2190. width: 200px;
  2191. height: 200px;
  2192. border-radius: 6px;
  2193. }
  2194. #profile-name {
  2195. padding: 10px 0;
  2196. }
  2197. #profile-fullname {
  2198. font-size: 1.6em;
  2199. }
  2200. #profile-username {
  2201. font-size: 1.6em;
  2202. font-weight: bold;
  2203. }
  2204. .profile-info {
  2205. padding: 0 50px;
  2206. font-size: 14px;
  2207. }
  2208. .profile-info ul {
  2209. padding-bottom: 10px;
  2210. }
  2211. .profile-info ul .list-group-item {
  2212. background-color: transparent;
  2213. padding-top: 5px;
  2214. color: #666;
  2215. }
  2216. .profile-info ul .profile-rel {
  2217. width: 31%;
  2218. text-align: center;
  2219. display: inline-block;
  2220. }
  2221. .profile-info ul .profile-rel strong {
  2222. display: block;
  2223. font-size: 28px;
  2224. font-weight: bold;
  2225. line-height: 1;
  2226. }
  2227. .profile-info ul .profile-rel p {
  2228. font-size: 12px;
  2229. }
  2230. #profile-header li a {
  2231. font-size: 1.2em;
  2232. color: #444444;
  2233. padding: .4em .8em;
  2234. }
  2235. #profile-header li a:hover {
  2236. background-color: transparent;
  2237. color: #d9453d;
  2238. }
  2239. #profile-header li .current {
  2240. border-bottom: 2px solid #D26911;
  2241. }