You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gogs.css 57KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015
  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: 170%;
  91. min-width: 140px;
  92. }
  93. #footer-lang .drop-down li > a {
  94. padding: 3px 9px;
  95. }
  96. #header {
  97. background-color: #428bca;
  98. height: 45px;
  99. }
  100. #header > .menu-line > li > a {
  101. display: inline-block;
  102. color: #ffffff;
  103. }
  104. #header > .menu-line > li > a:hover {
  105. background-color: transparent;
  106. color: #fff65f;
  107. }
  108. #header > .menu-line > li.head {
  109. color: #ffffff;
  110. }
  111. #header > .menu-line > li.hover a:after {
  112. bottom: -9px;
  113. color: #ffffff;
  114. }
  115. #header > .menu-line > li.current > a {
  116. color: #fff65f;
  117. font-weight: bold;
  118. }
  119. #header-nav-user {
  120. height: 44px;
  121. }
  122. #header-nav-user img {
  123. margin: -2px 10px 0 0;
  124. border-radius: 3px;
  125. }
  126. #header-nav-sign-out > a:hover {
  127. color: #ff908b !important;
  128. }
  129. #header-nav-logo {
  130. padding: 6px 1.2em 6px 0;
  131. }
  132. #header-nav-explore,
  133. #header-nav-help {
  134. font-size: 14px;
  135. }
  136. #header-new-repo-menu {
  137. width: 180px;
  138. background-color: #FFF;
  139. top: 44px;
  140. border-top: none;
  141. left: -66px;
  142. }
  143. #header-new-repo-menu .octicon {
  144. margin-right: 6px;
  145. font-size: 1.1em;
  146. }
  147. .switching-list {
  148. width: 100%;
  149. list-style: none;
  150. }
  151. .switching-list > li {
  152. border-bottom: 1px solid #eaeaea;
  153. }
  154. .switching-list > li:last-child {
  155. border-bottom: none;
  156. }
  157. .switching-list > li > a {
  158. padding: .4em 1.2em;
  159. display: block;
  160. color: #444;
  161. }
  162. .switching-list > li > a:hover {
  163. background-color: #428bca !important;
  164. color: #fff !important;
  165. }
  166. .social-buttons .btn {
  167. border: none;
  168. font-size: 16px;
  169. border-radius: 4px;
  170. margin-right: 12px;
  171. font-family: 'PT Sans Narrow', sans-serif;
  172. padding: 5px 12px;
  173. color: #FFF;
  174. }
  175. .social-buttons .btn .fa {
  176. margin-right: 6px;
  177. font-size: 16px;
  178. }
  179. .social-buttons .twitter {
  180. background-color: #1c6399;
  181. }
  182. .social-buttons .twitter:hover {
  183. background-color: #1c5487;
  184. }
  185. .social-buttons .github {
  186. background-color: #444;
  187. }
  188. .social-buttons .github:hover {
  189. background-color: #333;
  190. }
  191. .social-buttons .google {
  192. background-color: #C03D20;
  193. }
  194. .social-buttons .google:hover {
  195. background-color: #D56060;
  196. }
  197. .social-buttons .weibo {
  198. background-color: #bf1324;
  199. }
  200. .social-buttons .weibo:hover {
  201. background-color: #b94c4a;
  202. }
  203. .social-buttons .qq {
  204. background-color: #03a2ef;
  205. }
  206. .social-buttons .qq:hover {
  207. background-color: #3cb3ff;
  208. }
  209. .main-wrapper {
  210. padding: 20px 0 40px;
  211. }
  212. .user-list {
  213. width: auto;
  214. min-width: 180px;
  215. max-width: 300px;
  216. }
  217. .user-list img {
  218. width: 28px;
  219. height: 28px;
  220. margin-right: 1em;
  221. margin-top: 1px;
  222. vertical-align: middle;
  223. }
  224. .user-list li {
  225. cursor: pointer;
  226. font-weight: bold;
  227. }
  228. .text-success {
  229. color: #3c763d;
  230. }
  231. .text-blue {
  232. color: #15c;
  233. }
  234. .text-red {
  235. color: #DD4B39;
  236. }
  237. .text-grey {
  238. color: #999999;
  239. }
  240. .text-black {
  241. color: #444444;
  242. }
  243. .text-gold {
  244. color: #a1882b;
  245. }
  246. .table {
  247. width: 100%;
  248. max-width: 100%;
  249. }
  250. .table > thead > tr > th,
  251. .table > tbody > tr > th,
  252. .table > tfoot > tr > th,
  253. .table > thead > tr > td,
  254. .table > tbody > tr > td,
  255. .table > tfoot > tr > td {
  256. border-top: 1px solid #e7eaec;
  257. line-height: 1.42857;
  258. padding: 8px;
  259. vertical-align: top;
  260. }
  261. .table th {
  262. text-align: left;
  263. }
  264. .table-striped > tbody > tr:nth-child(odd) > td,
  265. .table-striped > tbody > tr:nth-child(odd) > th {
  266. background-color: #f9f9f9;
  267. }
  268. .pagination {
  269. display: inline-block;
  270. padding-left: 0;
  271. margin: 20px 0;
  272. border-radius: 4px;
  273. }
  274. .pagination li {
  275. display: inline;
  276. }
  277. .list-unstyled {
  278. padding-left: 0;
  279. list-style: none;
  280. }
  281. .emoji {
  282. width: 1.5em;
  283. height: 1.5em;
  284. display: inline-block;
  285. }
  286. .markdown {
  287. overflow: hidden;
  288. font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
  289. font-size: 16px;
  290. line-height: 1.6;
  291. word-wrap: break-word;
  292. padding: 5px 2em 2em !important;
  293. }
  294. .markdown > *:first-child {
  295. margin-top: 0 !important;
  296. }
  297. .markdown > *:last-child {
  298. margin-bottom: 0 !important;
  299. }
  300. .markdown a:not([href]) {
  301. color: inherit;
  302. text-decoration: none;
  303. }
  304. .markdown .absent {
  305. color: #c00;
  306. }
  307. .markdown .anchor {
  308. position: absolute;
  309. top: 0;
  310. left: 0;
  311. display: block;
  312. padding-right: 6px;
  313. padding-left: 30px;
  314. margin-left: -30px;
  315. }
  316. .markdown .anchor:focus {
  317. outline: none;
  318. }
  319. .markdown h1,
  320. .markdown h2,
  321. .markdown h3,
  322. .markdown h4,
  323. .markdown h5,
  324. .markdown h6 {
  325. position: relative;
  326. margin-top: 1em;
  327. margin-bottom: 16px;
  328. font-weight: bold;
  329. line-height: 1.4;
  330. }
  331. .markdown h1 .octicon-link,
  332. .markdown h2 .octicon-link,
  333. .markdown h3 .octicon-link,
  334. .markdown h4 .octicon-link,
  335. .markdown h5 .octicon-link,
  336. .markdown h6 .octicon-link {
  337. display: none;
  338. color: #000;
  339. vertical-align: middle;
  340. }
  341. .markdown h1:hover .anchor,
  342. .markdown h2:hover .anchor,
  343. .markdown h3:hover .anchor,
  344. .markdown h4:hover .anchor,
  345. .markdown h5:hover .anchor,
  346. .markdown h6:hover .anchor {
  347. padding-left: 8px;
  348. margin-left: -30px;
  349. text-decoration: none;
  350. }
  351. .markdown h1:hover .anchor .octicon-link,
  352. .markdown h2:hover .anchor .octicon-link,
  353. .markdown h3:hover .anchor .octicon-link,
  354. .markdown h4:hover .anchor .octicon-link,
  355. .markdown h5:hover .anchor .octicon-link,
  356. .markdown h6:hover .anchor .octicon-link {
  357. display: inline-block;
  358. }
  359. .markdown h1 tt,
  360. .markdown h1 code,
  361. .markdown h2 tt,
  362. .markdown h2 code,
  363. .markdown h3 tt,
  364. .markdown h3 code,
  365. .markdown h4 tt,
  366. .markdown h4 code,
  367. .markdown h5 tt,
  368. .markdown h5 code,
  369. .markdown h6 tt,
  370. .markdown h6 code {
  371. font-size: inherit;
  372. }
  373. .markdown h1 {
  374. padding-bottom: 0.3em;
  375. font-size: 2.25em;
  376. line-height: 1.2;
  377. border-bottom: 1px solid #eee;
  378. }
  379. .markdown h1 .anchor {
  380. line-height: 1;
  381. }
  382. .markdown h2 {
  383. padding-bottom: 0.3em;
  384. font-size: 1.75em;
  385. line-height: 1.225;
  386. border-bottom: 1px solid #eee;
  387. }
  388. .markdown h2 .anchor {
  389. line-height: 1;
  390. }
  391. .markdown h3 {
  392. font-size: 1.5em;
  393. line-height: 1.43;
  394. }
  395. .markdown h3 .anchor {
  396. line-height: 1.2;
  397. }
  398. .markdown h4 {
  399. font-size: 1.25em;
  400. }
  401. .markdown h4 .anchor {
  402. line-height: 1.2;
  403. }
  404. .markdown h5 {
  405. font-size: 1em;
  406. }
  407. .markdown h5 .anchor {
  408. line-height: 1.1;
  409. }
  410. .markdown h6 {
  411. font-size: 1em;
  412. color: #777;
  413. }
  414. .markdown h6 .anchor {
  415. line-height: 1.1;
  416. }
  417. .markdown p,
  418. .markdown blockquote,
  419. .markdown ul,
  420. .markdown ol,
  421. .markdown dl,
  422. .markdown table,
  423. .markdown pre {
  424. margin-top: 0;
  425. margin-bottom: 16px;
  426. }
  427. .markdown hr {
  428. height: 4px;
  429. padding: 0;
  430. margin: 16px 0;
  431. background-color: #e7e7e7;
  432. border: 0 none;
  433. }
  434. .markdown ul,
  435. .markdown ol {
  436. padding-left: 2em;
  437. }
  438. .markdown ul.no-list,
  439. .markdown ol.no-list {
  440. padding: 0;
  441. list-style-type: none;
  442. }
  443. .markdown ul ul,
  444. .markdown ul ol,
  445. .markdown ol ol,
  446. .markdown ol ul {
  447. margin-top: 0;
  448. margin-bottom: 0;
  449. }
  450. .markdown ol ol,
  451. .markdown ul ol {
  452. list-style-type: lower-roman;
  453. }
  454. .markdown li > p {
  455. margin-top: 16px;
  456. }
  457. .markdown dl {
  458. padding: 0;
  459. }
  460. .markdown dl dt {
  461. padding: 0;
  462. margin-top: 16px;
  463. font-size: 1em;
  464. font-style: italic;
  465. font-weight: bold;
  466. }
  467. .markdown dl dd {
  468. padding: 0 16px;
  469. margin-bottom: 16px;
  470. }
  471. .markdown blockquote {
  472. padding: 0 15px;
  473. color: #777;
  474. border-left: 4px solid #ddd;
  475. }
  476. .markdown blockquote > :first-child {
  477. margin-top: 0;
  478. }
  479. .markdown blockquote > :last-child {
  480. margin-bottom: 0;
  481. }
  482. .markdown table {
  483. display: block;
  484. width: 100%;
  485. overflow: auto;
  486. word-break: normal;
  487. word-break: keep-all;
  488. }
  489. .markdown table th {
  490. font-weight: bold;
  491. }
  492. .markdown table th,
  493. .markdown table td {
  494. padding: 6px 13px !important;
  495. border: 1px solid #ddd;
  496. }
  497. .markdown table tr {
  498. background-color: #fff;
  499. border-top: 1px solid #ccc;
  500. }
  501. .markdown table tr:nth-child(2n) {
  502. background-color: #f8f8f8;
  503. }
  504. .markdown img {
  505. max-width: 100%;
  506. box-sizing: border-box;
  507. }
  508. .markdown .emoji {
  509. max-width: none;
  510. }
  511. .markdown span.frame {
  512. display: block;
  513. overflow: hidden;
  514. }
  515. .markdown span.frame > span {
  516. display: block;
  517. float: left;
  518. width: auto;
  519. padding: 7px;
  520. margin: 13px 0 0;
  521. overflow: hidden;
  522. border: 1px solid #ddd;
  523. }
  524. .markdown span.frame span img {
  525. display: block;
  526. float: left;
  527. }
  528. .markdown span.frame span span {
  529. display: block;
  530. padding: 5px 0 0;
  531. clear: both;
  532. color: #333;
  533. }
  534. .markdown span.align-center {
  535. display: block;
  536. overflow: hidden;
  537. clear: both;
  538. }
  539. .markdown span.align-center > span {
  540. display: block;
  541. margin: 13px auto 0;
  542. overflow: hidden;
  543. text-align: center;
  544. }
  545. .markdown span.align-center span img {
  546. margin: 0 auto;
  547. text-align: center;
  548. }
  549. .markdown span.align-right {
  550. display: block;
  551. overflow: hidden;
  552. clear: both;
  553. }
  554. .markdown span.align-right > span {
  555. display: block;
  556. margin: 13px 0 0;
  557. overflow: hidden;
  558. text-align: right;
  559. }
  560. .markdown span.align-right span img {
  561. margin: 0;
  562. text-align: right;
  563. }
  564. .markdown span.float-left {
  565. display: block;
  566. float: left;
  567. margin-right: 13px;
  568. overflow: hidden;
  569. }
  570. .markdown span.float-left span {
  571. margin: 13px 0 0;
  572. }
  573. .markdown span.float-right {
  574. display: block;
  575. float: right;
  576. margin-left: 13px;
  577. overflow: hidden;
  578. }
  579. .markdown span.float-right > span {
  580. display: block;
  581. margin: 13px auto 0;
  582. overflow: hidden;
  583. text-align: right;
  584. }
  585. .markdown code,
  586. .markdown tt {
  587. padding: 0;
  588. padding-top: 0.2em;
  589. padding-bottom: 0.2em;
  590. margin: 0;
  591. font-size: 85%;
  592. background-color: rgba(0, 0, 0, 0.04);
  593. border-radius: 3px;
  594. }
  595. .markdown code:before,
  596. .markdown code:after,
  597. .markdown tt:before,
  598. .markdown tt:after {
  599. letter-spacing: -0.2em;
  600. content: "\00a0";
  601. }
  602. .markdown code br,
  603. .markdown tt br {
  604. display: none;
  605. }
  606. .markdown del code {
  607. text-decoration: inherit;
  608. }
  609. .markdown pre > code {
  610. padding: 0;
  611. margin: 0;
  612. font-size: 100%;
  613. word-break: normal;
  614. white-space: pre;
  615. background: transparent;
  616. border: 0;
  617. }
  618. .markdown .highlight {
  619. margin-bottom: 16px;
  620. }
  621. .markdown .highlight pre,
  622. .markdown pre {
  623. padding: 16px;
  624. overflow: auto;
  625. font-size: 85%;
  626. line-height: 1.45;
  627. background-color: #f7f7f7;
  628. border-radius: 3px;
  629. }
  630. .markdown .highlight pre {
  631. margin-bottom: 0;
  632. word-break: normal;
  633. }
  634. .markdown pre {
  635. word-wrap: normal;
  636. }
  637. .markdown pre code,
  638. .markdown pre tt {
  639. display: inline;
  640. max-width: initial;
  641. padding: 0;
  642. margin: 0;
  643. overflow: initial;
  644. line-height: inherit;
  645. word-wrap: normal;
  646. background-color: transparent;
  647. border: 0;
  648. }
  649. .markdown pre code:before,
  650. .markdown pre code:after,
  651. .markdown pre tt:before,
  652. .markdown pre tt:after {
  653. content: normal;
  654. }
  655. .markdown kbd {
  656. display: inline-block;
  657. padding: 3px 5px;
  658. font-size: 11px;
  659. line-height: 10px;
  660. color: #555;
  661. vertical-align: middle;
  662. background-color: #fcfcfc;
  663. border: solid 1px #ccc;
  664. border-bottom-color: #bbb;
  665. border-radius: 3px;
  666. box-shadow: inset 0 -1px 0 #bbbbbb;
  667. }
  668. .markdown .csv-data td,
  669. .markdown .csv-data th {
  670. padding: 5px;
  671. overflow: hidden;
  672. font-size: 12px;
  673. line-height: 1;
  674. text-align: left;
  675. white-space: nowrap;
  676. }
  677. .markdown .csv-data .blob-num {
  678. padding: 10px 8px 9px;
  679. text-align: right;
  680. background: #fff;
  681. border: 0;
  682. }
  683. .markdown .csv-data tr {
  684. border-top: 0;
  685. }
  686. .markdown .csv-data th {
  687. font-weight: bold;
  688. background: #f8f8f8;
  689. border-top: 0;
  690. }
  691. /* Author: jmblog */
  692. /* Project: https://github.com/jmblog/color-themes-for-google-code-prettify */
  693. /* GitHub Theme */
  694. /* Pretty printing styles. Used with prettify.js. */
  695. /* SPAN elements with the classes below are added by prettyprint. */
  696. /* plain text */
  697. .pln {
  698. color: #333333;
  699. }
  700. @media screen {
  701. /* string content */
  702. .str {
  703. color: #dd1144;
  704. }
  705. /* a keyword */
  706. .kwd {
  707. color: #333333;
  708. }
  709. /* a comment */
  710. .com {
  711. color: #999988;
  712. font-style: italic;
  713. }
  714. /* a type name */
  715. .typ {
  716. color: #445588;
  717. }
  718. /* a literal value */
  719. .lit {
  720. color: #445588;
  721. }
  722. /* punctuation */
  723. .pun {
  724. color: #333333;
  725. }
  726. /* lisp open bracket */
  727. .opn {
  728. color: #333333;
  729. }
  730. /* lisp close bracket */
  731. .clo {
  732. color: #333333;
  733. }
  734. /* a markup tag name */
  735. .tag {
  736. color: navy;
  737. }
  738. /* a markup attribute name */
  739. .atn {
  740. color: teal;
  741. }
  742. /* a markup attribute value */
  743. .atv {
  744. color: #dd1144;
  745. }
  746. /* a declaration */
  747. .dec {
  748. color: #333333;
  749. }
  750. /* a variable name */
  751. .var {
  752. color: teal;
  753. }
  754. /* a function name */
  755. .fun {
  756. color: #990000;
  757. }
  758. }
  759. /* Use higher contrast and text-weight for printable form. */
  760. @media print, projection {
  761. .str {
  762. color: #006600;
  763. }
  764. .kwd {
  765. color: #006;
  766. font-weight: bold;
  767. }
  768. .com {
  769. color: #600;
  770. font-style: italic;
  771. }
  772. .typ {
  773. color: #404;
  774. font-weight: bold;
  775. }
  776. .lit {
  777. color: #004444;
  778. }
  779. .pun,
  780. .opn,
  781. .clo {
  782. color: #444400;
  783. }
  784. .tag {
  785. color: #006;
  786. font-weight: bold;
  787. }
  788. .atn {
  789. color: #440044;
  790. }
  791. .atv {
  792. color: #006600;
  793. }
  794. }
  795. /* Specify class=linenums on a pre to get line numbering */
  796. ol.linenums {
  797. margin-top: 0;
  798. margin-bottom: 0;
  799. }
  800. #promo-wrapper {
  801. padding-top: 50px;
  802. background-color: #428bca;
  803. }
  804. #promo-logo {
  805. margin-right: 50px;
  806. padding-bottom: 50px;
  807. }
  808. #promo-logo img {
  809. max-width: 250px;
  810. }
  811. #promo-content {
  812. color: #FFF;
  813. margin-left: 300px;
  814. }
  815. #promo-content h1,
  816. #promo-content h2 {
  817. font-family: 'PT Sans Narrow', sans-serif;
  818. line-height: 60px;
  819. margin-bottom: 0;
  820. text-shadow: 0 2px 1px rgba(0, 0, 0, 0.5);
  821. }
  822. #promo-content h1 {
  823. font-size: 96px;
  824. line-height: 96px;
  825. margin-bottom: 30px;
  826. }
  827. #promo-content h2 {
  828. font-size: 52px;
  829. line-height: 70px;
  830. font-weight: normal;
  831. }
  832. #promo-form {
  833. padding: 40px 0;
  834. }
  835. #promo-form .ipt-large {
  836. border: none;
  837. border-radius: 4px;
  838. font-size: 18px;
  839. margin-right: 12px;
  840. }
  841. #promo-form .ipt-large:focus {
  842. box-shadow: 0 0 3px #FFF;
  843. }
  844. #promo-form .btn-large {
  845. border-radius: 4px;
  846. font-size: 18px;
  847. margin-right: 12px;
  848. }
  849. #promo-social {
  850. padding-bottom: 60px;
  851. }
  852. #promo-social .qq {
  853. box-shadow: 0 0 1px #1c6399;
  854. }
  855. #feature-wrapper {
  856. font-family: Lato, sans-serif;
  857. font-size: 18px;
  858. padding: 50px 0 100px 0;
  859. }
  860. #feature-wrapper .octicon {
  861. color: #d9453d;
  862. font-size: 60px;
  863. height: 60px;
  864. width: 60px;
  865. line-height: 60px;
  866. margin-right: 12px;
  867. vertical-align: middle;
  868. display: inline-block;
  869. }
  870. #feature-wrapper b {
  871. color: #000;
  872. font-size: 24px;
  873. display: inline-block;
  874. line-height: 60px;
  875. }
  876. #feature-wrapper p {
  877. margin: 1em 0;
  878. line-height: 40px;
  879. padding-right: 30px;
  880. }
  881. #feature-wrapper a {
  882. color: #d9453d;
  883. }
  884. #feature-wrapper a:hover {
  885. color: #ff635a;
  886. }
  887. #feature-wrapper .grid-1-2 {
  888. margin-bottom: 30px;
  889. }
  890. #install-form {
  891. padding: 15px;
  892. }
  893. #install-form label {
  894. width: 35%;
  895. }
  896. #install-form input {
  897. width: 30%;
  898. }
  899. #install-form input[type="checkbox"],
  900. #install-form input[type="radio"] {
  901. width: auto;
  902. }
  903. /*
  904. The dashboard page style
  905. */
  906. #dashboard-header {
  907. border-bottom: 1px solid #d6d6d6;
  908. height: 69px;
  909. background-color: #FFF;
  910. }
  911. #dashboard-header > .menu-line > li {
  912. padding: 12px 6px;
  913. }
  914. #dashboard-header > .menu-line > li.drop {
  915. margin-left: -22px;
  916. }
  917. #dashboard-header > .menu-line > li.drop:hover a {
  918. background-color: transparent;
  919. }
  920. #dashboard-header > .menu-line > li.right > a {
  921. font-size: 1.2em;
  922. color: #444444;
  923. margin: -12px 0px;
  924. padding: 22px 0.8em;
  925. }
  926. #dashboard-header > .menu-line > li.right > a:hover {
  927. background-color: transparent;
  928. color: #d9453d;
  929. }
  930. #dashboard-header > .menu-line > li.right > a .octicon {
  931. margin-right: 6px;
  932. }
  933. #dashboard-header > .menu-line > li.right .current {
  934. border-bottom: 2px solid #D26911;
  935. }
  936. #dashboard-selection-menu a img {
  937. margin: -4px 10px 0 0;
  938. }
  939. #dashboard {
  940. padding: 1.5em;
  941. }
  942. #dashboard-sidebar .panel-header h4 {
  943. margin: 0;
  944. }
  945. #dashboard-sidebar > .panel {
  946. margin-bottom: 24px;
  947. border-bottom-left-radius: .3em;
  948. border-bottom-right-radius: .3em;
  949. }
  950. #dashboard-sidebar-menu {
  951. border-top-left-radius: .3em;
  952. border-top-right-radius: .3em;
  953. width: 100%;
  954. height: 32px;
  955. }
  956. #dashboard-sidebar-menu > li {
  957. border: 1px solid #d6d6d6;
  958. float: left;
  959. margin-right: -1px;
  960. border-bottom: none;
  961. }
  962. #dashboard-sidebar-menu > li > a {
  963. padding-top: .3em;
  964. padding-bottom: .3em;
  965. }
  966. #dashboard-sidebar-menu > li.first {
  967. border-top-left-radius: .3em;
  968. }
  969. #dashboard-sidebar-menu > li.first > a {
  970. border-top-left-radius: .3em;
  971. }
  972. #dashboard-sidebar-menu > li.drop {
  973. border: none;
  974. float: right;
  975. }
  976. #dashboard-sidebar-menu > li.js-tab-nav-show {
  977. background-color: #EEEEEE;
  978. }
  979. #dashboard-sidebar-menu > li.last {
  980. border-top-right-radius: .3em;
  981. }
  982. #dashboard-sidebar-menu > li.last > a {
  983. border-top-right-radius: .3em;
  984. }
  985. #dashboard-my-mirror li,
  986. #dashboard-my-org li,
  987. #dashboard-my-repo li {
  988. border-bottom: 1px solid #EAEAEA;
  989. }
  990. #dashboard-my-mirror li.private,
  991. #dashboard-my-org li.private,
  992. #dashboard-my-repo li.private {
  993. background-color: #fcf8e9;
  994. }
  995. #dashboard-my-mirror li:last-child,
  996. #dashboard-my-org li:last-child,
  997. #dashboard-my-repo li:last-child {
  998. border-bottom: none;
  999. }
  1000. #dashboard-my-mirror li a,
  1001. #dashboard-my-org li a,
  1002. #dashboard-my-repo li a {
  1003. padding: 6px 1.2em;
  1004. display: block;
  1005. }
  1006. #dashboard-my-mirror li a .octicon,
  1007. #dashboard-my-org li a .octicon,
  1008. #dashboard-my-repo li a .octicon {
  1009. margin-right: 6px;
  1010. color: #888;
  1011. }
  1012. #dashboard-my-mirror li a:hover .repo-name,
  1013. #dashboard-my-org li a:hover .repo-name,
  1014. #dashboard-my-repo li a:hover .repo-name {
  1015. text-decoration: underline;
  1016. }
  1017. #dashboard-my-mirror .repo-name,
  1018. #dashboard-my-org .repo-name,
  1019. #dashboard-my-repo .repo-name {
  1020. font-size: 1.1em;
  1021. }
  1022. #dashboard-my-mirror .repo-star,
  1023. #dashboard-my-org .repo-star,
  1024. #dashboard-my-repo .repo-star {
  1025. color: #888;
  1026. }
  1027. #dashboard-my-mirror .repo-contrib-header,
  1028. #dashboard-my-org .repo-contrib-header,
  1029. #dashboard-my-repo .repo-contrib-header {
  1030. border-top: 1px solid #d6d6d6;
  1031. }
  1032. #dashboard-my-mirror .panel-header,
  1033. #dashboard-my-org .panel-header,
  1034. #dashboard-my-repo .panel-header {
  1035. font-size: 14px;
  1036. }
  1037. #dashboard-my-repo .panel-header .octicon {
  1038. margin-right: 6px;
  1039. font-size: 12px;
  1040. }
  1041. #dashboard-my-repo .repo-count {
  1042. margin-left: 4px;
  1043. }
  1044. #dashboard-my-org,
  1045. #dashboard-my-mirror {
  1046. display: none;
  1047. }
  1048. #dashboard-new-repo {
  1049. width: 50px;
  1050. height: 33px;
  1051. padding-top: 6px;
  1052. margin-right: 1px;
  1053. border-top-left-radius: .3em;
  1054. border-top-right-radius: .3em;
  1055. }
  1056. #dashboard-new-repo .octicon {
  1057. font-size: 20px;
  1058. }
  1059. #dashboard-new-repo-menu {
  1060. top: 33px;
  1061. width: 180px;
  1062. background-color: #FFF;
  1063. left: -132px;
  1064. }
  1065. #dashboard-new-repo-menu .octicon {
  1066. margin-right: 6px;
  1067. font-size: 1.1em;
  1068. }
  1069. #dashboard-selection-menu {
  1070. width: auto;
  1071. max-width: 300px;
  1072. }
  1073. #dashboard-selection-menu > .drop-down {
  1074. top: 56px;
  1075. left: 22px;
  1076. }
  1077. #dashboard-selection-menu li {
  1078. white-space: nowrap;
  1079. }
  1080. #dashboard-selection-menu li.checked .octicon {
  1081. opacity: 1;
  1082. }
  1083. #dashboard-selection-menu li a {
  1084. text-overflow: ellipsis;
  1085. -o-text-overflow: ellipsis;
  1086. overflow: hidden;
  1087. }
  1088. #dashboard-switch-menu {
  1089. border-bottom-left-radius: .3em;
  1090. border-bottom-right-radius: .3em;
  1091. }
  1092. #dashboard-switch-menu > li > a img {
  1093. margin-top: 0;
  1094. }
  1095. #dashboard-switch-menu > li > a .octicon {
  1096. margin-right: 12px;
  1097. }
  1098. #dashboard-switch-menu > li:last-child > a {
  1099. border-bottom-left-radius: .3em;
  1100. border-bottom-right-radius: .3em;
  1101. }
  1102. #dashboard-switch-menu > li.org > a .octicon {
  1103. opacity: 0;
  1104. }
  1105. #dashboard-switch-menu > li.checked > a {
  1106. font-weight: bold;
  1107. }
  1108. #dashboard-switch-menu > li.checked > a .octicon {
  1109. opacity: 1;
  1110. }
  1111. #dashboard-news {
  1112. padding-bottom: 60px;
  1113. }
  1114. #dashboard-news .news {
  1115. margin-right: 2.4em;
  1116. padding-bottom: 1em;
  1117. margin-bottom: 1em;
  1118. border-bottom: 1px solid #E6E6E6;
  1119. min-height: 30px;
  1120. }
  1121. #dashboard-news .news .mega-octicon {
  1122. color: #CCC;
  1123. }
  1124. #dashboard-news .news .avatar {
  1125. margin-right: 1.2em;
  1126. }
  1127. #dashboard-news .news .news-content,
  1128. #dashboard-news .news .news-time {
  1129. color: #888;
  1130. }
  1131. #dashboard-news .push-news .news-content li {
  1132. margin-left: 1em;
  1133. }
  1134. #dashboard-news .push-news .news-content li img {
  1135. vertical-align: inherit;
  1136. margin-bottom: -2px;
  1137. }
  1138. /*
  1139. The register and sign-in page style
  1140. */
  1141. #sign-wrapper {
  1142. padding: 60px 0;
  1143. }
  1144. .sign-panel {
  1145. background-color: #ffffff;
  1146. }
  1147. .sign-form.form-align .field {
  1148. margin: 1.2em 0 2em 0;
  1149. }
  1150. .sign-form.form-align .ipt-large {
  1151. width: 300px;
  1152. }
  1153. .sign-form.form-align label,
  1154. .sign-form.form-align .form-label {
  1155. width: 160px;
  1156. }
  1157. .sign-form.form-align .chk-label {
  1158. width: auto;
  1159. text-align: left;
  1160. margin-left: 176px;
  1161. }
  1162. .sign-form.form-align .alert {
  1163. margin: 0 30px 24px 30px;
  1164. }
  1165. .sign-form.form-align:hover {
  1166. box-shadow: 0 0 6px #CCC;
  1167. }
  1168. .sign-form.container {
  1169. padding: 0;
  1170. width: 600px;
  1171. margin-bottom: 80px;
  1172. }
  1173. #sign-up-form .panel-content {
  1174. margin-top: 1.2em;
  1175. }
  1176. #sign-up-form h2 {
  1177. margin: .5em 1em;
  1178. }
  1179. #sign-social {
  1180. position: relative;
  1181. margin: 40px 0;
  1182. }
  1183. #sign-social .or {
  1184. position: absolute;
  1185. width: 30px;
  1186. top: -52px;
  1187. left: 50%;
  1188. background-color: #FFF;
  1189. margin-left: -15px;
  1190. }
  1191. #repo-wrapper {
  1192. padding-bottom: 100px;
  1193. }
  1194. #repo-header {
  1195. height: 69px;
  1196. border-bottom: 1px solid #d6d6d6;
  1197. background-color: #ffffff;
  1198. }
  1199. #repo-header-name {
  1200. line-height: 66px;
  1201. color: #888888;
  1202. font-size: 1.6em;
  1203. font-weight: normal;
  1204. margin-bottom: 0;
  1205. }
  1206. #repo-header-name i {
  1207. margin-right: 12px;
  1208. vertical-align: middle;
  1209. }
  1210. #repo-header-name .divider {
  1211. margin: 0 4px;
  1212. }
  1213. #repo-header-meta {
  1214. line-height: 66px;
  1215. }
  1216. #repo-header-meta li > a {
  1217. padding: 0;
  1218. }
  1219. #repo-header-meta li > a:hover {
  1220. background-color: transparent;
  1221. }
  1222. #repo-header-meta a > .btn {
  1223. line-height: 16px;
  1224. margin-left: 16px;
  1225. font-size: 13px;
  1226. }
  1227. #repo-header-meta a > .btn i {
  1228. margin-right: 6px;
  1229. }
  1230. #repo-header-meta a > .btn .num {
  1231. margin-left: 6px;
  1232. }
  1233. #repo-header-download-btn > .btn > i {
  1234. margin-right: 0 !important;
  1235. }
  1236. #repo-header-download-btn:hover:after,
  1237. #repo-header-download-btn:hover .btn {
  1238. background-color: #383838;
  1239. color: #FFF;
  1240. }
  1241. #repo-header-download-btn:after {
  1242. background-color: #444444;
  1243. padding: 9px 16px 8px 0;
  1244. margin-left: -8px !important;
  1245. color: #FFF;
  1246. border-top: 1px solid #444444;
  1247. border-bottom: 1px solid #444444;
  1248. border-top-right-radius: .25em;
  1249. border-bottom-right-radius: .25em;
  1250. }
  1251. #repo-header-download-drop {
  1252. line-height: 24px;
  1253. width: 460px;
  1254. top: 50px;
  1255. left: -390px;
  1256. padding: 20px;
  1257. box-sizing: border-box;
  1258. z-index: 1;
  1259. }
  1260. #repo-header-download-drop .btn > i {
  1261. margin-right: 6px;
  1262. }
  1263. #repo-header-download-drop button,
  1264. #repo-header-download-drop input {
  1265. font-size: 11px;
  1266. }
  1267. #repo-header-download-drop #repo-clone-copy {
  1268. width: 85px;
  1269. text-overflow: clip;
  1270. }
  1271. #repo-content {
  1272. padding-top: 18px;
  1273. padding-bottom: 18px;
  1274. }
  1275. .repo-wide-wrapper {
  1276. padding: 18px;
  1277. position: relative;
  1278. }
  1279. #repo-clone-url {
  1280. border-right: none;
  1281. width: 190px;
  1282. border-left: none;
  1283. cursor: default;
  1284. }
  1285. #repo-clone-help {
  1286. clear: both;
  1287. line-height: 48px;
  1288. }
  1289. #repo-clone-zip {
  1290. line-height: 48px;
  1291. }
  1292. #repo-clone-zip a {
  1293. cursor: pointer;
  1294. color: white;
  1295. overflow: visible;
  1296. padding: .6em 1.2em;
  1297. }
  1298. #repo-clone-zip .btn {
  1299. margin: 0 6px;
  1300. }
  1301. #repo-desc {
  1302. font-size: 1.2em;
  1303. }
  1304. #repo-desc .no-description {
  1305. color: #999;
  1306. }
  1307. #repo-sidebar-nav .label {
  1308. font-size: 12px;
  1309. line-height: 1.4em;
  1310. margin-top: 2px;
  1311. }
  1312. #repo-sidebar-nav i {
  1313. margin-right: 6px;
  1314. }
  1315. #repo-sidebar-mini {
  1316. margin-top: 6px;
  1317. width: 60px;
  1318. }
  1319. #repo-sidebar-mini li {
  1320. margin-bottom: 4px;
  1321. }
  1322. #repo-sidebar-mini li > a {
  1323. position: relative;
  1324. padding-left: 12px;
  1325. width: 24px;
  1326. text-align: center;
  1327. }
  1328. #repo-sidebar-mini li > a > i.octicon {
  1329. font-size: 21px;
  1330. }
  1331. #repo-sidebar-mini .num {
  1332. position: absolute;
  1333. font-size: 12px;
  1334. top: 0;
  1335. left: 36px;
  1336. padding: 0 2px;
  1337. min-width: 16px;
  1338. height: 16px;
  1339. text-align: center;
  1340. line-height: 16px;
  1341. border-radius: 4px;
  1342. opacity: 0.7;
  1343. -webkit-transform: scale(0.9);
  1344. font-weight: bold;
  1345. }
  1346. #repo-file-nav {
  1347. padding: .6em 0 1em 0;
  1348. }
  1349. #repo-file-nav > li > a {
  1350. padding-left: 0;
  1351. }
  1352. #repo-file-nav > li > a:hover {
  1353. background-color: transparent;
  1354. }
  1355. #repo-file-nav li.repo-jump > a {
  1356. padding-right: 0;
  1357. }
  1358. #repo-file-nav li.repo-jump > a .btn {
  1359. margin-left: -1px;
  1360. }
  1361. #repo-branch-switch > a .btn {
  1362. padding-right: 30px;
  1363. }
  1364. #repo-branch-switch > a:after {
  1365. position: absolute;
  1366. top: 12px;
  1367. right: 30px;
  1368. margin-left: 0;
  1369. color: #444444;
  1370. }
  1371. #repo-branch-switch > .drop-down {
  1372. top: 40px;
  1373. left: 0;
  1374. }
  1375. #repo-branch-filter-ipt {
  1376. width: 100%;
  1377. border-left: none;
  1378. border-right: none;
  1379. box-sizing: border-box;
  1380. }
  1381. #repo-branch-tag .tab-nav {
  1382. border-bottom: 1px solid #EAEAEA;
  1383. }
  1384. #repo-branch-tag .tab-nav a {
  1385. padding: .3em .8em;
  1386. }
  1387. #repo-branch-tag .tab-nav .js-tab-nav-show {
  1388. background-color: #EEE;
  1389. font-weight: bold;
  1390. }
  1391. #repo-branch-tag .switching-list {
  1392. max-height: 300px;
  1393. overflow-y: auto;
  1394. }
  1395. #repo-branch-list li i,
  1396. #repo-tag-list li i {
  1397. margin-right: 12px;
  1398. opacity: 0;
  1399. }
  1400. #repo-branch-list li.checked i,
  1401. #repo-tag-list li.checked i {
  1402. opacity: 1;
  1403. }
  1404. #repo-bread .bread {
  1405. padding-right: 0;
  1406. font-size: 16px;
  1407. font-weight: bold;
  1408. }
  1409. #repo-main {
  1410. padding-right: 40px;
  1411. box-sizing: border-box;
  1412. }
  1413. #repo-files-table {
  1414. margin-bottom: 20px;
  1415. }
  1416. #repo-files-table .sha .label {
  1417. font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  1418. }
  1419. #repo-files-table th,
  1420. #repo-files-table td {
  1421. text-align: left;
  1422. line-height: 32px;
  1423. }
  1424. #repo-files-table td.icon {
  1425. width: 16px;
  1426. padding-right: .1em;
  1427. padding-left: 1em;
  1428. }
  1429. #repo-files-table td.name {
  1430. max-width: 120px;
  1431. }
  1432. #repo-files-table td.name .text-truncate {
  1433. max-width: 100%;
  1434. }
  1435. #repo-files-table td.age {
  1436. max-width: 120px;
  1437. text-align: right;
  1438. }
  1439. #repo-files-table td.msg {
  1440. max-width: 440px;
  1441. }
  1442. #repo-files-table td.msg .text-truncate {
  1443. max-width: 100%;
  1444. }
  1445. #repo-files-table td.age,
  1446. #repo-files-table td.size,
  1447. #repo-files-table td.msg a {
  1448. color: #888;
  1449. }
  1450. #repo-files-table td.msg a:hover {
  1451. color: #428BCA;
  1452. text-decoration: underline;
  1453. }
  1454. #repo-files-table td.message .text-truncate {
  1455. max-width: 360px;
  1456. }
  1457. #repo-files-table tbody {
  1458. background-color: #FFF;
  1459. }
  1460. #repo-files-table tbody tr:hover {
  1461. background-color: #ffffEE;
  1462. }
  1463. #repo-files-table thead {
  1464. background-color: #F0F0F0;
  1465. }
  1466. #repo-files-table thead .author a {
  1467. margin: 0 .4em;
  1468. }
  1469. #repo-files-table thead .last-commit strong {
  1470. color: #444;
  1471. }
  1472. #repo-files-table thead .last-commit .text-truncate {
  1473. max-width: 440px;
  1474. margin-left: .4em;
  1475. }
  1476. #repo-files-table thead .last-commit .text-truncate,
  1477. #repo-files-table thead .age {
  1478. font-weight: normal;
  1479. color: #888;
  1480. }
  1481. #repo-readme,
  1482. #repo-read-file {
  1483. margin-bottom: 80px;
  1484. }
  1485. #repo-bare-start {
  1486. margin-bottom: 100px;
  1487. }
  1488. #repo-bare-start .panel-content {
  1489. background-color: #FFF;
  1490. }
  1491. #repo-bare-start pre {
  1492. margin: 0 40px;
  1493. padding: 6px 10px;
  1494. border: 1px solid #ddd;
  1495. background: #f8f8f8;
  1496. }
  1497. .repo-bare #repo-bare-start h2 {
  1498. margin-top: 30px;
  1499. margin-bottom: 24px;
  1500. }
  1501. .repo-bare #repo-header-meta {
  1502. display: none;
  1503. }
  1504. .repo-bare .btn-first {
  1505. margin-left: 200px;
  1506. }
  1507. .repo-bare #repo-clone-copy {
  1508. margin-right: 200px;
  1509. }
  1510. .repo-bare #repo-clone-help {
  1511. clear: both;
  1512. width: 100%;
  1513. }
  1514. .repo-bare #repo-clone-url {
  1515. width: 520px;
  1516. }
  1517. /* repository create */
  1518. #team-create-form,
  1519. #repo-migrate-form,
  1520. #repo-create-form {
  1521. width: 800px;
  1522. margin: 60px auto auto auto;
  1523. background: white;
  1524. }
  1525. #team-create-form h2,
  1526. #repo-migrate-form h2,
  1527. #repo-create-form h2 {
  1528. margin: .5em 1em;
  1529. }
  1530. #team-create-form .field,
  1531. #repo-migrate-form .field,
  1532. #repo-create-form .field {
  1533. margin: 1.2em 0 2em 0;
  1534. }
  1535. #team-create-form .ipt,
  1536. #repo-migrate-form .ipt,
  1537. #repo-create-form .ipt {
  1538. width: 540px;
  1539. }
  1540. #team-create-form textarea,
  1541. #repo-migrate-form textarea,
  1542. #repo-create-form textarea {
  1543. height: 120px;
  1544. }
  1545. #team-create-form .avatar,
  1546. #repo-migrate-form .avatar,
  1547. #repo-create-form .avatar {
  1548. vertical-align: middle;
  1549. margin-right: .6em;
  1550. width: 28px;
  1551. height: 28px;
  1552. }
  1553. #team-create-form:hover,
  1554. #repo-migrate-form:hover,
  1555. #repo-create-form:hover {
  1556. box-shadow: 0px 0px 6px #CCC;
  1557. }
  1558. #repo-create-cancel {
  1559. margin-left: 4em;
  1560. }
  1561. #release-new-target-branch-list,
  1562. #repo-create-owner-list {
  1563. top: 30px;
  1564. left: 0;
  1565. width: auto;
  1566. max-width: 300px;
  1567. }
  1568. #release-new-target-branch-list .octicon,
  1569. #repo-create-owner-list .octicon {
  1570. margin-right: 12px;
  1571. opacity: 0;
  1572. }
  1573. #release-new-target-branch-list .avatar,
  1574. #repo-create-owner-list .avatar {
  1575. width: 20px;
  1576. height: 20px;
  1577. }
  1578. #release-new-target-branch-list li,
  1579. #repo-create-owner-list li {
  1580. white-space: nowrap;
  1581. }
  1582. #release-new-target-branch-list li.checked .octicon,
  1583. #repo-create-owner-list li.checked .octicon {
  1584. opacity: 1;
  1585. }
  1586. #release-new-target-branch-list li a,
  1587. #repo-create-owner-list li a {
  1588. text-overflow: ellipsis;
  1589. -o-text-overflow: ellipsis;
  1590. overflow: hidden;
  1591. }
  1592. #release-new-target-branch-list {
  1593. margin-top: -1px;
  1594. min-width: 150px;
  1595. }
  1596. #release-new-title {
  1597. margin-top: 10px;
  1598. }
  1599. #release-new-content {
  1600. width: 100%;
  1601. }
  1602. #release-preview-btn .btn {
  1603. border-left: 0;
  1604. }
  1605. #release-preview.markdown {
  1606. margin-top: 5px;
  1607. background-color: transparent;
  1608. }
  1609. .file-name {
  1610. margin-left: 1em;
  1611. }
  1612. .file-size {
  1613. font-size: 13px;
  1614. color: #888;
  1615. margin-left: 1em;
  1616. }
  1617. .code-view {
  1618. overflow: auto;
  1619. overflow-x: auto;
  1620. overflow-y: hidden;
  1621. background: white;
  1622. }
  1623. .code-view .view-raw {
  1624. min-height: 40px;
  1625. text-align: center;
  1626. padding-top: 20px;
  1627. }
  1628. .code-view .view-raw .btn {
  1629. font-size: 1.05em;
  1630. line-height: 16px;
  1631. padding: 6px 8px;
  1632. }
  1633. .code-view table {
  1634. width: 100%;
  1635. }
  1636. .code-view table td {
  1637. padding: 0;
  1638. }
  1639. .code-view .lines-num {
  1640. vertical-align: top;
  1641. text-align: right;
  1642. color: #999;
  1643. background: #f5f5f5;
  1644. width: 1%;
  1645. }
  1646. .code-view .lines-num span {
  1647. font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  1648. line-height: 20px;
  1649. padding: 0 10px;
  1650. cursor: pointer;
  1651. display: block;
  1652. }
  1653. .code-view .lines-code > pre {
  1654. border: none;
  1655. border-left: 1px solid #ddd;
  1656. }
  1657. .code-view .lines-code > pre > ol.linenums > li {
  1658. padding: 0 10px;
  1659. line-height: 20px;
  1660. }
  1661. .code-view .lines-code > pre > ol.linenums > li.active {
  1662. background: #ffffdd;
  1663. }
  1664. .repo-setting-zone {
  1665. padding: 30px;
  1666. }
  1667. #team-repositories-list,
  1668. #team-members-list,
  1669. #repo-collab-list {
  1670. list-style: none;
  1671. padding: 10px 0 5px 0;
  1672. }
  1673. #team-repositories-list li.collab,
  1674. #team-members-list li.collab,
  1675. #repo-collab-list li.collab {
  1676. clear: both;
  1677. height: 50px;
  1678. padding: 0 15px 0 15px;
  1679. }
  1680. #team-repositories-list a.member,
  1681. #team-members-list a.member,
  1682. #repo-collab-list a.member {
  1683. color: #444;
  1684. height: 50px;
  1685. line-height: 50px;
  1686. }
  1687. #team-repositories-list a.member:hover,
  1688. #team-members-list a.member:hover,
  1689. #repo-collab-list a.member:hover {
  1690. color: #4183C4;
  1691. }
  1692. #team-repositories-list .avatar,
  1693. #team-members-list .avatar,
  1694. #repo-collab-list .avatar {
  1695. margin-right: 1em;
  1696. width: 40px;
  1697. }
  1698. #team-repositories-list .remove-collab,
  1699. #team-members-list .remove-collab,
  1700. #repo-collab-list .remove-collab {
  1701. color: #DD4B39;
  1702. }
  1703. .repo-user-list-block {
  1704. position: relative;
  1705. top: 5px;
  1706. }
  1707. .setting-list {
  1708. width: 100%;
  1709. list-style: none;
  1710. }
  1711. #commits-list {
  1712. padding-top: 20px;
  1713. }
  1714. #commits-list h4 {
  1715. line-height: 30px;
  1716. margin-bottom: 0;
  1717. }
  1718. .commit-list th {
  1719. background-color: #FFF;
  1720. line-height: 28px !important;
  1721. }
  1722. .commit-list .date {
  1723. width: 120px;
  1724. }
  1725. .commit-list .author {
  1726. padding-left: 20px;
  1727. min-width: 180px;
  1728. }
  1729. .commit-list .author img {
  1730. margin-top: -4px;
  1731. }
  1732. .commit-list .sha a {
  1733. font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace;
  1734. font-size: 14px;
  1735. }
  1736. .commit-list .message {
  1737. width: 60%;
  1738. }
  1739. .commit-list .message span {
  1740. max-width: 500px;
  1741. }
  1742. .commit-message {
  1743. white-space: pre-wrap;
  1744. }
  1745. .diff-head-box {
  1746. margin-top: 10px;
  1747. }
  1748. .diff-head-box .panel-body {
  1749. padding: 10px 15px 5px 10px;
  1750. }
  1751. .diff-head-box .author img {
  1752. margin-top: -7px;
  1753. }
  1754. .diff-detail-box {
  1755. margin: 15px 0;
  1756. line-height: 30px;
  1757. }
  1758. .diff-detail-box ol {
  1759. clear: both;
  1760. padding-left: 0;
  1761. margin-bottom: 28px;
  1762. }
  1763. .diff-detail-box ol li {
  1764. list-style: none;
  1765. padding-bottom: 4px;
  1766. margin-bottom: 4px;
  1767. border-bottom: 1px dashed #DDD;
  1768. padding-left: 6px;
  1769. }
  1770. .diff-detail-box span.status {
  1771. display: inline-block;
  1772. width: 12px;
  1773. height: 12px;
  1774. margin-right: 8px;
  1775. vertical-align: middle;
  1776. }
  1777. .diff-detail-box span.status.modify {
  1778. background-color: #f0db88;
  1779. }
  1780. .diff-detail-box span.status.add {
  1781. background-color: #b4e2b4;
  1782. }
  1783. .diff-detail-box span.status.del {
  1784. background-color: #e9aeae;
  1785. }
  1786. .diff-detail-box span.status.rename {
  1787. background-color: #dad8ff;
  1788. }
  1789. .diff-box .count {
  1790. margin-right: 12px;
  1791. }
  1792. .diff-box .count .bar {
  1793. background-color: #e75316;
  1794. height: 12px;
  1795. width: 40px;
  1796. display: inline-block;
  1797. margin: 2px 4px 0 4px;
  1798. vertical-align: text-top;
  1799. }
  1800. .diff-box .count .bar .add {
  1801. background-color: #77c64a;
  1802. height: 12px;
  1803. }
  1804. .diff-box .file {
  1805. color: #888;
  1806. }
  1807. .diff-box .panel-header {
  1808. font-size: 14px;
  1809. }
  1810. .diff-file-box .file-body.file-code .lines-num {
  1811. text-align: right;
  1812. color: #999;
  1813. background: #fafafa;
  1814. width: 1%;
  1815. }
  1816. .diff-file-box .file-body.file-code .lines-num-old {
  1817. border-right: 1px solid #DDD;
  1818. }
  1819. .diff-file-box .code-diff tbody tr.tag-code td,
  1820. .diff-file-box .code-diff tbody tr.tag-code pre {
  1821. background-color: #E0E0E0 !important;
  1822. border-color: #ADADAD !important;
  1823. }
  1824. .diff-file-box .code-diff tbody tr.tag-code td.selected-line,
  1825. .diff-file-box .code-diff tbody tr.tag-code td.selected-line pre {
  1826. background-color: #ffffdd !important;
  1827. }
  1828. .diff-file-box .code-diff tbody tr.same-code td.selected-line,
  1829. .diff-file-box .code-diff tbody tr.same-code td.selected-line pre {
  1830. background-color: #ffffdd !important;
  1831. }
  1832. .diff-file-box .code-diff tbody tr.del-code td,
  1833. .diff-file-box .code-diff tbody tr.del-code pre {
  1834. background-color: #ffe2dd !important;
  1835. border-color: #e9aeae !important;
  1836. }
  1837. .diff-file-box .code-diff tbody tr.del-code td.selected-line,
  1838. .diff-file-box .code-diff tbody tr.del-code td.selected-line pre {
  1839. background-color: #ffffdd !important;
  1840. }
  1841. .diff-file-box .code-diff tbody tr.add-code td,
  1842. .diff-file-box .code-diff tbody tr.add-code pre {
  1843. background-color: #d1ffd6 !important;
  1844. border-color: #b4e2b4 !important;
  1845. }
  1846. .diff-file-box .code-diff tbody tr.add-code td.selected-line,
  1847. .diff-file-box .code-diff tbody tr.add-code td.selected-line pre {
  1848. background-color: #ffffdd !important;
  1849. }
  1850. .diff-file-box .code-diff tbody tr:hover td,
  1851. .diff-file-box .code-diff tbody tr:hover pre {
  1852. background-color: #FFF8D2 !important;
  1853. border-color: #F0DB88 !important;
  1854. }
  1855. .compare-head-box {
  1856. margin-top: 10px;
  1857. }
  1858. .compare-head-box .compare {
  1859. padding: 0 15px 15px 15px;
  1860. }
  1861. .fork-flag {
  1862. display: block;
  1863. font-size: 11px;
  1864. line-height: 10px;
  1865. white-space: nowrap;
  1866. margin-left: 44px;
  1867. margin-top: -15px;
  1868. }
  1869. #release h4 {
  1870. font-size: 18px;
  1871. }
  1872. #release h4 small {
  1873. font-weight: 400;
  1874. line-height: 1;
  1875. color: #999;
  1876. }
  1877. #release #release-head {
  1878. margin-top: 0;
  1879. margin-bottom: 0;
  1880. padding-bottom: 20px;
  1881. border-bottom: 1px solid #DDD;
  1882. }
  1883. #release #release-head .btn {
  1884. margin-left: 10px;
  1885. }
  1886. #release .release-item > div {
  1887. padding-top: 20px;
  1888. padding-bottom: 20px;
  1889. }
  1890. #release .release-item .label-green:hover {
  1891. background-color: #65ad4e;
  1892. }
  1893. #release .release-item .release-meta {
  1894. position: relative;
  1895. float: left;
  1896. padding-right: 15px;
  1897. }
  1898. #release .release-item .tag,
  1899. #release .release-item .commit {
  1900. display: block;
  1901. margin-top: 12px;
  1902. line-height: 20px;
  1903. }
  1904. #release .release-item .release-detail {
  1905. margin-top: -1px;
  1906. border-left: 1px solid #DDD;
  1907. position: relative;
  1908. float: left;
  1909. padding-left: 15px;
  1910. }
  1911. #release .release-item .title {
  1912. line-height: 25px;
  1913. margin-top: 0;
  1914. }
  1915. #release .release-item p.info {
  1916. line-height: 20px;
  1917. color: #666;
  1918. margin-bottom: 15px;
  1919. }
  1920. #release .release-item p.info > * {
  1921. margin-right: 10px;
  1922. }
  1923. #release .release-item .author img {
  1924. margin-top: -3px;
  1925. }
  1926. #release .release-item div.desc {
  1927. margin-bottom: 25px;
  1928. }
  1929. #release .release-item div.desc.markdown {
  1930. background-color: transparent;
  1931. }
  1932. #release .release-item .download a {
  1933. margin-right: 10px;
  1934. }
  1935. #release .release-item .dot {
  1936. width: 9px;
  1937. height: 9px;
  1938. background-color: #ccc;
  1939. z-index: 999;
  1940. position: absolute;
  1941. display: block;
  1942. left: -6px;
  1943. top: 27px;
  1944. border-radius: 6px;
  1945. border: 1px solid #FFF;
  1946. }
  1947. #release #release-new-form {
  1948. padding-top: 15px;
  1949. }
  1950. #stars h4,
  1951. #watchers h4,
  1952. #forks h4 {
  1953. font-size: 18px;
  1954. padding-bottom: 20px;
  1955. text-transform: capitalize;
  1956. border-bottom: 1px solid #DDD;
  1957. }
  1958. #stars h3,
  1959. #watchers h3,
  1960. #forks h3 {
  1961. margin: -4px 0 0 0;
  1962. padding: 0;
  1963. }
  1964. #stars .avatar,
  1965. #watchers .avatar,
  1966. #forks .avatar {
  1967. width: 75px;
  1968. height: 75px;
  1969. float: left;
  1970. display: block;
  1971. margin-right: 10px;
  1972. }
  1973. #stars .avatar-small,
  1974. #watchers .avatar-small,
  1975. #forks .avatar-small {
  1976. width: 24px;
  1977. height: 24px;
  1978. float: left;
  1979. display: block;
  1980. margin-right: 10px;
  1981. }
  1982. #stars ol,
  1983. #watchers ol,
  1984. #forks ol {
  1985. margin-top: 10px;
  1986. list-style: none;
  1987. width: 100%;
  1988. overflow: hidden;
  1989. }
  1990. #stars li,
  1991. #watchers li,
  1992. #forks li {
  1993. width: 32.25%;
  1994. margin: 10px 10px 10px 0;
  1995. border-bottom: 1px solid #DDD;
  1996. float: left;
  1997. padding-bottom: 10px;
  1998. }
  1999. #stars .pagination,
  2000. #watchers .pagination,
  2001. #forks .pagination {
  2002. width: 100%;
  2003. text-align: center;
  2004. text-transform: capitalize;
  2005. }
  2006. #stars .pagination a,
  2007. #watchers .pagination a,
  2008. #forks .pagination a {
  2009. border-radius: 3px;
  2010. border: 1px solid #399ADE;
  2011. padding: 8px;
  2012. margin: 0;
  2013. }
  2014. #stars .pagination .active,
  2015. #watchers .pagination .active,
  2016. #forks .pagination .active {
  2017. border-radius: 3px;
  2018. border: 1px solid #399ADE;
  2019. background: #399ADE;
  2020. cursor: default;
  2021. padding: 8px;
  2022. margin: 0;
  2023. color: #FFFFFF;
  2024. }
  2025. #stars .pagination .disabled,
  2026. #watchers .pagination .disabled,
  2027. #forks .pagination .disabled {
  2028. border-radius: 3px;
  2029. border: 1px solid #DDD;
  2030. color: #D3D3D3;
  2031. cursor: default;
  2032. padding: 8px;
  2033. margin: 0;
  2034. }
  2035. #forks p {
  2036. padding: 5px 0;
  2037. }
  2038. #admin-wrapper,
  2039. #setting-wrapper {
  2040. padding-bottom: 100px;
  2041. }
  2042. #setting-menu {
  2043. box-sizing: border-box;
  2044. }
  2045. #setting-menu li > a {
  2046. border-left: 2px solid #FFF;
  2047. background-color: #FFF;
  2048. }
  2049. #setting-menu li:hover {
  2050. border-color: #EAEAEA;
  2051. }
  2052. #setting-menu li:hover a {
  2053. border-left: 2px solid #EFEFEF;
  2054. background-color: #EFEFEF !important;
  2055. color: #000 !important;
  2056. }
  2057. #setting-menu li.current a {
  2058. color: #000 !important;
  2059. font-weight: bold;
  2060. border-left: 2px solid #d26911;
  2061. }
  2062. .setting-content {
  2063. margin-left: 32px;
  2064. }
  2065. #auth-setting-form,
  2066. #org-setting-form,
  2067. #repo-setting-form,
  2068. #user-profile-form,
  2069. #add-email-form,
  2070. .repo-setting-form {
  2071. background-color: #FFF;
  2072. padding: 30px 0;
  2073. }
  2074. #auth-setting-form textarea,
  2075. #org-setting-form textarea,
  2076. #repo-setting-form textarea,
  2077. #user-profile-form textarea,
  2078. #add-email-form textarea,
  2079. .repo-setting-form textarea {
  2080. margin-left: 4px;
  2081. height: 100px;
  2082. }
  2083. #auth-setting-form label,
  2084. #org-setting-form label,
  2085. #repo-setting-form label,
  2086. #user-profile-form label,
  2087. #add-email-form label,
  2088. .repo-setting-form label,
  2089. #auth-setting-form .form-label,
  2090. #org-setting-form .form-label,
  2091. #repo-setting-form .form-label,
  2092. #user-profile-form .form-label,
  2093. #add-email-form .form-label,
  2094. .repo-setting-form .form-label {
  2095. width: 240px;
  2096. }
  2097. #auth-setting-form .ipt,
  2098. #org-setting-form .ipt,
  2099. #repo-setting-form .ipt,
  2100. #user-profile-form .ipt,
  2101. #add-email-form .ipt,
  2102. .repo-setting-form .ipt {
  2103. width: 360px;
  2104. }
  2105. #auth-setting-form .field,
  2106. #org-setting-form .field,
  2107. #repo-setting-form .field,
  2108. #user-profile-form .field,
  2109. #add-email-form .field,
  2110. .repo-setting-form .field {
  2111. margin-bottom: 24px;
  2112. }
  2113. #hook-type {
  2114. padding: 10px 0 0 0;
  2115. background-color: #fff;
  2116. }
  2117. #hook-type .field {
  2118. margin-bottom: 24px;
  2119. }
  2120. #hook-type label {
  2121. width: 240px;
  2122. }
  2123. #repo-hooks-panel,
  2124. #repo-hooks-history-panel,
  2125. #user-social-panel,
  2126. #user-applications-panel,
  2127. #user-email-panel,
  2128. #user-ssh-panel {
  2129. margin-bottom: 20px;
  2130. }
  2131. #repo-hooks-panel .setting-list,
  2132. #repo-hooks-history-panel .setting-list,
  2133. #user-social-panel .setting-list,
  2134. #user-applications-panel .setting-list,
  2135. #user-email-panel .setting-list,
  2136. #user-ssh-panel .setting-list {
  2137. background-color: #FFF;
  2138. }
  2139. #repo-hooks-panel .setting-list li,
  2140. #repo-hooks-history-panel .setting-list li,
  2141. #user-social-panel .setting-list li,
  2142. #user-applications-panel .setting-list li,
  2143. #user-email-panel .setting-list li,
  2144. #user-ssh-panel .setting-list li {
  2145. padding: 8px 20px;
  2146. border-bottom: 1px solid #eaeaea;
  2147. }
  2148. #repo-hooks-panel .setting-list li.ssh:hover,
  2149. #repo-hooks-history-panel .setting-list li.ssh:hover,
  2150. #user-social-panel .setting-list li.ssh:hover,
  2151. #user-applications-panel .setting-list li.ssh:hover,
  2152. #user-email-panel .setting-list li.ssh:hover,
  2153. #user-ssh-panel .setting-list li.ssh:hover {
  2154. background-color: #ffffEE;
  2155. }
  2156. #repo-hooks-panel .setting-list li i,
  2157. #repo-hooks-history-panel .setting-list li i,
  2158. #user-social-panel .setting-list li i,
  2159. #user-applications-panel .setting-list li i,
  2160. #user-email-panel .setting-list li i,
  2161. #user-ssh-panel .setting-list li i {
  2162. padding-right: 5px;
  2163. }
  2164. #repo-hooks-panel .active-icon,
  2165. #repo-hooks-history-panel .active-icon,
  2166. #user-social-panel .active-icon,
  2167. #user-applications-panel .active-icon,
  2168. #user-email-panel .active-icon,
  2169. #user-ssh-panel .active-icon {
  2170. width: 10px;
  2171. height: 10px;
  2172. border-radius: 6px;
  2173. padding: 0;
  2174. margin-right: 20px;
  2175. margin-top: 10px;
  2176. }
  2177. #repo-hooks-panel .ssh-content,
  2178. #repo-hooks-history-panel .ssh-content,
  2179. #user-social-panel .ssh-content,
  2180. #user-applications-panel .ssh-content,
  2181. #user-email-panel .ssh-content,
  2182. #user-ssh-panel .ssh-content {
  2183. margin-left: 24px;
  2184. }
  2185. #repo-hooks-panel .ssh-content .octicon,
  2186. #repo-hooks-history-panel .ssh-content .octicon,
  2187. #user-social-panel .ssh-content .octicon,
  2188. #user-applications-panel .ssh-content .octicon,
  2189. #user-email-panel .ssh-content .octicon,
  2190. #user-ssh-panel .ssh-content .octicon {
  2191. margin-right: 4px;
  2192. }
  2193. #repo-hooks-panel .ssh-content .print,
  2194. #repo-hooks-history-panel .ssh-content .print,
  2195. #user-social-panel .ssh-content .print,
  2196. #user-applications-panel .ssh-content .print,
  2197. #user-email-panel .ssh-content .print,
  2198. #user-ssh-panel .ssh-content .print,
  2199. #repo-hooks-panel .ssh-content .access,
  2200. #repo-hooks-history-panel .ssh-content .access,
  2201. #user-social-panel .ssh-content .access,
  2202. #user-applications-panel .ssh-content .access,
  2203. #user-email-panel .ssh-content .access,
  2204. #user-ssh-panel .ssh-content .access,
  2205. #repo-hooks-panel .ssh-content .activity,
  2206. #repo-hooks-history-panel .ssh-content .activity,
  2207. #user-social-panel .ssh-content .activity,
  2208. #user-applications-panel .ssh-content .activity,
  2209. #user-email-panel .ssh-content .activity,
  2210. #user-ssh-panel .ssh-content .activity {
  2211. color: #888;
  2212. }
  2213. #repo-hooks-panel .ssh-content .access,
  2214. #repo-hooks-history-panel .ssh-content .access,
  2215. #user-social-panel .ssh-content .access,
  2216. #user-applications-panel .ssh-content .access,
  2217. #user-email-panel .ssh-content .access,
  2218. #user-ssh-panel .ssh-content .access {
  2219. max-width: 500px;
  2220. }
  2221. #repo-hooks-panel .ssh-btn,
  2222. #repo-hooks-history-panel .ssh-btn,
  2223. #user-social-panel .ssh-btn,
  2224. #user-applications-panel .ssh-btn,
  2225. #user-email-panel .ssh-btn,
  2226. #user-ssh-panel .ssh-btn {
  2227. margin-top: 6px;
  2228. }
  2229. .form-settings-add .panel-body {
  2230. background-color: #FFF;
  2231. padding: 30px 0;
  2232. }
  2233. .form-settings-add .ipt {
  2234. width: 500px;
  2235. }
  2236. .form-settings-add textarea {
  2237. height: 120px;
  2238. margin-left: 3px;
  2239. }
  2240. .form-settings-add .field {
  2241. margin-bottom: 24px;
  2242. }
  2243. .pr-main {
  2244. margin-right: 100px;
  2245. }
  2246. .pr-sidebar {
  2247. border-left: 1px solid #DDD;
  2248. box-sizing: border-box;
  2249. position: absolute;
  2250. right: 0;
  2251. top: 12px;
  2252. }
  2253. .pr-title {
  2254. padding: 4px 0;
  2255. }
  2256. .pr-title .pr-num {
  2257. font-weight: normal;
  2258. color: #888;
  2259. }
  2260. .pr-meta {
  2261. color: #888;
  2262. padding: 4px 0 8px 0;
  2263. }
  2264. .pr-meta .pr-author {
  2265. margin: 0 8px;
  2266. color: #444;
  2267. }
  2268. .pr-meta .pr-author:hover {
  2269. text-decoration: underline;
  2270. }
  2271. .pr-meta .pr-branch {
  2272. margin: 0 4px;
  2273. font-size: 12px;
  2274. padding: 4px 6px;
  2275. }
  2276. .pr-nav {
  2277. border-bottom: 1px solid #DDD;
  2278. margin-top: 16px;
  2279. margin-bottom: 16px;
  2280. }
  2281. .pr-nav .octicon {
  2282. margin-right: 4px;
  2283. }
  2284. .pr-nav li > a {
  2285. padding: 3px 9px !important;
  2286. border: 1px solid transparent;
  2287. border-bottom: none;
  2288. border-top-left-radius: .2em;
  2289. border-top-right-radius: .2em;
  2290. }
  2291. .pr-nav li > a .label {
  2292. padding: 1px 5px;
  2293. font-size: 12px;
  2294. margin-left: 4px;
  2295. }
  2296. .pr-nav li.js-tab-nav-show > a {
  2297. background-color: #FFF;
  2298. border-color: #E6E6E6;
  2299. }
  2300. .diff-bar .diff-add {
  2301. color: #65ad4e;
  2302. }
  2303. .diff-bar .diff-delete {
  2304. color: #d9453d;
  2305. }
  2306. .diff-bar .diff-status {
  2307. width: 50px;
  2308. background-color: #d9453d;
  2309. height: 10px;
  2310. margin-top: 7px;
  2311. margin-left: 4px;
  2312. margin-right: 4px;
  2313. border-radius: .2em;
  2314. }
  2315. .diff-bar .diff-status-inner {
  2316. width: 45%;
  2317. background-color: #65ad4e;
  2318. height: 10px;
  2319. border-top-left-radius: .2em;
  2320. border-bottom-left-radius: .2em;
  2321. }
  2322. #pr-commit,
  2323. #pr-file-diff,
  2324. #issue-add-comment-preview {
  2325. display: none;
  2326. }
  2327. #pr-conversation-list {
  2328. padding-right: 30px;
  2329. box-sizing: border-box;
  2330. }
  2331. .issue-comment,
  2332. .issue-commit,
  2333. .issue-line,
  2334. .issue-merge,
  2335. .issue-add-comment {
  2336. margin-bottom: 24px;
  2337. }
  2338. .issue-comment .author-avatar img {
  2339. margin-right: 12px;
  2340. }
  2341. .issue-comment .panel {
  2342. margin-left: 60px;
  2343. margin-top: -40px;
  2344. }
  2345. .issue-comment .panel-header {
  2346. font-size: 13px;
  2347. }
  2348. .issue-comment .author-name {
  2349. font-weight: bold;
  2350. }
  2351. .issue-comment .date {
  2352. margin-left: 4px;
  2353. font-style: italic;
  2354. color: #888;
  2355. }
  2356. .issue-comment .action > * {
  2357. margin-left: 4px;
  2358. font-size: 12px;
  2359. }
  2360. .issue-comment .action i {
  2361. font-size: 13px;
  2362. }
  2363. .issue-commit {
  2364. line-height: 32px;
  2365. }
  2366. .issue-commit i,
  2367. .issue-commit .author-avatar img {
  2368. margin-right: 16px;
  2369. }
  2370. .issue-commit .sha {
  2371. margin-left: 24px;
  2372. }
  2373. .issue-commit .message {
  2374. display: block;
  2375. margin-left: 88px;
  2376. padding-top: 4px;
  2377. line-height: 24px;
  2378. }
  2379. .issue-merge .ico {
  2380. width: 40px;
  2381. height: 40px;
  2382. text-align: center;
  2383. color: #FFF;
  2384. margin-right: 12px;
  2385. }
  2386. .issue-merge .ico i {
  2387. margin-top: 8px;
  2388. font-size: 24px;
  2389. }
  2390. .issue-merge .panel {
  2391. margin-left: 60px;
  2392. margin-top: -40px;
  2393. }
  2394. .issue-merge .panel-header {
  2395. font-size: 13px;
  2396. }
  2397. .issue-merge-ok .ico {
  2398. background-color: #65AD4E;
  2399. }
  2400. .issue-merge-ok .panel,
  2401. .issue-merge-ok .panel-content,
  2402. .issue-merge-ok .panel-header {
  2403. border-color: #65AD4E;
  2404. background-color: #FFF;
  2405. }
  2406. .issue-merge-ok .panel-header {
  2407. color: #508a3e;
  2408. }
  2409. .issue-line {
  2410. height: 4px;
  2411. background-color: #E6E6E6;
  2412. }
  2413. .issue-add-comment .panel {
  2414. margin-left: 60px;
  2415. margin-top: -40px;
  2416. }
  2417. .issue-add-comment .panel-header {
  2418. font-size: 13px;
  2419. padding-bottom: 0;
  2420. }
  2421. .issue-add-comment .add-nav > li > a {
  2422. padding: 4px 12px;
  2423. color: #444;
  2424. border: 1px solid #CCC;
  2425. margin-bottom: -1px;
  2426. font-size: 14px;
  2427. border-top-left-radius: .3em;
  2428. border-top-right-radius: .3em;
  2429. }
  2430. .issue-add-comment .add-nav > li > a:hover {
  2431. background-color: #FFF;
  2432. }
  2433. .issue-add-comment .add-nav > li.js-tab-nav-show > a {
  2434. background-color: #FFF;
  2435. }
  2436. textarea#issue-add-content {
  2437. width: 100%;
  2438. box-sizing: border-box;
  2439. height: 120px;
  2440. resize: vertical;
  2441. }
  2442. #issue-list-nav {
  2443. border-bottom: 1px solid #DDD;
  2444. padding-bottom: 12px;
  2445. }
  2446. #issue-list-nav li > a {
  2447. font-size: 13px;
  2448. font-weight: bold;
  2449. padding: .2em .8em;
  2450. }
  2451. #issue-list-nav li.current > a {
  2452. background-color: #0079bc;
  2453. color: #FAFAFA;
  2454. }
  2455. #issue-list-nav li.right {
  2456. margin-left: 4px;
  2457. }
  2458. #issue-new > a,
  2459. #label-new > a,
  2460. #milestone-new > a {
  2461. padding: 0 !important;
  2462. }
  2463. #issue-new > a button,
  2464. #label-new > a button,
  2465. #milestone-new > a button {
  2466. height: 29px;
  2467. }
  2468. #issue-list-menu {
  2469. padding: 16px 0 12px 0;
  2470. border-bottom: 1px solid #BBB;
  2471. margin-bottom: 12px;
  2472. }
  2473. #issue-list-menu .mark a {
  2474. color: #AAA;
  2475. }
  2476. #issue-list-menu .mark a:hover {
  2477. color: #444;
  2478. }
  2479. #issue-list-menu .mark.hover a {
  2480. color: #222;
  2481. font-weight: bold;
  2482. }
  2483. #issue-list-menu > .left .mark {
  2484. margin-right: 12px;
  2485. }
  2486. #issue-list-menu > .right .mark {
  2487. margin-left: 12px;
  2488. }
  2489. #issue-list .item,
  2490. #pull-list .item {
  2491. position: relative;
  2492. padding-bottom: 12px;
  2493. margin-bottom: 12px;
  2494. border-bottom: 1px dashed #AAA;
  2495. }
  2496. #issue-list .item .title > .title-text,
  2497. #pull-list .item .title > .title-text {
  2498. color: #444;
  2499. font-size: 15px;
  2500. margin: 0 6px;
  2501. }
  2502. #issue-list .comment,
  2503. #pull-list .comment {
  2504. color: #666;
  2505. position: absolute;
  2506. top: 6px;
  2507. right: 0;
  2508. }
  2509. #issue-list .issue-label a,
  2510. #pull-list .issue-label a {
  2511. color: #FFF;
  2512. }
  2513. #issue-list .desc,
  2514. #pull-list .desc {
  2515. color: #999;
  2516. }
  2517. #issue-list .desc a,
  2518. #pull-list .desc a {
  2519. color: #999;
  2520. }
  2521. #issue-list .desc a:hover,
  2522. #pull-list .desc a:hover {
  2523. color: #03a2ef;
  2524. }
  2525. #issue-list-filter .drop > a {
  2526. width: 90px;
  2527. padding: 0;
  2528. margin-left: 12px;
  2529. text-align: center;
  2530. }
  2531. #issue-list-filter .drop-down {
  2532. z-index: 999;
  2533. width: 236px;
  2534. left: -158px;
  2535. top: 22px;
  2536. padding: 0 12px;
  2537. }
  2538. #issue-list-filter .drop-down h4 {
  2539. line-height: 40px;
  2540. border-bottom: 1px solid #CCC;
  2541. margin-bottom: 0;
  2542. }
  2543. #issue-list-filter .drop-down li {
  2544. line-height: 30px;
  2545. border-bottom: 1px dashed #EEE;
  2546. padding-left: 9px;
  2547. }
  2548. #issue-list-filter .drop-down li:hover {
  2549. background-color: #fcffec;
  2550. }
  2551. #issue-list-filter .drop-down > ul > li > a {
  2552. display: block;
  2553. }
  2554. #issue-list-filter .labels .color {
  2555. margin-top: 8px;
  2556. display: inline-block;
  2557. width: 12px;
  2558. height: 12px;
  2559. background-color: red;
  2560. margin-right: 9px;
  2561. margin-left: 9px;
  2562. }
  2563. #issue-list-filter .labels .name {
  2564. vertical-align: top;
  2565. display: inline-block;
  2566. color: #444;
  2567. }
  2568. #issue-list-filter .milestones a {
  2569. color: #444;
  2570. font-weight: bold;
  2571. }
  2572. #issue-list-pager {
  2573. margin: 18px 0 24px 0;
  2574. font-size: 14px;
  2575. line-height: 24px;
  2576. }
  2577. #labels-num {
  2578. margin-right: 1em;
  2579. }
  2580. #label-list a.right {
  2581. margin-left: 1em;
  2582. color: #999;
  2583. line-height: 30px;
  2584. }
  2585. #label-list a.right i {
  2586. margin-right: 3px;
  2587. }
  2588. #label-list a.right:hover {
  2589. color: #444444;
  2590. }
  2591. #label-list .num {
  2592. margin-right: 3px;
  2593. }
  2594. #label-list .issue-num {
  2595. margin-right: 4em;
  2596. }
  2597. #label-list .label:hover {
  2598. color: #FFF;
  2599. }
  2600. #label-list .label i {
  2601. margin-right: 6px;
  2602. }
  2603. #label-list .item {
  2604. height: 30px;
  2605. padding-bottom: 12px;
  2606. margin-bottom: 12px;
  2607. border-bottom: 1px dashed #AAA;
  2608. }
  2609. #label-add-form .ipt,
  2610. #label-edit-form .ipt,
  2611. #label-delete-form .ipt {
  2612. font-size: 14px;
  2613. }
  2614. #label-add-form .ipt[name=name],
  2615. #label-edit-form .ipt[name=name],
  2616. #label-delete-form .ipt[name=name] {
  2617. width: 300px;
  2618. }
  2619. #label-add-form .btn,
  2620. #label-edit-form .btn,
  2621. #label-delete-form .btn {
  2622. height: 33px;
  2623. font-size: 14px;
  2624. margin-left: 12px;
  2625. }
  2626. #label-add-form {
  2627. padding: 18px 0;
  2628. border-bottom: 1px solid #DDD;
  2629. }
  2630. #label-delete-form span {
  2631. line-height: 33px;
  2632. }
  2633. .label-color-drop .ipt {
  2634. width: 100px;
  2635. }
  2636. .label-color-drop .drop-down {
  2637. width: 128px !important;
  2638. top: 22px !important;
  2639. left: 50px !important;
  2640. padding: 12px;
  2641. line-height: 16px;
  2642. }
  2643. .label-color-drop .drop-down a.color {
  2644. width: 16px;
  2645. height: 16px;
  2646. display: inline-block;
  2647. }
  2648. .label-color-drop label {
  2649. width: 24px;
  2650. height: 24px;
  2651. display: inline-block;
  2652. margin: 0 1em;
  2653. vertical-align: middle;
  2654. }
  2655. #milestone-list {
  2656. padding-top: 6px;
  2657. }
  2658. #milestone-list .title-text {
  2659. font-size: 16px;
  2660. }
  2661. #milestone-list .desc {
  2662. color: #999;
  2663. line-height: 30px;
  2664. }
  2665. #milestone-list .content {
  2666. width: 400px;
  2667. }
  2668. #milestone-list .item {
  2669. padding-bottom: 18px;
  2670. margin-bottom: 18px;
  2671. border-bottom: 1px dashed #AAA;
  2672. position: relative;
  2673. }
  2674. #milestone-list .action {
  2675. position: absolute;
  2676. top: 0;
  2677. right: 0;
  2678. }
  2679. #milestone-list .status-bar > .bar {
  2680. margin: -2px 8px 0 8px;
  2681. width: 360px;
  2682. background-color: #DDD;
  2683. height: 14px;
  2684. vertical-align: middle;
  2685. }
  2686. #milestone-list .status-bar .opening {
  2687. background-color: #65ad4e;
  2688. width: 40%;
  2689. height: 14px;
  2690. vertical-align: top;
  2691. }
  2692. #milestone-list .action-bar {
  2693. margin-top: 8px;
  2694. }
  2695. #milestone-list .action-bar a {
  2696. margin-left: 12px;
  2697. }
  2698. .issues.list-group {
  2699. margin: 10px 0 20px 0;
  2700. }
  2701. .issues.list-group > .list-group-item {
  2702. background-color: #FFF;
  2703. border: 1px solid #e5e5e5;
  2704. display: block;
  2705. padding: 10px 15px;
  2706. margin-bottom: -1px;
  2707. }
  2708. .issues.list-group > .list-group-item:hover {
  2709. background-color: rgba(19, 95, 215, 0.03);
  2710. }
  2711. .issues.list-group > .list-group-item > .title {
  2712. margin-bottom: 16px;
  2713. font-weight: bold;
  2714. font-size: 1.2em;
  2715. }
  2716. .issues.list-group > .list-group-item > .title > a {
  2717. color: #444;
  2718. }
  2719. .issues.list-group > .list-group-item > .info span {
  2720. margin-right: 12px;
  2721. color: #888;
  2722. line-height: 20px;
  2723. }
  2724. .issues.list-group > .list-group-item > .info span > a {
  2725. color: #444;
  2726. }
  2727. .org-header-alert .alert {
  2728. margin-top: 10px;
  2729. }
  2730. .org-header {
  2731. padding: 16px 0;
  2732. background-color: #FFF;
  2733. border-bottom: 1px solid #DDD;
  2734. }
  2735. .org-header img {
  2736. padding-right: 10px;
  2737. }
  2738. #org-home-header {
  2739. min-height: 100px;
  2740. }
  2741. #org-header {
  2742. height: 48px;
  2743. }
  2744. #org-header .org-name {
  2745. padding-left: 10px;
  2746. font-size: 1.4em;
  2747. height: 50px;
  2748. line-height: 50px;
  2749. margin-bottom: 0;
  2750. }
  2751. #org-header > div > .menu-line > li.right > a {
  2752. font-size: 1.2em;
  2753. color: #444444;
  2754. }
  2755. #org-header > div > .menu-line > li.right > a:hover {
  2756. background-color: transparent;
  2757. color: #d9453d;
  2758. }
  2759. #org-header > div > .menu-line > li.right > a .octicon {
  2760. margin-right: 4px;
  2761. }
  2762. #org-header > div > .menu-line > li.right > a .label {
  2763. margin-left: 4px;
  2764. }
  2765. #org-header > div > .menu-line > li.right .current {
  2766. border-bottom: 2px solid #D26911;
  2767. }
  2768. #org-home-header-info {
  2769. padding-top: 10px;
  2770. }
  2771. #org-home-header-info h2 {
  2772. font-size: 30px;
  2773. }
  2774. #org-home-header-info ul {
  2775. list-style: none;
  2776. }
  2777. #org-home-header-info ul li {
  2778. float: left;
  2779. padding-right: 5px;
  2780. }
  2781. #org-home-repo-list {
  2782. padding: 10px 0;
  2783. }
  2784. #org-repo-list {
  2785. padding: 10px 0;
  2786. }
  2787. #org-repo-list .org-repo-item {
  2788. border-top: 1px solid #eee;
  2789. padding: 30px 20px;
  2790. }
  2791. #org-repo-list .org-repo-item .org-repo-status {
  2792. list-style: none;
  2793. color: #888;
  2794. }
  2795. #org-repo-list .org-repo-item .org-repo-status li {
  2796. float: left;
  2797. margin-right: 6px;
  2798. }
  2799. #org-repo-list .org-repo-item h2 {
  2800. margin-bottom: 5px;
  2801. }
  2802. #org-repo-list .org-repo-item .org-repo-description {
  2803. margin: 0;
  2804. font-size: 14px;
  2805. color: #666;
  2806. }
  2807. #org-repo-list .org-repo-item .org-repo-updated {
  2808. font-size: 12px;
  2809. display: block;
  2810. margin: 5px 0 0;
  2811. color: #808080;
  2812. }
  2813. .org-sidebar {
  2814. margin: -80px 0 0 20px;
  2815. }
  2816. .org-sidebar .panel-footer {
  2817. padding: .8em 1.2em;
  2818. }
  2819. .org-sidebar .member-avatar-group {
  2820. padding: 15px;
  2821. }
  2822. .org-sidebar .member-avatar-group img {
  2823. width: 59px;
  2824. height: 59px;
  2825. border-radius: 3px;
  2826. }
  2827. #org-home-team-list {
  2828. padding: 0 15px;
  2829. }
  2830. #org-home-team-list ul {
  2831. list-style: none;
  2832. padding-top: 10px;
  2833. }
  2834. #org-home-team-list ul li {
  2835. padding: 10px 0;
  2836. border-bottom: 1px solid #eee;
  2837. }
  2838. #org-home-team-list ul li:last-child {
  2839. border-bottom: 0;
  2840. }
  2841. .team-name {
  2842. display: block;
  2843. font-size: 14px;
  2844. overflow: hidden;
  2845. text-overflow: ellipsis;
  2846. white-space: nowrap;
  2847. }
  2848. .team-meta {
  2849. margin-top: 0;
  2850. margin-bottom: 0;
  2851. color: #777;
  2852. }
  2853. .org-toolbar {
  2854. padding: 10px 0;
  2855. border-bottom: 1px solid #eee;
  2856. }
  2857. #org-member-list .org-member-item {
  2858. height: 50px;
  2859. line-height: 50px;
  2860. border-bottom: 1px solid #eee;
  2861. padding: 15px 20px;
  2862. }
  2863. #org-member-list .org-member-item .member-name {
  2864. padding-left: 15px;
  2865. }
  2866. #org-member-list .org-member-item ul {
  2867. list-style: none;
  2868. }
  2869. #org-member-list .org-member-item ul li {
  2870. text-align: center;
  2871. display: inline-block;
  2872. }
  2873. .invite-box {
  2874. padding: 50px 0;
  2875. min-height: 130px;
  2876. margin: 0 auto;
  2877. width: 50%;
  2878. }
  2879. .invite-box input {
  2880. width: 300px;
  2881. }
  2882. #org-member-list-block {
  2883. padding-top: 2px;
  2884. }
  2885. .org-team-list .org-team-list-item {
  2886. float: left;
  2887. padding: 15px;
  2888. width: 555px;
  2889. }
  2890. .org-team-list .org-team-list-item .member-avatar-group {
  2891. padding: 5px 15px;
  2892. }
  2893. .org-team-list .org-team-list-item .member-avatar-group img {
  2894. width: 38px;
  2895. height: 38px;
  2896. border-radius: 3px;
  2897. }
  2898. #team-create-form .note {
  2899. margin-left: 153px;
  2900. }
  2901. #org-team-card .desc {
  2902. font-size: 14px;
  2903. padding: 10px 20px;
  2904. }
  2905. #org-team-card .team-stats {
  2906. padding: 0 20px 10px 20px;
  2907. text-transform: uppercase;
  2908. border-bottom: 1px solid #dddddd;
  2909. }
  2910. #org-team-card .panel-footer {
  2911. padding: 10px 20px;
  2912. }
  2913. #team-repositories-list .panel-body .search,
  2914. #team-members-list .panel-body .search {
  2915. padding: 4px 0 10px 10px;
  2916. border-bottom: 1px solid #dddddd;
  2917. }
  2918. #team-repositories-list li.collab,
  2919. #team-members-list li.collab {
  2920. padding-top: 10px !important;
  2921. border-bottom: 1px solid #dddddd;
  2922. }
  2923. #team-repositories-list li:last-child,
  2924. #team-members-list li:last-child {
  2925. border-bottom: 0 !important;
  2926. }
  2927. #team-repositories-list li a .octicon {
  2928. color: #888;
  2929. }
  2930. #team-repositories-list li .member {
  2931. color: #428bca;
  2932. font-size: 14px;
  2933. height: 40px;
  2934. line-height: 40px;
  2935. }
  2936. .admin-panel {
  2937. padding: 10px 20px;
  2938. }
  2939. .admin-desc {
  2940. padding: 10px 20px;
  2941. }
  2942. .admin-table {
  2943. padding: 15px 0 5px 0;
  2944. }
  2945. .dl-horizontal dt {
  2946. float: left;
  2947. width: 160px;
  2948. clear: left;
  2949. overflow: hidden;
  2950. text-overflow: ellipsis;
  2951. white-space: nowrap;
  2952. }
  2953. .admin-dl-horizontal {
  2954. padding: 20px;
  2955. }
  2956. .admin-dl-horizontal > dt {
  2957. width: 250px;
  2958. }
  2959. .admin-dl-horizontal > dd {
  2960. margin-left: 240px;
  2961. }
  2962. .profile-avatar {
  2963. width: 100%;
  2964. border-radius: 6px;
  2965. }
  2966. #profile-name {
  2967. padding: 10px 0;
  2968. }
  2969. #profile-fullname {
  2970. font-size: 1.6em;
  2971. }
  2972. #profile-username {
  2973. font-size: 1.6em;
  2974. font-weight: bold;
  2975. }
  2976. .profile-info {
  2977. font-size: 14px;
  2978. }
  2979. .profile-info ul {
  2980. padding-bottom: 10px;
  2981. }
  2982. .profile-info ul .list-group-item {
  2983. background-color: transparent;
  2984. padding-top: 5px;
  2985. color: #666;
  2986. }
  2987. .profile-info ul .profile-rel {
  2988. width: 31%;
  2989. text-align: center;
  2990. display: inline-block;
  2991. }
  2992. .profile-info ul .profile-rel strong {
  2993. display: block;
  2994. font-size: 28px;
  2995. font-weight: bold;
  2996. line-height: 1;
  2997. }
  2998. .profile-info ul .profile-rel p {
  2999. font-size: 12px;
  3000. }
  3001. #profile-header li a {
  3002. font-size: 1.2em;
  3003. color: #444444;
  3004. padding: .4em .8em;
  3005. }
  3006. #profile-header li a:hover {
  3007. background-color: transparent;
  3008. color: #d9453d;
  3009. }
  3010. #profile-header li .current {
  3011. border-bottom: 2px solid #D26911;
  3012. }
  3013. #profile-body {
  3014. margin-left: 20px;
  3015. }