gitote.css 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230
  1. .emoji {
  2. width: 1.5em;
  3. height: 1.5em;
  4. display: inline-block;
  5. background-size: contain;
  6. }
  7. .big-emoji {
  8. font-size: 40px;
  9. }
  10. body:not(.full-width) {
  11. font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
  12. background-color: #ffffff;
  13. overflow-y: scroll;
  14. overflow-x: auto;
  15. min-width: 1020px;
  16. }
  17. img {
  18. pointer-events: none;
  19. }
  20. .ui.container:not(.fluid) {
  21. width: 980px !important;
  22. }
  23. h1,
  24. h2,
  25. h3,
  26. h4,
  27. h5,
  28. .ui.header,
  29. .ui.menu,
  30. .ui.input input,
  31. .ui.button:not(.label) {
  32. font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
  33. }
  34. img {
  35. border-radius: 3px;
  36. }
  37. pre,
  38. code {
  39. font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  40. }
  41. pre.raw,
  42. code.raw {
  43. padding: 7px 12px;
  44. margin: 10px 0;
  45. background-color: #f8f8f8;
  46. border: 1px solid #ddd;
  47. border-radius: 3px;
  48. font-size: 13px;
  49. line-height: 1.5;
  50. overflow: auto;
  51. }
  52. pre.w••rap,
  53. code.w••rap {
  54. white-space: pre-wrap;
  55. word-break: break-word;
  56. }
  57. .dont-break-out {
  58. overflow-wrap: break-word;
  59. word-wrap: break-word;
  60. -ms-word-break: break-all;
  61. word-break: break-all;
  62. word-break: break-word;
  63. -ms-hyphens: auto;
  64. -moz-hyphens: auto;
  65. -webkit-hyphens: auto;
  66. hyphens: auto;
  67. }
  68. .full.height {
  69. padding: 0;
  70. margin: 0 0 -80px 0;
  71. min-height: 100%;
  72. }
  73. .following.bar {
  74. z-index: 900;
  75. left: 0;
  76. width: 100%;
  77. }
  78. .following.bar.light {
  79. background-color: #24292e;
  80. border-bottom: 1px solid #24292e;
  81. box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  82. }
  83. .following.bar .column .menu {
  84. margin-top: 0;
  85. }
  86. .following.bar .top.menu a.item.brand {
  87. padding-left: 0;
  88. padding-right: 0;
  89. }
  90. .following.bar .brand .ui.mini.image {
  91. width: 27px;
  92. }
  93. .following.bar .top.menu a.item:hover,
  94. .following.bar .top.menu .dropdown.item:hover,
  95. .following.bar .top.menu .dropdown.item.active {
  96. background-color: transparent;
  97. }
  98. .following.bar .top.menu .menu {
  99. z-index: 900;
  100. }
  101. .following.bar .icon,
  102. .following.bar .octicon {
  103. margin-right: 5px !important;
  104. }
  105. .following.bar .head.link.item {
  106. padding-right: 0 !important;
  107. color: #ffffff;
  108. }
  109. .following.bar .head.link.item:hover {
  110. color: #dddddd;
  111. }
  112. .following.bar .avatar > .ui.image {
  113. margin-right: 0;
  114. }
  115. .following.bar .avatar .octicon-triangle-down {
  116. margin-top: 6.5px;
  117. }
  118. .following.bar .searchbox {
  119. background-color: #343b42 !important;
  120. transition: all .5s;
  121. border: none;
  122. }
  123. .following.bar .searchbox:focus {
  124. background-color: #ffffff !important;
  125. }
  126. .following.bar .search.icon {
  127. color: #bcbcbc !important;
  128. }
  129. .following.bar .text .octicon {
  130. width: 16px;
  131. text-align: center;
  132. }
  133. .following.bar .right.menu .menu {
  134. left: auto;
  135. right: 0;
  136. }
  137. .following.bar .right.menu .dropdown .menu {
  138. margin-top: 0;
  139. }
  140. .ui.left {
  141. float: left;
  142. }
  143. .ui.right {
  144. float: right;
  145. }
  146. .ui.container.fluid.padded {
  147. padding: 0 10px 0 10px;
  148. }
  149. .ui.form .ui.button {
  150. font-weight: normal;
  151. }
  152. .ui.form .box.field {
  153. padding-left: 27px;
  154. }
  155. .ui.menu,
  156. .ui.vertical.menu,
  157. .ui.segment {
  158. box-shadow: none;
  159. }
  160. .ui .text.red {
  161. color: #d95c5c !important;
  162. }
  163. .ui .text.red a {
  164. color: #d95c5c !important;
  165. }
  166. .ui .text.red a:hover {
  167. color: #E67777 !important;
  168. }
  169. .ui .text.blue {
  170. color: #428bca !important;
  171. }
  172. .ui .text.blue a {
  173. color: #15c !important;
  174. }
  175. .ui .text.blue a:hover {
  176. color: #428bca !important;
  177. }
  178. .ui .text.black {
  179. color: #444;
  180. }
  181. .ui .text.black:hover {
  182. color: #000;
  183. }
  184. .ui .text.grey {
  185. color: #767676 !important;
  186. }
  187. .ui .text.grey a {
  188. color: #444 !important;
  189. }
  190. .ui .text.grey a:hover {
  191. color: #000 !important;
  192. }
  193. .ui .text.light.grey {
  194. color: #888 !important;
  195. }
  196. .ui .text.green {
  197. color: #6cc644 !important;
  198. }
  199. .ui .text.purple {
  200. color: #6e5494 !important;
  201. }
  202. .ui .text.yellow {
  203. color: #FBBD08 !important;
  204. }
  205. .ui .text.gold {
  206. color: #a1882b !important;
  207. }
  208. .ui .text.left {
  209. text-align: left !important;
  210. }
  211. .ui .text.right {
  212. text-align: right !important;
  213. }
  214. .ui .text.small {
  215. font-size: 0.75em;
  216. }
  217. .ui .text.normal {
  218. font-weight: normal;
  219. }
  220. .ui .text.bold {
  221. font-weight: bold;
  222. }
  223. .ui .text.italic {
  224. font-style: italic;
  225. }
  226. .ui .text.truncate {
  227. overflow: hidden;
  228. text-overflow: ellipsis;
  229. white-space: nowrap;
  230. display: inline-block;
  231. }
  232. .ui .text.thin {
  233. font-weight: normal;
  234. }
  235. .ui .text.middle {
  236. vertical-align: middle;
  237. }
  238. .ui .message {
  239. text-align: center;
  240. }
  241. .ui .header > i + .content {
  242. padding-left: 0.75rem;
  243. vertical-align: middle;
  244. }
  245. .ui .warning.header {
  246. background-color: #F9EDBE !important;
  247. border-color: #F0C36D;
  248. }
  249. .ui .warning.segment {
  250. border-color: #F0C36D;
  251. }
  252. .ui .info.segment {
  253. border: 1px solid #c5d5dd;
  254. }
  255. .ui .info.segment.top {
  256. background-color: #e6f1f6 !important;
  257. }
  258. .ui .info.segment.top h3,
  259. .ui .info.segment.top h4 {
  260. margin-top: 0;
  261. }
  262. .ui .info.segment.top h3:last-child {
  263. margin-top: 4px;
  264. }
  265. .ui .info.segment.top > :last-child {
  266. margin-bottom: 0;
  267. }
  268. .ui .normal.header {
  269. font-weight: normal;
  270. }
  271. .ui .avatar.image {
  272. border-radius: 3px;
  273. }
  274. .ui .form .fake {
  275. display: none !important;
  276. }
  277. .ui .form .sub.field {
  278. margin-left: 25px;
  279. }
  280. .ui .sha.label {
  281. font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace;
  282. font-size: 13px;
  283. padding: 4px 10px;
  284. font-weight: normal;
  285. margin: 0 6px;
  286. }
  287. .ui.status.buttons .octicon {
  288. margin-right: 4px;
  289. }
  290. .ui.inline.delete-button {
  291. padding: 8px 15px;
  292. font-weight: normal;
  293. }
  294. .overflow.menu .items {
  295. max-height: 300px;
  296. overflow-y: auto;
  297. }
  298. .overflow.menu .items .item {
  299. position: relative;
  300. cursor: pointer;
  301. display: block;
  302. border: none;
  303. height: auto;
  304. border-top: none;
  305. line-height: 1em;
  306. color: rgba(0, 0, 0, 0.8);
  307. padding: .71428571em 1.14285714em !important;
  308. font-size: 1rem;
  309. text-transform: none;
  310. font-weight: 400;
  311. box-shadow: none;
  312. -webkit-touch-callout: none;
  313. }
  314. .overflow.menu .items .item.active {
  315. font-weight: 700;
  316. }
  317. .overflow.menu .items .item:hover {
  318. background: rgba(0, 0, 0, 0.05);
  319. color: rgba(0, 0, 0, 0.8);
  320. z-index: 13;
  321. }
  322. .scrolling.menu .item.selected {
  323. font-weight: 700 !important;
  324. }
  325. footer {
  326. margin-top: 54px !important;
  327. height: 40px;
  328. background-color: white;
  329. border-top: 1px solid #d6d6d6;
  330. clear: both;
  331. width: 100%;
  332. color: #888888;
  333. }
  334. footer .container {
  335. padding-top: 10px;
  336. }
  337. footer .container .fa {
  338. width: 16px;
  339. text-align: center;
  340. color: #428bca;
  341. }
  342. footer .container .links > * {
  343. border-left: 1px solid #d6d6d6;
  344. padding-left: 8px;
  345. margin-left: 5px;
  346. }
  347. footer .container .links > *:first-child {
  348. border-left: none;
  349. }
  350. footer .ui.language .menu {
  351. max-height: 500px;
  352. overflow-y: auto;
  353. margin-bottom: 7px;
  354. }
  355. .side-footer {
  356. font-size: 12px;
  357. line-height: 22px;
  358. color: #707070;
  359. margin-top: 20px;
  360. }
  361. .side-footer .contents {
  362. margin-right: 3px;
  363. margin-left: 3px;
  364. }
  365. .hide {
  366. display: none;
  367. }
  368. .center {
  369. text-align: center;
  370. }
  371. .img-1 {
  372. width: 2px !important;
  373. height: 2px !important;
  374. }
  375. .img-2 {
  376. width: 4px !important;
  377. height: 4px !important;
  378. }
  379. .img-3 {
  380. width: 6px !important;
  381. height: 6px !important;
  382. }
  383. .img-4 {
  384. width: 8px !important;
  385. height: 8px !important;
  386. }
  387. .img-5 {
  388. width: 10px !important;
  389. height: 10px !important;
  390. }
  391. .img-6 {
  392. width: 12px !important;
  393. height: 12px !important;
  394. }
  395. .img-7 {
  396. width: 14px !important;
  397. height: 14px !important;
  398. }
  399. .img-8 {
  400. width: 16px !important;
  401. height: 16px !important;
  402. }
  403. .img-9 {
  404. width: 18px !important;
  405. height: 18px !important;
  406. }
  407. .img-10 {
  408. width: 20px !important;
  409. height: 20px !important;
  410. }
  411. .img-11 {
  412. width: 22px !important;
  413. height: 22px !important;
  414. }
  415. .img-12 {
  416. width: 24px !important;
  417. height: 24px !important;
  418. }
  419. .img-13 {
  420. width: 26px !important;
  421. height: 26px !important;
  422. }
  423. .img-14 {
  424. width: 28px !important;
  425. height: 28px !important;
  426. }
  427. .img-15 {
  428. width: 30px !important;
  429. height: 30px !important;
  430. }
  431. .img-16 {
  432. width: 32px !important;
  433. height: 32px !important;
  434. }
  435. .sr-only {
  436. position: absolute;
  437. width: 1px;
  438. height: 1px;
  439. padding: 0;
  440. margin: -1px;
  441. overflow: hidden;
  442. clip: rect(0, 0, 0, 0);
  443. border: 0;
  444. }
  445. .sr-only-focusable:active,
  446. .sr-only-focusable:focus {
  447. position: static;
  448. width: auto;
  449. height: auto;
  450. margin: 0;
  451. overflow: visible;
  452. clip: auto;
  453. }
  454. .hljs {
  455. background: inherit !important;
  456. padding: 0 !important;
  457. }
  458. .ui.dropdown .menu > .item > .image,
  459. .ui.dropdown .menu > .item > img,
  460. .ui.dropdown > .text > .image,
  461. .ui.dropdown > .text > img {
  462. vertical-align: middle;
  463. margin-top: 0;
  464. margin-bottom: 0;
  465. }
  466. .error-pages h3,
  467. .error-pages h4 {
  468. color: rgba(0, 0, 0, 0.5);
  469. margin: 10px 0 10px;
  470. font-size: 18px;
  471. font-weight: 500;
  472. line-height: 1.6em;
  473. }
  474. .v-divider {
  475. border-left: 1px solid #e7e7e7;
  476. }
  477. .navbar.container {
  478. width: auto;
  479. padding-right: 1.5em;
  480. padding-left: 16px;
  481. }
  482. .navbar.signedinas {
  483. color: #24292e;
  484. }
  485. .navbar.bold {
  486. font-weight: bold !important;
  487. font-size: 13px;
  488. color: #ffffff !important;
  489. }
  490. .navbar.bold:hover {
  491. color: #dddddd !important;
  492. }
  493. .navbar.beta {
  494. padding: 0px !important;
  495. font-size: 15px;
  496. color: #ffffff !important;
  497. font-weight: bold !important;
  498. }
  499. .navbar.caret {
  500. font-size: 11px;
  501. }
  502. .oembed {
  503. padding: 20px !important;
  504. background: #e2e2e2 !important;
  505. }
  506. .oembed code {
  507. font-size: 15px;
  508. font-family: monospace;
  509. }
  510. .beta-badge {
  511. padding: 3px 5px !important;
  512. margin-left: 8px !important;
  513. }
  514. @media only screen and (max-width: 991px) and (min-width: 768px) {
  515. .ui.container {
  516. width: 95%;
  517. }
  518. }
  519. @media (max-width: 1020px) {
  520. body {
  521. min-width: 320px !important;
  522. max-width: 100%;
  523. }
  524. img,
  525. table,
  526. td,
  527. blockquote,
  528. code,
  529. pre,
  530. textarea,
  531. input,
  532. iframe,
  533. object,
  534. embed,
  535. video {
  536. max-width: 100%;
  537. }
  538. .full.height,
  539. .following.bar.light,
  540. .ui.form .inline.field > .selection.dropdown,
  541. .ui.form .inline.fields .field > .selection.dropdown,
  542. .ui.form .inline.field > input,
  543. .ui.form .inline.field > select,
  544. .ui.form .inline.fields .field > input,
  545. .ui.form .inline.fields .field > select {
  546. width: 100% !important;
  547. }
  548. .ui.header .ui.right .ui.small.button,
  549. .ui.header .ui.right .ui.labeled.button {
  550. margin: 5px 2.5px;
  551. }
  552. .ui.container,
  553. .ui.container:not(.fluid) {
  554. width: 90% !important;
  555. margin: auto 5% !important;
  556. }
  557. .ui.grid.news {
  558. max-width: 100% !important;
  559. }
  560. footer {
  561. width: 100%;
  562. bottom: 0;
  563. position: relative;
  564. }
  565. footer .ui.container {
  566. height: 100%;
  567. }
  568. footer .version {
  569. display: none;
  570. }
  571. footer .ui.left {
  572. width: 70%;
  573. word-wrap: break-word;
  574. }
  575. .ui.language.bottom.floating.slide.up.dropdown.link.item {
  576. right: 5%;
  577. position: absolute;
  578. }
  579. .following.bar a.main-menu.item .menu-icon.octicon {
  580. display: block;
  581. font-size: medium;
  582. text-indent: 0;
  583. margin: 5px auto !important;
  584. }
  585. .following.bar a.main-menu.item.active {
  586. width: 50px;
  587. }
  588. .following.bar a.main-menu.item {
  589. text-indent: -9999px;
  590. white-space: nowrap;
  591. overflow: hidden;
  592. font-size: 0px;
  593. width: 35px;
  594. }
  595. .following.bar a.main-menu.item .menu-icon.octicon.octicon-git-pull-request {
  596. padding-left: 5px;
  597. }
  598. .ui.header {
  599. font-size: 1.3rem;
  600. padding-left: 10px;
  601. }
  602. .column .ui.header .ui.right {
  603. padding-top: 5px;
  604. width: 90%;
  605. margin: 0 auto;
  606. float: none;
  607. line-height: 1.5;
  608. margin-right: 30px;
  609. }
  610. .ui.container .ui.header .ui.right .ui.small.button {
  611. margin: 0;
  612. }
  613. .ui.attached.header .right {
  614. margin-top: 5px;
  615. float: none;
  616. }
  617. .ui.tabs.container .ui.tabular.menu .item {
  618. text-indent: -9999px;
  619. white-space: nowrap;
  620. overflow: hidden;
  621. font-size: 0px;
  622. width: 50px;
  623. }
  624. .ui.tabular.menu .item i {
  625. text-indent: 0;
  626. }
  627. .ui.tabular.menu .item span {
  628. text-indent: 0;
  629. margin-left: 0 !important;
  630. margin: auto;
  631. }
  632. .ui.top.attached.header {
  633. padding-left: 10 !important;
  634. }
  635. .ui.form .inline.field > :first-child,
  636. .ui.form .inline.fields .field > :first-child {
  637. text-align: left;
  638. }
  639. .inline.field a[href^="/join"] {
  640. white-space: nowrap;
  641. }
  642. .ui.form .field:last-child,
  643. .ui.form .field:last-child .ui.button {
  644. width: 100%;
  645. margin: 3px auto;
  646. }
  647. .search-mobile {
  648. display: none !important;
  649. }
  650. .nav-active {
  651. box-shadow: 0px 0px 0px #4e57ef !important;
  652. padding: 5px !important;
  653. width: 40px !important;
  654. }
  655. .nav-active:hover {
  656. background: #000 !important;
  657. }
  658. .mega-octicon {
  659. font-size: 20px;
  660. }
  661. .commits-card {
  662. background-color: transparent;
  663. border: none;
  664. border-radius: 0;
  665. padding: 0;
  666. }
  667. .mobile-nav {
  668. padding-left: 0 !important;
  669. }
  670. .mwlii {
  671. display: none !important;
  672. }
  673. .navbar.container {
  674. width: auto;
  675. padding-right: 1em;
  676. padding-left: 1.5em;
  677. }
  678. .navbar.beta {
  679. display: none !important;
  680. }
  681. .hide-mobile {
  682. display: none !important;
  683. }
  684. }
  685. .markdown:not(code) {
  686. overflow: hidden;
  687. font-family: monospace;
  688. font-size: 15px;
  689. line-height: 1.6 !important;
  690. word-wrap: break-word;
  691. }
  692. .markdown:not(code).file-view {
  693. padding: 2em 2em 2em !important;
  694. }
  695. .markdown:not(code) > *:first-child {
  696. margin-top: 0 !important;
  697. }
  698. .markdown:not(code) > *:last-child {
  699. margin-bottom: 0 !important;
  700. }
  701. .markdown:not(code) a:not([href]) {
  702. color: inherit;
  703. text-decoration: none;
  704. }
  705. .markdown:not(code) .absent {
  706. color: #c00;
  707. }
  708. .markdown:not(code) .anchor {
  709. position: absolute;
  710. top: 0;
  711. left: 0;
  712. display: block;
  713. padding-right: 6px;
  714. padding-left: 30px;
  715. margin-left: -30px;
  716. }
  717. .markdown:not(code) .anchor:focus {
  718. outline: none;
  719. }
  720. .markdown:not(code) h1,
  721. .markdown:not(code) h2,
  722. .markdown:not(code) h3,
  723. .markdown:not(code) h4,
  724. .markdown:not(code) h5,
  725. .markdown:not(code) h6 {
  726. position: relative;
  727. margin-top: 1em;
  728. margin-bottom: 16px;
  729. font-weight: bold;
  730. line-height: 1.4;
  731. }
  732. .markdown:not(code) h1:first-of-type,
  733. .markdown:not(code) h2:first-of-type,
  734. .markdown:not(code) h3:first-of-type,
  735. .markdown:not(code) h4:first-of-type,
  736. .markdown:not(code) h5:first-of-type,
  737. .markdown:not(code) h6:first-of-type {
  738. margin-top: 0 !important;
  739. }
  740. .markdown:not(code) h1 .octicon-link,
  741. .markdown:not(code) h2 .octicon-link,
  742. .markdown:not(code) h3 .octicon-link,
  743. .markdown:not(code) h4 .octicon-link,
  744. .markdown:not(code) h5 .octicon-link,
  745. .markdown:not(code) h6 .octicon-link {
  746. display: none;
  747. color: #000;
  748. vertical-align: middle;
  749. }
  750. .markdown:not(code) h1:hover .anchor,
  751. .markdown:not(code) h2:hover .anchor,
  752. .markdown:not(code) h3:hover .anchor,
  753. .markdown:not(code) h4:hover .anchor,
  754. .markdown:not(code) h5:hover .anchor,
  755. .markdown:not(code) h6:hover .anchor {
  756. padding-left: 8px;
  757. margin-left: -30px;
  758. text-decoration: none;
  759. }
  760. .markdown:not(code) h1:hover .anchor .octicon-link,
  761. .markdown:not(code) h2:hover .anchor .octicon-link,
  762. .markdown:not(code) h3:hover .anchor .octicon-link,
  763. .markdown:not(code) h4:hover .anchor .octicon-link,
  764. .markdown:not(code) h5:hover .anchor .octicon-link,
  765. .markdown:not(code) h6:hover .anchor .octicon-link {
  766. display: inline-block;
  767. }
  768. .markdown:not(code) h1 tt,
  769. .markdown:not(code) h1 code,
  770. .markdown:not(code) h2 tt,
  771. .markdown:not(code) h2 code,
  772. .markdown:not(code) h3 tt,
  773. .markdown:not(code) h3 code,
  774. .markdown:not(code) h4 tt,
  775. .markdown:not(code) h4 code,
  776. .markdown:not(code) h5 tt,
  777. .markdown:not(code) h5 code,
  778. .markdown:not(code) h6 tt,
  779. .markdown:not(code) h6 code {
  780. font-size: inherit;
  781. }
  782. .markdown:not(code) h1 {
  783. padding-bottom: 0.3em;
  784. font-size: 2.25em;
  785. line-height: 1.2;
  786. border-bottom: 1px solid #eee;
  787. }
  788. .markdown:not(code) h1 .anchor {
  789. line-height: 1;
  790. }
  791. .markdown:not(code) h2 {
  792. padding-bottom: 0.3em;
  793. font-size: 1.75em;
  794. line-height: 1.225;
  795. border-bottom: 1px solid #eee;
  796. }
  797. .markdown:not(code) h2 .anchor {
  798. line-height: 1;
  799. }
  800. .markdown:not(code) h3 {
  801. font-size: 1.5em;
  802. line-height: 1.43;
  803. }
  804. .markdown:not(code) h3 .anchor {
  805. line-height: 1.2;
  806. }
  807. .markdown:not(code) h4 {
  808. font-size: 1.25em;
  809. }
  810. .markdown:not(code) h4 .anchor {
  811. line-height: 1.2;
  812. }
  813. .markdown:not(code) h5 {
  814. font-size: 1em;
  815. }
  816. .markdown:not(code) h5 .anchor {
  817. line-height: 1.1;
  818. }
  819. .markdown:not(code) h6 {
  820. font-size: 1em;
  821. color: #777;
  822. }
  823. .markdown:not(code) h6 .anchor {
  824. line-height: 1.1;
  825. }
  826. .markdown:not(code) p,
  827. .markdown:not(code) blockquote,
  828. .markdown:not(code) ul,
  829. .markdown:not(code) ol,
  830. .markdown:not(code) dl,
  831. .markdown:not(code) table,
  832. .markdown:not(code) pre {
  833. margin-top: 0;
  834. margin-bottom: 16px;
  835. }
  836. .markdown:not(code) blockquote {
  837. margin-left: 0;
  838. }
  839. .markdown:not(code) hr {
  840. height: 4px;
  841. padding: 0;
  842. margin: 16px 0;
  843. background-color: #e7e7e7;
  844. border: 0 none;
  845. }
  846. .markdown:not(code) ul,
  847. .markdown:not(code) ol {
  848. padding-left: 2em;
  849. }
  850. .markdown:not(code) ul.no-list,
  851. .markdown:not(code) ol.no-list {
  852. padding: 0;
  853. list-style-type: none;
  854. }
  855. .markdown:not(code) ul ul,
  856. .markdown:not(code) ul ol,
  857. .markdown:not(code) ol ol,
  858. .markdown:not(code) ol ul {
  859. margin-top: 0;
  860. margin-bottom: 0;
  861. }
  862. .markdown:not(code) ol ol,
  863. .markdown:not(code) ul ol {
  864. list-style-type: lower-roman;
  865. }
  866. .markdown:not(code) li > p {
  867. margin-top: 16px;
  868. }
  869. .markdown:not(code) dl {
  870. padding: 0;
  871. }
  872. .markdown:not(code) dl dt {
  873. padding: 0;
  874. margin-top: 16px;
  875. font-size: 1em;
  876. font-style: italic;
  877. font-weight: bold;
  878. }
  879. .markdown:not(code) dl dd {
  880. padding: 0 16px;
  881. margin-bottom: 16px;
  882. }
  883. .markdown:not(code) blockquote {
  884. padding: 0 15px;
  885. color: #777;
  886. border-left: 4px solid #ddd;
  887. }
  888. .markdown:not(code) blockquote > :first-child {
  889. margin-top: 0;
  890. }
  891. .markdown:not(code) blockquote > :last-child {
  892. margin-bottom: 0;
  893. }
  894. .markdown:not(code) table {
  895. display: block;
  896. width: 100%;
  897. overflow: auto;
  898. word-break: normal;
  899. word-break: keep-all;
  900. }
  901. .markdown:not(code) table th {
  902. font-weight: bold;
  903. }
  904. .markdown:not(code) table th,
  905. .markdown:not(code) table td {
  906. padding: 6px 13px !important;
  907. border: 1px solid #ddd !important;
  908. }
  909. .markdown:not(code) table tr {
  910. background-color: #ffffff;
  911. border-top: 1px solid #ccc;
  912. }
  913. .markdown:not(code) table tr:nth-child(2n) {
  914. background-color: #f8f8f8;
  915. }
  916. .markdown:not(code) img {
  917. max-width: 100%;
  918. box-sizing: border-box;
  919. }
  920. .markdown:not(code) .emoji {
  921. max-width: none;
  922. }
  923. .markdown:not(code) span.frame {
  924. display: block;
  925. overflow: hidden;
  926. }
  927. .markdown:not(code) span.frame > span {
  928. display: block;
  929. float: left;
  930. width: auto;
  931. padding: 7px;
  932. margin: 13px 0 0;
  933. overflow: hidden;
  934. border: 1px solid #ddd;
  935. }
  936. .markdown:not(code) span.frame span img {
  937. display: block;
  938. float: left;
  939. }
  940. .markdown:not(code) span.frame span span {
  941. display: block;
  942. padding: 5px 0 0;
  943. clear: both;
  944. color: #333;
  945. }
  946. .markdown:not(code) span.align-center {
  947. display: block;
  948. overflow: hidden;
  949. clear: both;
  950. }
  951. .markdown:not(code) span.align-center > span {
  952. display: block;
  953. margin: 13px auto 0;
  954. overflow: hidden;
  955. text-align: center;
  956. }
  957. .markdown:not(code) span.align-center span img {
  958. margin: 0 auto;
  959. text-align: center;
  960. }
  961. .markdown:not(code) span.align-right {
  962. display: block;
  963. overflow: hidden;
  964. clear: both;
  965. }
  966. .markdown:not(code) span.align-right > span {
  967. display: block;
  968. margin: 13px 0 0;
  969. overflow: hidden;
  970. text-align: right;
  971. }
  972. .markdown:not(code) span.align-right span img {
  973. margin: 0;
  974. text-align: right;
  975. }
  976. .markdown:not(code) span.float-left {
  977. display: block;
  978. float: left;
  979. margin-right: 13px;
  980. overflow: hidden;
  981. }
  982. .markdown:not(code) span.float-left span {
  983. margin: 13px 0 0;
  984. }
  985. .markdown:not(code) span.float-right {
  986. display: block;
  987. float: right;
  988. margin-left: 13px;
  989. overflow: hidden;
  990. }
  991. .markdown:not(code) span.float-right > span {
  992. display: block;
  993. margin: 13px auto 0;
  994. overflow: hidden;
  995. text-align: right;
  996. }
  997. .markdown:not(code) code,
  998. .markdown:not(code) tt {
  999. padding: 0;
  1000. padding-top: 0.2em;
  1001. padding-bottom: 0.2em;
  1002. margin: 0;
  1003. font-size: 85%;
  1004. background-color: rgba(0, 0, 0, 0.04);
  1005. border-radius: 3px;
  1006. }
  1007. .markdown:not(code) code:before,
  1008. .markdown:not(code) code:after,
  1009. .markdown:not(code) tt:before,
  1010. .markdown:not(code) tt:after {
  1011. letter-spacing: -0.2em;
  1012. content: "\00a0";
  1013. }
  1014. .markdown:not(code) code br,
  1015. .markdown:not(code) tt br {
  1016. display: none;
  1017. }
  1018. .markdown:not(code) del code {
  1019. text-decoration: inherit;
  1020. }
  1021. .markdown:not(code) pre > code {
  1022. padding: 0;
  1023. margin: 0;
  1024. font-size: 100%;
  1025. word-break: normal;
  1026. white-space: pre;
  1027. background: transparent;
  1028. border: 0;
  1029. }
  1030. .markdown:not(code) .highlight {
  1031. margin-bottom: 16px;
  1032. }
  1033. .markdown:not(code) .highlight pre,
  1034. .markdown:not(code) pre {
  1035. padding: 16px;
  1036. overflow: auto;
  1037. font-size: 85%;
  1038. line-height: 1.45;
  1039. background-color: #f7f7f7;
  1040. border-radius: 3px;
  1041. }
  1042. .markdown:not(code) .highlight pre {
  1043. margin-bottom: 0;
  1044. word-break: normal;
  1045. }
  1046. .markdown:not(code) pre {
  1047. word-wrap: normal;
  1048. }
  1049. .markdown:not(code) pre code,
  1050. .markdown:not(code) pre tt {
  1051. display: inline;
  1052. max-width: initial;
  1053. padding: 0;
  1054. margin: 0;
  1055. overflow: initial;
  1056. line-height: inherit;
  1057. word-wrap: normal;
  1058. background-color: transparent;
  1059. border: 0;
  1060. }
  1061. .markdown:not(code) pre code:before,
  1062. .markdown:not(code) pre code:after,
  1063. .markdown:not(code) pre tt:before,
  1064. .markdown:not(code) pre tt:after {
  1065. content: normal;
  1066. }
  1067. .markdown:not(code) kbd {
  1068. display: inline-block;
  1069. padding: 3px 5px;
  1070. font-size: 11px;
  1071. line-height: 10px;
  1072. color: #555;
  1073. vertical-align: middle;
  1074. background-color: #fcfcfc;
  1075. border: solid 1px #ccc;
  1076. border-bottom-color: #bbb;
  1077. border-radius: 3px;
  1078. box-shadow: inset 0 -1px 0 #bbbbbb;
  1079. }
  1080. .markdown:not(code) input[type="checkbox"] {
  1081. vertical-align: middle !important;
  1082. }
  1083. .markdown:not(code) .csv-data td,
  1084. .markdown:not(code) .csv-data th {
  1085. padding: 5px;
  1086. overflow: hidden;
  1087. font-size: 12px;
  1088. line-height: 1;
  1089. text-align: left;
  1090. white-space: nowrap;
  1091. }
  1092. .markdown:not(code) .csv-data .blob-num {
  1093. padding: 10px 8px 9px;
  1094. text-align: right;
  1095. background: #ffffff;
  1096. border: 0;
  1097. }
  1098. .markdown:not(code) .csv-data tr {
  1099. border-top: 0;
  1100. }
  1101. .markdown:not(code) .csv-data th {
  1102. font-weight: bold;
  1103. background: #f8f8f8;
  1104. border-top: 0;
  1105. }
  1106. .home {
  1107. padding-bottom: 80px;
  1108. }
  1109. .home .logo {
  1110. margin-bottom: 20px;
  1111. }
  1112. .home .hero h1 {
  1113. font-size: 4.5em;
  1114. }
  1115. .home .hero h2 {
  1116. margin-top: 0;
  1117. font-size: 2em;
  1118. }
  1119. .prompt.box {
  1120. border-radius: 10px !important;
  1121. padding: 50px;
  1122. margin-top: 30px !important;
  1123. }
  1124. .signup {
  1125. padding-top: 15px;
  1126. padding-bottom: 80px;
  1127. }
  1128. .home-main p {
  1129. font-size: 16px;
  1130. color: #586069;
  1131. }
  1132. .home-main .ui.icon.header {
  1133. font-weight: 400;
  1134. }
  1135. .home-main.bg {
  1136. background: url(https://cdn.jsdelivr.net/npm/gitote@1.0.7/img/signup_prompt.png), #f3f3f3;
  1137. background-position: top center,0 0;
  1138. background-size: 100% auto;
  1139. }
  1140. .home-main .align {
  1141. margin-top: 1em;
  1142. }
  1143. .home-main .desc {
  1144. padding-right: 8em;
  1145. padding-left: 8em;
  1146. font-family: monospace !important;
  1147. font-size: 1.2em;
  1148. }
  1149. .home-main.btn.home {
  1150. margin-top: 50px;
  1151. margin-left: 8px;
  1152. margin-right: 8px;
  1153. }
  1154. .home-main.btn.register {
  1155. background: #00cf6a !important;
  1156. border-radius: 2em !important;
  1157. height: 2.5em;
  1158. text-transform: uppercase;
  1159. font-size: 12px;
  1160. letter-spacing: 0.03em;
  1161. }
  1162. .home-main.btn.register:hover {
  1163. color: #f5f5f5 !important;
  1164. }
  1165. .home-main.btn.signin {
  1166. text-transform: uppercase;
  1167. font-size: 12px;
  1168. letter-spacing: 0.03em;
  1169. }
  1170. .home-main.prompt {
  1171. background-image: url(https://cdn.jsdelivr.net/npm/gitote@1.0.1/img/pattern.svg);
  1172. background-position: center 30%;
  1173. background-size: 25% auto;
  1174. background-color: #f3f3f3;
  1175. padding-top: 25px;
  1176. padding-bottom: 12px;
  1177. }
  1178. .home-main.padding {
  1179. padding-top: 4em;
  1180. padding-bottom: 4em;
  1181. }
  1182. .home-main.getstarted {
  1183. background: #24292e !important;
  1184. }
  1185. .home-main.getstarted h1 {
  1186. color: #ffffff;
  1187. font-weight: 400;
  1188. padding-top: 1em;
  1189. padding-bottom: 1em;
  1190. }
  1191. .home-main.auth {
  1192. background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #ffffff), linear-gradient(70deg, #eaf5ff 32%, #f6fff8);
  1193. }
  1194. .home-head {
  1195. padding-top: 6.9em !important;
  1196. padding-bottom: 6.9em !important;
  1197. }
  1198. @media (max-width: 1020px) {
  1199. .home-main.bg {
  1200. background: url(https://cdn.jsdelivr.net/npm/gitote@1.0.1/img/pattern.svg), #f3f3f3;
  1201. }
  1202. .home-main .desc,
  1203. .home-main.prompt {
  1204. display: none !important;
  1205. }
  1206. }
  1207. .install {
  1208. padding-top: 45px;
  1209. padding-bottom: 80px;
  1210. }
  1211. .install form label {
  1212. text-align: right;
  1213. width: 320px;
  1214. }
  1215. .install form input {
  1216. width: 300px !important;
  1217. }
  1218. .install form .field {
  1219. text-align: left;
  1220. }
  1221. .install form .field .help {
  1222. margin-left: 335px;
  1223. }
  1224. .install form .field.optional .title {
  1225. margin-left: 320px;
  1226. }
  1227. .install .ui.checkbox {
  1228. margin-left: 335px;
  1229. }
  1230. .install .ui.checkbox label {
  1231. width: auto !important;
  1232. }
  1233. .install .inline.checkbox {
  1234. margin-top: -1em;
  1235. margin-bottom: 2em;
  1236. }
  1237. .form .help {
  1238. color: #999999;
  1239. padding-top: .6em;
  1240. padding-bottom: .6em;
  1241. display: inline-block;
  1242. word-break: break-word;
  1243. }
  1244. .ui.attached.header {
  1245. background: #f0f0f0;
  1246. }
  1247. .ui.attached.header .right {
  1248. margin-top: -5px;
  1249. }
  1250. .ui.attached.header .right .button {
  1251. padding: 8px 10px;
  1252. font-weight: normal;
  1253. }
  1254. #create-page-form form {
  1255. margin: auto;
  1256. width: 800px!important;
  1257. }
  1258. #create-page-form form .ui.message {
  1259. text-align: center;
  1260. }
  1261. #create-page-form form .header {
  1262. padding-left: 280px;
  1263. }
  1264. #create-page-form form .inline.field > label {
  1265. text-align: right;
  1266. width: 250px;
  1267. word-wrap: break-word;
  1268. }
  1269. #create-page-form form .help {
  1270. margin-left: 265px;
  1271. }
  1272. #create-page-form form .optional .title {
  1273. margin-left: 250px;
  1274. }
  1275. #create-page-form form input,
  1276. #create-page-form form textarea {
  1277. width: 50% !important;
  1278. }
  1279. .user.activate form,
  1280. .user.forgot.password form,
  1281. .user.reset.password form,
  1282. .user.signin form,
  1283. .user.signup form {
  1284. margin: auto;
  1285. width: 800px!important;
  1286. }
  1287. .user.activate form .ui.message,
  1288. .user.forgot.password form .ui.message,
  1289. .user.reset.password form .ui.message,
  1290. .user.signin form .ui.message,
  1291. .user.signup form .ui.message {
  1292. text-align: center;
  1293. }
  1294. .user.activate form .header,
  1295. .user.forgot.password form .header,
  1296. .user.reset.password form .header,
  1297. .user.signin form .header,
  1298. .user.signup form .header {
  1299. padding-left: 280px;
  1300. }
  1301. .user.activate form .inline.field > label,
  1302. .user.forgot.password form .inline.field > label,
  1303. .user.reset.password form .inline.field > label,
  1304. .user.signin form .inline.field > label,
  1305. .user.signup form .inline.field > label {
  1306. text-align: right;
  1307. width: 250px;
  1308. word-wrap: break-word;
  1309. }
  1310. .user.activate form .help,
  1311. .user.forgot.password form .help,
  1312. .user.reset.password form .help,
  1313. .user.signin form .help,
  1314. .user.signup form .help {
  1315. margin-left: 265px;
  1316. }
  1317. .user.activate form .optional .title,
  1318. .user.forgot.password form .optional .title,
  1319. .user.reset.password form .optional .title,
  1320. .user.signin form .optional .title,
  1321. .user.signup form .optional .title {
  1322. margin-left: 250px;
  1323. }
  1324. .user.activate form input,
  1325. .user.forgot.password form input,
  1326. .user.reset.password form input,
  1327. .user.signin form input,
  1328. .user.signup form input,
  1329. .user.activate form textarea,
  1330. .user.forgot.password form textarea,
  1331. .user.reset.password form textarea,
  1332. .user.signin form textarea,
  1333. .user.signup form textarea {
  1334. width: 50% !important;
  1335. }
  1336. .user.activate form,
  1337. .user.forgot.password form,
  1338. .user.reset.password form,
  1339. .user.signin form,
  1340. .user.signup form {
  1341. width: 700px !important;
  1342. }
  1343. .user.activate form .header,
  1344. .user.forgot.password form .header,
  1345. .user.reset.password form .header,
  1346. .user.signin form .header,
  1347. .user.signup form .header {
  1348. padding-left: 230px;
  1349. }
  1350. .user.activate form .inline.field > label,
  1351. .user.forgot.password form .inline.field > label,
  1352. .user.reset.password form .inline.field > label,
  1353. .user.signin form .inline.field > label,
  1354. .user.signup form .inline.field > label {
  1355. width: 200px;
  1356. }
  1357. .user.signin.two-factor form {
  1358. width: 300px !important;
  1359. }
  1360. .user.signin.two-factor form .header {
  1361. padding-left: inherit !important;
  1362. }
  1363. .repository.new.repo form,
  1364. .repository.new.migrate form,
  1365. .repository.new.fork form {
  1366. margin: auto;
  1367. width: 800px!important;
  1368. }
  1369. .repository.new.repo form .ui.message,
  1370. .repository.new.migrate form .ui.message,
  1371. .repository.new.fork form .ui.message {
  1372. text-align: center;
  1373. }
  1374. .repository.new.repo form .header,
  1375. .repository.new.migrate form .header,
  1376. .repository.new.fork form .header {
  1377. padding-left: 280px;
  1378. }
  1379. .repository.new.repo form .inline.field > label,
  1380. .repository.new.migrate form .inline.field > label,
  1381. .repository.new.fork form .inline.field > label {
  1382. text-align: right;
  1383. width: 250px;
  1384. word-wrap: break-word;
  1385. }
  1386. .repository.new.repo form .help,
  1387. .repository.new.migrate form .help,
  1388. .repository.new.fork form .help {
  1389. margin-left: 265px;
  1390. }
  1391. .repository.new.repo form .optional .title,
  1392. .repository.new.migrate form .optional .title,
  1393. .repository.new.fork form .optional .title {
  1394. margin-left: 250px;
  1395. }
  1396. .repository.new.repo form input,
  1397. .repository.new.migrate form input,
  1398. .repository.new.fork form input,
  1399. .repository.new.repo form textarea,
  1400. .repository.new.migrate form textarea,
  1401. .repository.new.fork form textarea {
  1402. width: 50% !important;
  1403. }
  1404. .repository.new.repo form .dropdown .dropdown.icon,
  1405. .repository.new.migrate form .dropdown .dropdown.icon,
  1406. .repository.new.fork form .dropdown .dropdown.icon {
  1407. margin-top: -7px !important;
  1408. }
  1409. .repository.new.repo form .dropdown .text,
  1410. .repository.new.migrate form .dropdown .text,
  1411. .repository.new.fork form .dropdown .text {
  1412. margin-right: 0!important;
  1413. }
  1414. .repository.new.repo form .dropdown .text i,
  1415. .repository.new.migrate form .dropdown .text i,
  1416. .repository.new.fork form .dropdown .text i {
  1417. margin-right: 0!important;
  1418. }
  1419. .repository.new.repo .ui.form .selection.dropdown:not(.owner) {
  1420. width: 50%!important;
  1421. }
  1422. .repository.new.repo .ui.form #auto-init {
  1423. margin-left: 265px;
  1424. }
  1425. .new.webhook form .help {
  1426. margin-left: 25px;
  1427. }
  1428. .new.webhook .events.fields .column {
  1429. padding-left: 40px;
  1430. }
  1431. @media (max-width: 1020px) {
  1432. .user.signin form .header,
  1433. .user.signup form .header {
  1434. padding-left: 1em !important;
  1435. }
  1436. .repo-form {
  1437. margin: 0 !important;
  1438. }
  1439. }
  1440. .repository {
  1441. padding-top: 15px;
  1442. padding-bottom: 80px;
  1443. }
  1444. .repository .head .column {
  1445. padding-top: 5px !important;
  1446. padding-bottom: 5px !important;
  1447. }
  1448. .repository .head .ui.compact.menu {
  1449. margin-left: 1rem;
  1450. }
  1451. .repository .head .ui.header {
  1452. margin-top: 0;
  1453. }
  1454. .repository .head .mega-octicon {
  1455. width: 30px;
  1456. font-size: 30px;
  1457. }
  1458. .repository .head .ui.huge.breadcrumb {
  1459. font-weight: 400;
  1460. font-size: 1.7rem;
  1461. }
  1462. .repository .head .fork-flag {
  1463. margin-left: 50px;
  1464. display: block;
  1465. font-size: 11px;
  1466. white-space: nowrap;
  1467. }
  1468. .repository .head .octicon.octicon-repo-forked {
  1469. margin-top: -1px;
  1470. font-size: 15px;
  1471. }
  1472. .repository .navbar .ui.label {
  1473. margin-left: 7px;
  1474. padding: 3px 5px;
  1475. }
  1476. .repository .owner.dropdown {
  1477. min-width: 40% !important;
  1478. }
  1479. .repository .metas .menu {
  1480. max-height: 300px;
  1481. overflow-x: auto;
  1482. }
  1483. .repository .metas .ui.list .hide {
  1484. display: none!important;
  1485. }
  1486. .repository .metas .ui.list .item {
  1487. padding: 0px;
  1488. }
  1489. .repository .metas .ui.list .label.color {
  1490. padding: 0 8px;
  1491. margin-right: 5px;
  1492. }
  1493. .repository .metas .ui.list a {
  1494. margin: 2px 0;
  1495. }
  1496. .repository .metas .ui.list a .text {
  1497. color: #444;
  1498. }
  1499. .repository .metas .ui.list a .text:hover {
  1500. color: #000;
  1501. }
  1502. .repository .header-wrapper {
  1503. background-color: #FAFAFA;
  1504. margin-top: -15px;
  1505. padding-top: 15px;
  1506. }
  1507. .repository .header-wrapper .ui.tabs.divider {
  1508. border-bottom: none;
  1509. }
  1510. .repository .header-wrapper .ui.tabular .octicon {
  1511. margin-right: 5px;
  1512. }
  1513. .repository .filter.menu .label.color {
  1514. border-radius: 3px;
  1515. margin-left: 15px;
  1516. padding: 0 8px;
  1517. }
  1518. .repository .filter.menu .octicon {
  1519. float: left;
  1520. margin-left: -5px;
  1521. margin-right: -7px;
  1522. width: 16px;
  1523. }
  1524. .repository .filter.menu .menu {
  1525. max-height: 300px;
  1526. overflow-x: auto;
  1527. right: 0!important;
  1528. left: auto!important;
  1529. }
  1530. .repository .filter.menu .dropdown.item {
  1531. margin: 1px;
  1532. padding-right: 0;
  1533. }
  1534. .repository .ui.tabs.container {
  1535. margin-top: 14px;
  1536. margin-bottom: 0px;
  1537. }
  1538. .repository .ui.tabs.container .ui.menu {
  1539. border-bottom: none;
  1540. }
  1541. .repository .ui.tabs.divider {
  1542. margin-top: 0;
  1543. margin-bottom: 20px;
  1544. }
  1545. .repository #clone-panel {
  1546. margin-top: -8px;
  1547. margin-left: 5px;
  1548. width: 360px;
  1549. }
  1550. .repository #clone-panel input {
  1551. border-radius: 0;
  1552. padding: 5px 10px;
  1553. }
  1554. .repository #clone-panel .clone.button {
  1555. font-size: 13px;
  1556. padding: 0 5px;
  1557. }
  1558. .repository #clone-panel .clone.button:first-child {
  1559. border-radius: .28571429rem 0 0 .28571429rem;
  1560. }
  1561. .repository #clone-panel .icon.button {
  1562. padding: 0 10px;
  1563. }
  1564. .repository #clone-panel .dropdown .menu {
  1565. right: 0!important;
  1566. left: auto!important;
  1567. }
  1568. .repository.branches:not(.settings) .ui.list {
  1569. padding: 0;
  1570. }
  1571. .repository.branches:not(.settings) .ui.list > .item {
  1572. margin: 0;
  1573. line-height: 31px;
  1574. }
  1575. .repository.branches:not(.settings) .ui.list > .item:not(:last-child) {
  1576. border-bottom: 1px solid #DDD;
  1577. }
  1578. .repository.branches:not(.settings) .ui.list > .item .column {
  1579. padding: 5px 15px;
  1580. }
  1581. .repository.branches:not(.settings) .ui.list > .item .column .octicon {
  1582. vertical-align: text-bottom;
  1583. }
  1584. .repository.branches:not(.settings) .ui.list > .item .column code {
  1585. padding: 4px 0;
  1586. font-size: 12px;
  1587. }
  1588. .repository.branches:not(.settings) .ui.list > .item .column .ui.text:not(i) {
  1589. font-size: 12px;
  1590. }
  1591. .repository.branches:not(.settings) .ui.list > .item .column .ui.button {
  1592. font-size: 12px;
  1593. padding: 8px 10px;
  1594. }
  1595. .repository.file.list #repo-desc {
  1596. font-size: 1.2em;
  1597. }
  1598. .repository.file.list .choose.reference .header .icon {
  1599. font-size: 1.4em;
  1600. }
  1601. .repository.file.list #file-buttons {
  1602. font-weight: normal;
  1603. }
  1604. .repository.file.list #file-buttons .ui.button {
  1605. padding: 8px 10px;
  1606. font-weight: normal;
  1607. }
  1608. .repository.file.list #git-stats {
  1609. padding: 10px;
  1610. line-height: 0;
  1611. }
  1612. .repository.file.list #git-stats .list {
  1613. width: 100%;
  1614. }
  1615. .repository.file.list #git-stats .list .item {
  1616. margin-left: 0;
  1617. width: 33.33%;
  1618. }
  1619. .repository.file.list #git-stats .list .item .text b {
  1620. font-size: 15px;
  1621. }
  1622. .repository.file.list #repo-files-table thead th {
  1623. padding-top: 8px;
  1624. padding-bottom: 5px;
  1625. font-weight: normal;
  1626. }
  1627. .repository.file.list #repo-files-table thead th:first-child {
  1628. display: block;
  1629. position: relative;
  1630. width: 325%;
  1631. }
  1632. .repository.file.list #repo-files-table thead .ui.avatar {
  1633. margin-bottom: 5px;
  1634. }
  1635. .repository.file.list #repo-files-table tbody .octicon {
  1636. margin-left: 3px;
  1637. margin-right: 5px;
  1638. color: #777;
  1639. }
  1640. .repository.file.list #repo-files-table tbody .octicon.octicon-mail-reply {
  1641. margin-right: 10px;
  1642. }
  1643. .repository.file.list #repo-files-table tbody .octicon.octicon-file-directory,
  1644. .repository.file.list #repo-files-table tbody .octicon.octicon-file-submodule {
  1645. color: #1e70bf;
  1646. }
  1647. .repository.file.list #repo-files-table td {
  1648. padding-top: 9px;
  1649. padding-bottom: 9px;
  1650. }
  1651. .repository.file.list #repo-files-table tr:hover {
  1652. background-color: #ffffEE;
  1653. }
  1654. .repository.file.list #file-content .header .octicon {
  1655. padding-right: 5px;
  1656. }
  1657. .repository.file.list #file-content .header .icon {
  1658. font-size: 1em;
  1659. margin-top: -2px;
  1660. }
  1661. .repository.file.list #file-content .header .file-actions {
  1662. padding-left: 20px;
  1663. }
  1664. .repository.file.list #file-content .header .file-actions .btn-octicon {
  1665. display: inline-block;
  1666. padding: 5px;
  1667. margin-left: 5px;
  1668. line-height: 1;
  1669. color: #767676;
  1670. vertical-align: middle;
  1671. background: transparent;
  1672. border: 0;
  1673. outline: none;
  1674. }
  1675. .repository.file.list #file-content .header .file-actions .btn-octicon:hover {
  1676. color: #4078c0;
  1677. }
  1678. .repository.file.list #file-content .header .file-actions .btn-octicon-danger:hover {
  1679. color: #bd2c00;
  1680. }
  1681. .repository.file.list #file-content .header .file-actions .btn-octicon.disabled {
  1682. color: #bbb;
  1683. cursor: default;
  1684. }
  1685. .repository.file.list #file-content .header .file-actions #delete-file-form {
  1686. display: inline-block;
  1687. }
  1688. .repository.file.list #file-content .view-raw {
  1689. padding: 5px;
  1690. }
  1691. .repository.file.list #file-content .view-raw * {
  1692. max-width: 100%;
  1693. }
  1694. .repository.file.list #file-content .view-raw img {
  1695. margin-bottom: -5px;
  1696. }
  1697. .repository.file.list #file-content #ipython-notebook {
  1698. margin-left: 95px;
  1699. padding-top: 1px;
  1700. }
  1701. .repository.file.list #file-content #ipython-notebook .nb-notebook {
  1702. line-height: 1.5;
  1703. }
  1704. .repository.file.list #file-content #ipython-notebook .nb-stdout,
  1705. .repository.file.list #file-content #ipython-notebook .nb-stderr {
  1706. white-space: pre-wrap;
  1707. margin: 1em 0;
  1708. padding: 0.1em 0.5em;
  1709. }
  1710. .repository.file.list #file-content #ipython-notebook .nb-stderr {
  1711. background-color: #FAA;
  1712. }
  1713. .repository.file.list #file-content #ipython-notebook .nb-cell + .nb-cell {
  1714. margin-top: 0.5em;
  1715. }
  1716. .repository.file.list #file-content #ipython-notebook .nb-cell {
  1717. position: relative;
  1718. }
  1719. .repository.file.list #file-content #ipython-notebook .nb-cell.nb-heading-cell {
  1720. margin-top: 0.5em;
  1721. }
  1722. .repository.file.list #file-content #ipython-notebook .nb-cell img {
  1723. max-width: 100%;
  1724. }
  1725. .repository.file.list #file-content #ipython-notebook .nb-raw-cell {
  1726. white-space: pre-wrap;
  1727. background-color: #f5f2f0;
  1728. font-family: Consolas, Monaco, 'Andale Mono', monospace;
  1729. padding: 1em;
  1730. margin: .5em 0;
  1731. }
  1732. .repository.file.list #file-content #ipython-notebook .nb-input:before,
  1733. .repository.file.list #file-content #ipython-notebook .nb-output:before {
  1734. position: absolute;
  1735. font-family: monospace;
  1736. color: #999;
  1737. left: -7.5em;
  1738. width: 7em;
  1739. text-align: right;
  1740. }
  1741. .repository.file.list #file-content #ipython-notebook .nb-input:before {
  1742. content: "In [" attr(data-prompt-number) "]:";
  1743. }
  1744. .repository.file.list #file-content #ipython-notebook .nb-input pre {
  1745. background-color: #f7f7f7;
  1746. margin-right: 10px;
  1747. padding: 5px 10px;
  1748. }
  1749. .repository.file.list #file-content #ipython-notebook .nb-input pre code {
  1750. min-height: 18px;
  1751. line-height: 18px;
  1752. font-size: 14px;
  1753. }
  1754. .repository.file.list #file-content #ipython-notebook .nb-output:before {
  1755. content: "Out [" attr(data-prompt-number) "]:";
  1756. }
  1757. .repository.file.list #file-content #ipython-notebook .nb-output pre {
  1758. padding: 5px 10px;
  1759. font-size: 14px;
  1760. }
  1761. .repository.file.list #file-content #ipython-notebook .nb-output img {
  1762. max-width: 100%;
  1763. }
  1764. .repository.file.list #file-content #ipython-notebook .nb-output table {
  1765. border: 1px solid #000;
  1766. border-collapse: collapse;
  1767. }
  1768. .repository.file.list #file-content #ipython-notebook .nb-output th {
  1769. font-weight: bold;
  1770. }
  1771. .repository.file.list #file-content #ipython-notebook .nb-output th,
  1772. .repository.file.list #file-content #ipython-notebook .nb-output td {
  1773. border: 1px solid #000;
  1774. padding: 0.25em;
  1775. text-align: left;
  1776. vertical-align: middle;
  1777. border-collapse: collapse;
  1778. }
  1779. .repository.file.list #file-content #ipython-notebook .nb-markdown-cell {
  1780. margin-top: 10px;
  1781. margin-right: 10px;
  1782. padding: 10px;
  1783. }
  1784. .repository.file.list #file-content #ipython-notebook div[style="max-height:1000px;max-width:1500px;overflow:auto;"] {
  1785. max-height: none !important;
  1786. }
  1787. .repository.file.list #file-content .plain-text {
  1788. font-size: 14px;
  1789. padding: 15px 15px 10px 15px;
  1790. font-family: Consolas;
  1791. }
  1792. .repository.file.list #file-content .code-view * {
  1793. font-size: 12px;
  1794. font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  1795. line-height: 20px;
  1796. }
  1797. .repository.file.list #file-content .code-view table {
  1798. width: 100%;
  1799. }
  1800. .repository.file.list #file-content .code-view table tbody tr {
  1801. padding: 0 !important;
  1802. }
  1803. .repository.file.list #file-content .code-view .lines-num {
  1804. vertical-align: top;
  1805. text-align: right;
  1806. color: #999;
  1807. background: #f5f5f5;
  1808. width: 42px;
  1809. }
  1810. .repository.file.list #file-content .code-view .lines-num span {
  1811. line-height: 20px;
  1812. padding: 0 10px;
  1813. cursor: pointer;
  1814. display: block;
  1815. }
  1816. .repository.file.list #file-content .code-view .lines-num,
  1817. .repository.file.list #file-content .code-view .lines-code {
  1818. display: table-cell !important;
  1819. padding: 0 !important;
  1820. padding-left: 5px !important;
  1821. }
  1822. .repository.file.list #file-content .code-view .lines-num pre,
  1823. .repository.file.list #file-content .code-view .lines-code pre,
  1824. .repository.file.list #file-content .code-view .lines-num ol,
  1825. .repository.file.list #file-content .code-view .lines-code ol,
  1826. .repository.file.list #file-content .code-view .lines-num .hljs,
  1827. .repository.file.list #file-content .code-view .lines-code .hljs {
  1828. background-color: white;
  1829. margin: 0;
  1830. padding: 0 !important;
  1831. }
  1832. .repository.file.list #file-content .code-view .lines-num pre li,
  1833. .repository.file.list #file-content .code-view .lines-code pre li,
  1834. .repository.file.list #file-content .code-view .lines-num ol li,
  1835. .repository.file.list #file-content .code-view .lines-code ol li,
  1836. .repository.file.list #file-content .code-view .lines-num .hljs li,
  1837. .repository.file.list #file-content .code-view .lines-code .hljs li {
  1838. display: inline-block;
  1839. width: 100%;
  1840. }
  1841. .repository.file.list #file-content .code-view .lines-num pre li.active,
  1842. .repository.file.list #file-content .code-view .lines-code pre li.active,
  1843. .repository.file.list #file-content .code-view .lines-num ol li.active,
  1844. .repository.file.list #file-content .code-view .lines-code ol li.active,
  1845. .repository.file.list #file-content .code-view .lines-num .hljs li.active,
  1846. .repository.file.list #file-content .code-view .lines-code .hljs li.active {
  1847. background: #ffffdd;
  1848. }
  1849. .repository.file.list #file-content .code-view .lines-num pre li:before,
  1850. .repository.file.list #file-content .code-view .lines-code pre li:before,
  1851. .repository.file.list #file-content .code-view .lines-num ol li:before,
  1852. .repository.file.list #file-content .code-view .lines-code ol li:before,
  1853. .repository.file.list #file-content .code-view .lines-num .hljs li:before,
  1854. .repository.file.list #file-content .code-view .lines-code .hljs li:before {
  1855. content: ' ';
  1856. }
  1857. .repository.file.list .sidebar {
  1858. padding-left: 0;
  1859. }
  1860. .repository.file.list .sidebar .octicon {
  1861. width: 16px;
  1862. }
  1863. .repository.file.editor .treepath {
  1864. width: 100%;
  1865. }
  1866. .repository.file.editor .treepath input {
  1867. vertical-align: middle;
  1868. box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 2px inset;
  1869. width: inherit;
  1870. padding: 7px 8px;
  1871. margin-right: 5px;
  1872. }
  1873. .repository.file.editor .tabular.menu .octicon {
  1874. margin-right: 5px;
  1875. }
  1876. .repository.file.editor .commit-form-wrapper {
  1877. padding-left: 64px;
  1878. }
  1879. .repository.file.editor .commit-form-wrapper .commit-avatar {
  1880. float: left;
  1881. margin-left: -64px;
  1882. width: 3em;
  1883. height: auto;
  1884. }
  1885. .repository.file.editor .commit-form-wrapper .commit-form {
  1886. position: relative;
  1887. padding: 15px;
  1888. margin-bottom: 10px;
  1889. border: 1px solid #ddd;
  1890. border-radius: 3px;
  1891. }
  1892. .repository.file.editor .commit-form-wrapper .commit-form:before,
  1893. .repository.file.editor .commit-form-wrapper .commit-form:after {
  1894. right: 100%;
  1895. top: 20px;
  1896. border: solid transparent;
  1897. content: " ";
  1898. height: 0;
  1899. width: 0;
  1900. position: absolute;
  1901. pointer-events: none;
  1902. }
  1903. .repository.file.editor .commit-form-wrapper .commit-form:before {
  1904. border-right-color: #D4D4D5;
  1905. border-width: 9px;
  1906. margin-top: -9px;
  1907. }
  1908. .repository.file.editor .commit-form-wrapper .commit-form:after {
  1909. border-right-color: #f7f7f7;
  1910. border-width: 8px;
  1911. margin-top: -8px;
  1912. }
  1913. .repository.file.editor .commit-form-wrapper .commit-form:after {
  1914. border-right-color: #ffffff;
  1915. }
  1916. .repository.file.editor .commit-form-wrapper .commit-form .quick-pull-choice .branch-name {
  1917. display: inline-block;
  1918. padding: 3px 6px;
  1919. font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  1920. color: rgba(0, 0, 0, 0.65);
  1921. background-color: rgba(209, 227, 237, 0.45);
  1922. border-radius: 3px;
  1923. }
  1924. .repository.file.editor .commit-form-wrapper .commit-form .quick-pull-choice .new-branch-name-input {
  1925. position: relative;
  1926. margin-left: 25px;
  1927. }
  1928. .repository.file.editor .commit-form-wrapper .commit-form .quick-pull-choice .new-branch-name-input input {
  1929. width: 240px !important;
  1930. padding-left: 26px !important;
  1931. }
  1932. .repository.file.editor .commit-form-wrapper .commit-form .quick-pull-choice .octicon-git-branch {
  1933. position: absolute;
  1934. top: 9px;
  1935. left: 10px;
  1936. color: #b0c4ce;
  1937. }
  1938. .repository.options #interval {
  1939. width: 100px!important;
  1940. min-width: 100px;
  1941. }
  1942. .repository.options .danger .item {
  1943. padding: 20px 15px;
  1944. }
  1945. .repository.options .danger .ui.divider {
  1946. margin: 0;
  1947. }
  1948. .repository.new.issue .comment.form .comment .avatar {
  1949. width: 3em;
  1950. }
  1951. .repository.new.issue .comment.form .content {
  1952. margin-left: 4em;
  1953. }
  1954. .repository.new.issue .comment.form .content:before,
  1955. .repository.new.issue .comment.form .content:after {
  1956. right: 100%;
  1957. top: 20px;
  1958. border: solid transparent;
  1959. content: " ";
  1960. height: 0;
  1961. width: 0;
  1962. position: absolute;
  1963. pointer-events: none;
  1964. }
  1965. .repository.new.issue .comment.form .content:before {
  1966. border-right-color: #D4D4D5;
  1967. border-width: 9px;
  1968. margin-top: -9px;
  1969. }
  1970. .repository.new.issue .comment.form .content:after {
  1971. border-right-color: #f7f7f7;
  1972. border-width: 8px;
  1973. margin-top: -8px;
  1974. }
  1975. .repository.new.issue .comment.form .content:after {
  1976. border-right-color: #ffffff;
  1977. }
  1978. .repository.new.issue .comment.form .content .markdown {
  1979. font-size: 14px;
  1980. }
  1981. .repository.new.issue .comment.form .metas {
  1982. min-width: 220px;
  1983. }
  1984. .repository.new.issue .comment.form .metas .filter.menu {
  1985. max-height: 300px;
  1986. overflow-x: auto;
  1987. }
  1988. .repository.view.issue .title {
  1989. padding-bottom: 0!important;
  1990. }
  1991. .repository.view.issue .title h1 {
  1992. font-weight: 300;
  1993. font-size: 2.3rem;
  1994. margin-bottom: 5px;
  1995. }
  1996. .repository.view.issue .title h1 .ui.input {
  1997. font-size: 0.5em;
  1998. vertical-align: top;
  1999. width: 50%;
  2000. min-width: 600px;
  2001. }
  2002. .repository.view.issue .title h1 .ui.input input {
  2003. font-size: 1.5em;
  2004. padding: 6px 10px;
  2005. }
  2006. .repository.view.issue .title .index {
  2007. font-weight: 300;
  2008. color: #aaa;
  2009. letter-spacing: -1px;
  2010. }
  2011. .repository.view.issue .title .label {
  2012. margin-right: 10px;
  2013. }
  2014. .repository.view.issue .title .edit-zone {
  2015. margin-top: 10px;
  2016. }
  2017. .repository.view.issue .pull-desc code {
  2018. color: #0166E6;
  2019. }
  2020. .repository.view.issue .pull.tabular.menu {
  2021. margin-bottom: 10px;
  2022. }
  2023. .repository.view.issue .pull.tabular.menu .octicon {
  2024. margin-right: 5px;
  2025. }
  2026. .repository.view.issue .pull.tab.segment {
  2027. border: none;
  2028. padding: 0;
  2029. padding-top: 10px;
  2030. box-shadow: none;
  2031. background-color: inherit;
  2032. }
  2033. .repository.view.issue .pull .merge.box .avatar {
  2034. margin-left: 10px;
  2035. margin-top: 10px;
  2036. }
  2037. .repository.view.issue .pull .merge.box #commit_description {
  2038. height: auto;
  2039. }
  2040. .repository.view.issue .comment-list:before {
  2041. display: block;
  2042. content: "";
  2043. position: absolute;
  2044. margin-top: 12px;
  2045. margin-bottom: 14px;
  2046. top: 0;
  2047. bottom: 0;
  2048. left: 96px;
  2049. width: 2px;
  2050. background-color: #f3f3f3;
  2051. z-index: -1;
  2052. }
  2053. .repository.view.issue .comment-list .comment .avatar {
  2054. width: 3em;
  2055. }
  2056. .repository.view.issue .comment-list .comment .tag {
  2057. color: #767676;
  2058. margin-top: 3px;
  2059. padding: 2px 5px;
  2060. font-size: 12px;
  2061. border: 1px solid rgba(0, 0, 0, 0.1);
  2062. border-radius: 3px;
  2063. }
  2064. .repository.view.issue .comment-list .comment .actions .item {
  2065. float: left;
  2066. }
  2067. .repository.view.issue .comment-list .comment .actions .item.tag {
  2068. margin-right: 5px;
  2069. }
  2070. .repository.view.issue .comment-list .comment .actions .item.action {
  2071. margin-top: 6px;
  2072. margin-left: 10px;
  2073. }
  2074. .repository.view.issue .comment-list .comment .content {
  2075. margin-left: 4em;
  2076. }
  2077. .repository.view.issue .comment-list .comment .content .header {
  2078. font-weight: normal;
  2079. padding: auto 15px;
  2080. position: relative;
  2081. color: #767676;
  2082. background-color: #f7f7f7;
  2083. border-bottom: 1px solid #eee;
  2084. border-top-left-radius: 3px;
  2085. border-top-right-radius: 3px;
  2086. }
  2087. .repository.view.issue .comment-list .comment .content .header:before,
  2088. .repository.view.issue .comment-list .comment .content .header:after {
  2089. right: 100%;
  2090. top: 20px;
  2091. border: solid transparent;
  2092. content: " ";
  2093. height: 0;
  2094. width: 0;
  2095. position: absolute;
  2096. pointer-events: none;
  2097. }
  2098. .repository.view.issue .comment-list .comment .content .header:before {
  2099. border-right-color: #D4D4D5;
  2100. border-width: 9px;
  2101. margin-top: -9px;
  2102. }
  2103. .repository.view.issue .comment-list .comment .content .header:after {
  2104. border-right-color: #f7f7f7;
  2105. border-width: 8px;
  2106. margin-top: -8px;
  2107. }
  2108. .repository.view.issue .comment-list .comment .content .header .text {
  2109. max-width: 78%;
  2110. padding-top: 10px;
  2111. padding-bottom: 10px;
  2112. }
  2113. .repository.view.issue .comment-list .comment .content .markdown {
  2114. font-size: 14px;
  2115. }
  2116. .repository.view.issue .comment-list .comment .content .no-content {
  2117. color: #767676;
  2118. font-style: italic;
  2119. }
  2120. .repository.view.issue .comment-list .comment .content > .bottom.segment {
  2121. background: #f3f4f5;
  2122. }
  2123. .repository.view.issue .comment-list .comment .content > .bottom.segment .ui.images::after {
  2124. clear: both;
  2125. content: ' ';
  2126. display: block;
  2127. }
  2128. .repository.view.issue .comment-list .comment .content > .bottom.segment a {
  2129. display: block;
  2130. float: left;
  2131. margin: 5px;
  2132. padding: 5px;
  2133. height: 150px;
  2134. border: solid 1px #eee;
  2135. border-radius: 3px;
  2136. max-width: 150px;
  2137. background-color: #ffffff;
  2138. }
  2139. .repository.view.issue .comment-list .comment .content > .bottom.segment a:before {
  2140. content: ' ';
  2141. display: inline-block;
  2142. height: 100%;
  2143. vertical-align: middle;
  2144. }
  2145. .repository.view.issue .comment-list .comment .content > .bottom.segment .ui.image {
  2146. max-height: 100%;
  2147. width: auto;
  2148. margin: 0;
  2149. vertical-align: middle;
  2150. }
  2151. .repository.view.issue .comment-list .comment .content > .bottom.segment span.ui.image {
  2152. font-size: 8vw;
  2153. color: #000000;
  2154. }
  2155. .repository.view.issue .comment-list .comment .content > .bottom.segment span.ui.image:hover {
  2156. color: #000000;
  2157. }
  2158. .repository.view.issue .comment-list .comment .ui.form .field:first-child {
  2159. clear: none;
  2160. }
  2161. .repository.view.issue .comment-list .comment .ui.form .tab.segment {
  2162. border: none;
  2163. padding: 0;
  2164. padding-top: 10px;
  2165. }
  2166. .repository.view.issue .comment-list .comment .ui.form textarea {
  2167. height: 200px;
  2168. font-family: "Consolas", monospace;
  2169. }
  2170. .repository.view.issue .comment-list .comment .edit.buttons {
  2171. margin-top: 10px;
  2172. }
  2173. .repository.view.issue .comment-list .event {
  2174. position: relative;
  2175. margin: 15px 0 15px 79px;
  2176. padding-left: 25px;
  2177. }
  2178. .repository.view.issue .comment-list .event .octicon {
  2179. width: 30px;
  2180. float: left;
  2181. text-align: center;
  2182. }
  2183. .repository.view.issue .comment-list .event .octicon.octicon-circle-slash {
  2184. margin-top: 5px;
  2185. margin-left: -34.5px;
  2186. font-size: 20px;
  2187. background: #ffffff;
  2188. color: #bd2c00;
  2189. }
  2190. .repository.view.issue .comment-list .event .octicon.octicon-primitive-dot {
  2191. margin-left: -30.5px;
  2192. margin-right: -1px;
  2193. margin-top: -5px;
  2194. font-size: 38px;
  2195. color: #6cc644;
  2196. }
  2197. .repository.view.issue .comment-list .event .octicon.octicon-bookmark {
  2198. margin-top: 3px;
  2199. margin-left: -31px;
  2200. margin-right: -1px;
  2201. font-size: 25px;
  2202. }
  2203. .repository.view.issue .comment-list .event .detail {
  2204. font-size: 0.9rem;
  2205. margin-top: 5px;
  2206. margin-left: 35px;
  2207. }
  2208. .repository.view.issue .comment-list .event .detail .octicon.octicon-git-commit {
  2209. margin-top: 2px;
  2210. }
  2211. .repository.view.issue .ui.segment.metas {
  2212. margin-top: -3px;
  2213. }
  2214. .repository.view.issue .ui.participants img {
  2215. margin-top: 5px;
  2216. margin-right: 5px;
  2217. }
  2218. .repository .comment.form .ui.comments {
  2219. margin-top: -12px;
  2220. max-width: 100%;
  2221. }
  2222. .repository .comment.form .content .field:first-child {
  2223. clear: none;
  2224. }
  2225. .repository .comment.form .content .form:before,
  2226. .repository .comment.form .content .form:after {
  2227. right: 100%;
  2228. top: 20px;
  2229. border: solid transparent;
  2230. content: " ";
  2231. height: 0;
  2232. width: 0;
  2233. position: absolute;
  2234. pointer-events: none;
  2235. }
  2236. .repository .comment.form .content .form:before {
  2237. border-right-color: #D4D4D5;
  2238. border-width: 9px;
  2239. margin-top: -9px;
  2240. }
  2241. .repository .comment.form .content .form:after {
  2242. border-right-color: #f7f7f7;
  2243. border-width: 8px;
  2244. margin-top: -8px;
  2245. }
  2246. .repository .comment.form .content .form:after {
  2247. border-right-color: #ffffff;
  2248. }
  2249. .repository .comment.form .content .tab.segment {
  2250. border: none;
  2251. padding: 0;
  2252. padding-top: 10px;
  2253. }
  2254. .repository .comment.form .content textarea {
  2255. height: 200px;
  2256. font-family: "Consolas", monospace;
  2257. }
  2258. .repository .label.list {
  2259. list-style: none;
  2260. padding-top: 15px;
  2261. }
  2262. .repository .label.list > .item {
  2263. padding-top: 10px;
  2264. padding-bottom: 10px;
  2265. border-bottom: 1px dashed #AAA;
  2266. }
  2267. .repository .label.list > .item a {
  2268. font-size: 15px;
  2269. padding-top: 5px;
  2270. padding-right: 10px;
  2271. color: #666;
  2272. }
  2273. .repository .label.list > .item a:hover {
  2274. color: #000;
  2275. }
  2276. .repository .label.list > .item a.open-issues {
  2277. margin-right: 30px;
  2278. }
  2279. .repository .label.list > .item .ui.label {
  2280. font-size: 1em;
  2281. }
  2282. .repository .milestone.list {
  2283. list-style: none;
  2284. padding-top: 15px;
  2285. }
  2286. .repository .milestone.list > .item {
  2287. padding-top: 10px;
  2288. padding-bottom: 10px;
  2289. border-bottom: 1px dashed #AAA;
  2290. }
  2291. .repository .milestone.list > .item > a {
  2292. padding-top: 5px;
  2293. padding-right: 10px;
  2294. color: #000;
  2295. }
  2296. .repository .milestone.list > .item > a:hover {
  2297. color: #4078c0;
  2298. }
  2299. .repository .milestone.list > .item .ui.progress {
  2300. width: 40%;
  2301. padding: 0;
  2302. border: 0;
  2303. margin: 0;
  2304. }
  2305. .repository .milestone.list > .item .ui.progress .bar {
  2306. height: 13px;
  2307. }
  2308. .repository .milestone.list > .item .meta {
  2309. color: #999;
  2310. padding-top: 5px;
  2311. }
  2312. .repository .milestone.list > .item .meta .issue-stats .octicon {
  2313. padding-left: 5px;
  2314. }
  2315. .repository .milestone.list > .item .meta .overdue {
  2316. color: red;
  2317. }
  2318. .repository .milestone.list > .item .operate {
  2319. margin-top: -15px;
  2320. }
  2321. .repository .milestone.list > .item .operate > a {
  2322. font-size: 15px;
  2323. padding-top: 5px;
  2324. padding-right: 10px;
  2325. color: #666;
  2326. }
  2327. .repository .milestone.list > .item .operate > a:hover {
  2328. color: #000;
  2329. }
  2330. .repository .milestone.list > .item .content {
  2331. padding-top: 10px;
  2332. }
  2333. .repository.new.milestone textarea {
  2334. height: 200px;
  2335. }
  2336. .repository.new.milestone #deadline {
  2337. width: 150px;
  2338. }
  2339. .repository.compare.pull .choose.branch .octicon {
  2340. padding-right: 10px;
  2341. }
  2342. .repository.compare.pull .comment.form .content:before,
  2343. .repository.compare.pull .comment.form .content:after {
  2344. right: 100%;
  2345. top: 20px;
  2346. border: solid transparent;
  2347. content: " ";
  2348. height: 0;
  2349. width: 0;
  2350. position: absolute;
  2351. pointer-events: none;
  2352. }
  2353. .repository.compare.pull .comment.form .content:before {
  2354. border-right-color: #D4D4D5;
  2355. border-width: 9px;
  2356. margin-top: -9px;
  2357. }
  2358. .repository.compare.pull .comment.form .content:after {
  2359. border-right-color: #f7f7f7;
  2360. border-width: 8px;
  2361. margin-top: -8px;
  2362. }
  2363. .repository.compare.pull .comment.form .content:after {
  2364. border-right-color: #ffffff;
  2365. }
  2366. .repository .filter.dropdown .menu {
  2367. margin-top: 1px!important;
  2368. }
  2369. .repository.commits .header .ui.right .search input {
  2370. font-weight: normal;
  2371. padding: 5px 10px;
  2372. }
  2373. .repository #commits-table thead th:first-of-type {
  2374. padding-left: 15px;
  2375. }
  2376. .repository #commits-table thead .sha {
  2377. font-size: 13px;
  2378. padding: 4px 40px 4px 35px;
  2379. }
  2380. .repository #commits-table.ui.basic.striped.table tbody tr:nth-child(2n) {
  2381. background-color: rgba(0, 0, 0, 0.02) !important;
  2382. }
  2383. .repository .diff-detail-box {
  2384. margin: 15px 0;
  2385. line-height: 30px;
  2386. }
  2387. .repository .diff-detail-box ol {
  2388. clear: both;
  2389. padding-left: 0;
  2390. margin-top: 5px;
  2391. margin-bottom: 28px;
  2392. }
  2393. .repository .diff-detail-box ol li {
  2394. list-style: none;
  2395. padding-bottom: 4px;
  2396. margin-bottom: 4px;
  2397. border-bottom: 1px dashed #DDD;
  2398. padding-left: 6px;
  2399. }
  2400. .repository .diff-detail-box span.status {
  2401. display: inline-block;
  2402. width: 12px;
  2403. height: 12px;
  2404. margin-right: 8px;
  2405. vertical-align: middle;
  2406. }
  2407. .repository .diff-detail-box span.status.modify {
  2408. background-color: #f0db88;
  2409. }
  2410. .repository .diff-detail-box span.status.add {
  2411. background-color: #b4e2b4;
  2412. }
  2413. .repository .diff-detail-box span.status.del {
  2414. background-color: #e9aeae;
  2415. }
  2416. .repository .diff-detail-box span.status.rename {
  2417. background-color: #dad8ff;
  2418. }
  2419. .repository .diff-box .count {
  2420. margin-right: 12px;
  2421. font-size: 13px;
  2422. }
  2423. .repository .diff-box .count .bar {
  2424. background-color: #bd2c00;
  2425. height: 12px;
  2426. width: 40px;
  2427. display: inline-block;
  2428. margin: 2px 4px 0 4px;
  2429. vertical-align: text-top;
  2430. }
  2431. .repository .diff-box .count .bar .add {
  2432. background-color: #55a532;
  2433. height: 12px;
  2434. }
  2435. .repository .diff-box .file {
  2436. color: #888;
  2437. }
  2438. .repository .diff-file-box .header {
  2439. background-color: #f7f7f7;
  2440. }
  2441. .repository .diff-file-box .file-body.file-code .lines-num {
  2442. text-align: right;
  2443. color: #A7A7A7;
  2444. background: #fafafa;
  2445. width: 1%;
  2446. }
  2447. .repository .diff-file-box .file-body.file-code .lines-num span.fold {
  2448. display: block;
  2449. text-align: center;
  2450. }
  2451. .repository .diff-file-box .file-body.file-code .lines-num-old {
  2452. border-right: 1px solid #DDD;
  2453. }
  2454. .repository .diff-file-box .code-diff {
  2455. font-size: 12px;
  2456. }
  2457. .repository .diff-file-box .code-diff td {
  2458. padding: 0;
  2459. padding-left: 10px;
  2460. border-top: none;
  2461. }
  2462. .repository .diff-file-box .code-diff pre {
  2463. margin: 0;
  2464. }
  2465. .repository .diff-file-box .code-diff .lines-num {
  2466. border-right: 1px solid #d4d4d5;
  2467. padding: 0 5px;
  2468. user-select: none;
  2469. }
  2470. .repository .diff-file-box .code-diff .lines-num::before {
  2471. content: attr(data-line-number);
  2472. }
  2473. .repository .diff-file-box .code-diff .lines-num.lines-num-old,
  2474. .repository .diff-file-box .code-diff .lines-num.lines-num-new {
  2475. cursor: pointer;
  2476. }
  2477. .repository .diff-file-box .code-diff .lines-num.lines-num-old:hover,
  2478. .repository .diff-file-box .code-diff .lines-num.lines-num-new:hover {
  2479. color: #383636;
  2480. }
  2481. .repository .diff-file-box .code-diff tbody tr.tag-code td {
  2482. background-color: #F0F0F0 !important;
  2483. border-color: #D2CECE!important;
  2484. padding-top: 4px;
  2485. padding-bottom: 4px;
  2486. }
  2487. .repository .diff-file-box .code-diff tbody tr.tag-code td.halfwidth {
  2488. width: 50%;
  2489. }
  2490. .repository .diff-file-box .code-diff tbody tr.same-code td.active {
  2491. background-color: #ffffdd !important;
  2492. }
  2493. .repository .diff-file-box .code-diff tbody tr.del-code td.add-code {
  2494. background-color: #eaffea !important;
  2495. border-color: #c1e9c1 !important;
  2496. }
  2497. .repository .diff-file-box .code-diff tbody tr.del-code td.add-code pre {
  2498. background-color: #eaffea !important;
  2499. border-color: #c1e9c1 !important;
  2500. }
  2501. .repository .diff-file-box .code-diff tbody tr.del-code td {
  2502. background-color: #ffecec !important;
  2503. border-color: #f1c0c0 !important;
  2504. }
  2505. .repository .diff-file-box .code-diff tbody tr.del-code td.active {
  2506. background-color: #ffffdd !important;
  2507. }
  2508. .repository .diff-file-box .code-diff tbody tr.del-code td.halfwidth {
  2509. width: 50%;
  2510. }
  2511. .repository .diff-file-box .code-diff tbody tr.add-code td {
  2512. background-color: #eaffea !important;
  2513. border-color: #c1e9c1 !important;
  2514. }
  2515. .repository .diff-file-box .code-diff tbody tr.add-code td.halfwidth {
  2516. width: 50%;
  2517. }
  2518. .repository .diff-file-box .code-diff tbody tr.add-code td.active {
  2519. background-color: #ffffdd !important;
  2520. }
  2521. .repository .diff-file-box .code-diff tbody tr .removed-code {
  2522. background-color: #ff9999;
  2523. }
  2524. .repository .diff-file-box .code-diff tbody tr .added-code {
  2525. background-color: #99ff99;
  2526. }
  2527. .repository .diff-file-box.file-content img {
  2528. max-width: 100%;
  2529. padding: 5px 5px 0 5px;
  2530. }
  2531. .repository .code-view {
  2532. overflow: auto;
  2533. overflow-x: auto;
  2534. overflow-y: hidden;
  2535. }
  2536. .repository .code-view table {
  2537. width: 100%;
  2538. border-spacing: 0;
  2539. }
  2540. .repository.quickstart .guide .item {
  2541. padding: 1em;
  2542. }
  2543. .repository.quickstart .guide .item small {
  2544. font-weight: normal;
  2545. }
  2546. .repository.quickstart .guide .clone.button:first-child {
  2547. border-radius: .28571429rem 0 0 .28571429rem;
  2548. }
  2549. .repository.quickstart .guide .ui.action.small.input {
  2550. width: 100%;
  2551. }
  2552. .repository.quickstart .guide #repo-clone-url {
  2553. border-radius: 0;
  2554. padding: 5px 10px;
  2555. font-size: 1.2em;
  2556. }
  2557. .repository.quickstart .guide #repo-clone-url:focus {
  2558. border-radius: 0;
  2559. padding: 5px 10px;
  2560. font-size: 1.2em;
  2561. }
  2562. .repository.release #release-list {
  2563. border-top: 1px solid #DDD;
  2564. margin-top: 20px;
  2565. padding-top: 15px;
  2566. }
  2567. .repository.release #release-list > li {
  2568. list-style: none;
  2569. }
  2570. .repository.release #release-list > li .meta,
  2571. .repository.release #release-list > li .detail {
  2572. padding-top: 30px;
  2573. padding-bottom: 40px;
  2574. }
  2575. .repository.release #release-list > li .meta {
  2576. text-align: right;
  2577. position: relative;
  2578. }
  2579. .repository.release #release-list > li .meta .tag:not(.icon) {
  2580. display: block;
  2581. margin-top: 6px;
  2582. }
  2583. .repository.release #release-list > li .meta .commit {
  2584. display: block;
  2585. margin-top: 6px;
  2586. }
  2587. .repository.release #release-list > li .detail {
  2588. border-left: 1px solid #DDD;
  2589. }
  2590. .repository.release #release-list > li .detail .author img {
  2591. margin-bottom: -3px;
  2592. }
  2593. .repository.release #release-list > li .detail .download {
  2594. margin-top: 20px;
  2595. }
  2596. .repository.release #release-list > li .detail .download > a .octicon {
  2597. margin-left: 5px;
  2598. margin-right: 5px;
  2599. }
  2600. .repository.release #release-list > li .detail .download .list {
  2601. padding-left: 0;
  2602. border-top: 1px solid #eee;
  2603. }
  2604. .repository.release #release-list > li .detail .download .list li {
  2605. list-style: none;
  2606. display: block;
  2607. padding-top: 8px;
  2608. padding-bottom: 8px;
  2609. border-bottom: 1px solid #eee;
  2610. }
  2611. .repository.release #release-list > li .detail .dot {
  2612. width: 9px;
  2613. height: 9px;
  2614. background-color: #ccc;
  2615. z-index: 999;
  2616. position: absolute;
  2617. display: block;
  2618. left: -5px;
  2619. top: 40px;
  2620. border-radius: 6px;
  2621. border: 1px solid #FFF;
  2622. }
  2623. .repository.new.release .target {
  2624. min-width: 500px;
  2625. }
  2626. .repository.new.release .target #tag-name {
  2627. margin-top: -4px;
  2628. }
  2629. .repository.new.release .target .at {
  2630. margin-left: -5px;
  2631. margin-right: 5px;
  2632. }
  2633. .repository.new.release .target .dropdown.icon {
  2634. margin: 0;
  2635. padding-top: 3px;
  2636. }
  2637. .repository.new.release .target .selection.dropdown {
  2638. padding-top: 10px;
  2639. padding-bottom: 10px;
  2640. }
  2641. .repository.new.release .prerelease.field {
  2642. margin-bottom: 0;
  2643. }
  2644. .repository.forks .list {
  2645. margin-top: 0;
  2646. }
  2647. .repository.forks .list .item {
  2648. padding-top: 10px;
  2649. padding-bottom: 10px;
  2650. border-bottom: 1px solid #DDD;
  2651. }
  2652. .repository.forks .list .item .ui.avatar {
  2653. float: left;
  2654. margin-right: 5px;
  2655. }
  2656. .repository.forks .list .item .link {
  2657. padding-top: 5px;
  2658. }
  2659. .repository.wiki.start .ui.segment {
  2660. padding-top: 70px;
  2661. padding-bottom: 100px;
  2662. }
  2663. .repository.wiki.start .ui.segment .mega-octicon {
  2664. font-size: 48px;
  2665. }
  2666. .repository.wiki.new .CodeMirror .CodeMirror-code {
  2667. font-family: "Consolas", monospace;
  2668. }
  2669. .repository.wiki.new .CodeMirror .CodeMirror-code .cm-comment {
  2670. background: inherit;
  2671. }
  2672. .repository.wiki.new .editor-preview {
  2673. background-color: white;
  2674. }
  2675. .repository.wiki.view .choose.page {
  2676. margin-top: -5px;
  2677. }
  2678. .repository.wiki.view .ui.sub.header {
  2679. text-transform: none;
  2680. }
  2681. .repository.wiki.view .markdown {
  2682. padding-left: 25px;
  2683. margin-left: -25px;
  2684. }
  2685. .repository.wiki.view .markdown h1:first-of-type,
  2686. .repository.wiki.view .markdown h2:first-of-type,
  2687. .repository.wiki.view .markdown h3:first-of-type,
  2688. .repository.wiki.view .markdown h4:first-of-type,
  2689. .repository.wiki.view .markdown h5:first-of-type,
  2690. .repository.wiki.view .markdown h6:first-of-type {
  2691. margin-top: 0;
  2692. }
  2693. .repository.wiki.timestamp {
  2694. font-size: 12px !important;
  2695. margin-top: 7px !important;
  2696. }
  2697. .repository.settings.collaboration .collaborator.list {
  2698. padding: 0;
  2699. }
  2700. .repository.settings.collaboration .collaborator.list > .item {
  2701. margin: 0;
  2702. line-height: 2em;
  2703. }
  2704. .repository.settings.collaboration .collaborator.list > .item:not(:last-child) {
  2705. border-bottom: 1px solid #DDD;
  2706. }
  2707. .repository.settings.collaboration #repo-collab-form #search-user-box .results {
  2708. left: 7px;
  2709. }
  2710. .repository.settings.collaboration #repo-collab-form .ui.button {
  2711. margin-left: 5px;
  2712. margin-top: -3px;
  2713. }
  2714. .repository.settings.settings.branches .protected-branches .selection.dropdown {
  2715. width: 300px;
  2716. }
  2717. .repository.settings.settings.branches .protected-branches .item {
  2718. border: 1px solid #eaeaea;
  2719. padding: 10px 15px;
  2720. }
  2721. .repository.settings.settings.branches .protected-branches .item:not(:last-child) {
  2722. border-bottom: 0;
  2723. }
  2724. .repository.settings.settings.branches .branch-protection .help {
  2725. margin-left: 26px;
  2726. padding-top: 0;
  2727. }
  2728. .repository.settings.settings.branches .branch-protection .fields {
  2729. margin-left: 20px;
  2730. display: block;
  2731. }
  2732. .repository.settings.settings.branches .branch-protection .whitelist {
  2733. margin-left: 26px;
  2734. }
  2735. .repository.settings.settings.branches .branch-protection .whitelist .dropdown img {
  2736. display: inline-block;
  2737. }
  2738. .repository.settings.webhooks .types .menu .item {
  2739. padding: 10px !important;
  2740. }
  2741. .repository.settings.webhooks .logo.item img {
  2742. margin-top: -4px;
  2743. }
  2744. .repository.settings.webhook .text.desc {
  2745. margin-top: 5px;
  2746. }
  2747. .repository.settings.webhook .events .column {
  2748. padding-bottom: 0;
  2749. }
  2750. .repository.settings.webhook .events .help {
  2751. font-size: 13px;
  2752. margin-left: 26px;
  2753. padding-top: 0;
  2754. }
  2755. .repo.url {
  2756. margin-left: 5px;
  2757. }
  2758. .webhook .hook.history.list .right.menu .redelivery.button {
  2759. font-size: 12px;
  2760. margin-top: 6px;
  2761. height: 30px;
  2762. }
  2763. .webhook .hook.history.list .right.menu .redelivery.button .octicon {
  2764. font: normal normal normal 13px/1 Octicons;
  2765. width: 12px;
  2766. }
  2767. .user-cards .list {
  2768. padding: 0;
  2769. }
  2770. .user-cards .list .item {
  2771. list-style: none;
  2772. width: 32%;
  2773. margin: 10px 10px 10px 0;
  2774. padding-bottom: 14px;
  2775. float: left;
  2776. }
  2777. .user-cards .list .item .avatar {
  2778. width: 48px;
  2779. height: 48px;
  2780. float: left;
  2781. display: block;
  2782. margin-right: 10px;
  2783. }
  2784. .user-cards .list .item .name {
  2785. margin-top: 0;
  2786. margin-bottom: 0;
  2787. font-weight: normal;
  2788. }
  2789. .user-cards .list .item .meta {
  2790. margin-top: 5px;
  2791. }
  2792. #search-repo-box .results,
  2793. #search-user-box .results {
  2794. padding: 0;
  2795. position: absolute;
  2796. }
  2797. #search-repo-box .results .item,
  2798. #search-user-box .results .item {
  2799. padding: 10px 15px;
  2800. border-bottom: 1px solid #DDD;
  2801. cursor: pointer;
  2802. }
  2803. #search-repo-box .results .item:hover,
  2804. #search-user-box .results .item:hover {
  2805. background: rgba(0, 0, 0, 0.05) !important;
  2806. color: rgba(0, 0, 0, 0.95) !important;
  2807. }
  2808. #search-repo-box .results .item img,
  2809. #search-user-box .results .item img {
  2810. margin-right: 8px;
  2811. }
  2812. .issue.list {
  2813. list-style: none;
  2814. padding-top: 15px;
  2815. }
  2816. .issue.list > .item {
  2817. padding-top: 15px;
  2818. padding-bottom: 10px;
  2819. border-bottom: 1px dashed #AAA;
  2820. }
  2821. .issue.list > .item .title {
  2822. color: #444;
  2823. font-size: 15px;
  2824. font-weight: bold;
  2825. margin: 0 6px;
  2826. }
  2827. .issue.list > .item .title:hover {
  2828. color: #000;
  2829. }
  2830. .issue.list > .item .comment {
  2831. padding-right: 10px;
  2832. color: #666;
  2833. }
  2834. .issue.list > .item .desc {
  2835. padding-top: 5px;
  2836. color: #999;
  2837. }
  2838. .issue.list > .item .desc a.milestone {
  2839. padding-left: 5px;
  2840. color: #999!important;
  2841. }
  2842. .issue.list > .item .desc a.milestone:hover {
  2843. color: #000!important;
  2844. }
  2845. .issue.list > .item .desc .assignee {
  2846. margin-top: -5px;
  2847. margin-right: 5px;
  2848. }
  2849. .issue-search {
  2850. padding: 8px !important;
  2851. }
  2852. .page.buttons {
  2853. padding-top: 15px;
  2854. }
  2855. .ui.form .dropzone {
  2856. width: 100%;
  2857. margin-bottom: 10px;
  2858. border: 2px dashed #0087F7;
  2859. box-shadow: none!important;
  2860. }
  2861. .ui.form .dropzone .dz-error-message {
  2862. top: 140px;
  2863. }
  2864. .settings .content {
  2865. margin-top: 2px;
  2866. }
  2867. .settings .key.list .item:not(:first-child) {
  2868. border-top: 1px solid #eaeaea;
  2869. }
  2870. .settings .key.list .ssh-key-state-indicator {
  2871. float: left;
  2872. color: gray;
  2873. padding-left: 10px;
  2874. padding-top: 10px;
  2875. }
  2876. .settings .key.list .ssh-key-state-indicator.active {
  2877. color: #6cc644;
  2878. }
  2879. .settings .key.list .meta {
  2880. padding-top: 5px;
  2881. }
  2882. .settings .key.list .print {
  2883. color: #767676;
  2884. }
  2885. .settings .key.list .activity {
  2886. color: #666;
  2887. }
  2888. .settings .hook.list > .item:not(:first-child) {
  2889. border-top: 1px solid #eaeaea;
  2890. }
  2891. .settings .hook.list .item {
  2892. padding: 10px 20px;
  2893. }
  2894. .settings .hook.list .item .octicon,
  2895. .settings .hook.list .item .fa {
  2896. width: 20px;
  2897. text-align: center;
  2898. }
  2899. .settings .hook.list .item a {
  2900. overflow-wrap: break-word;
  2901. word-wrap: break-word;
  2902. -ms-word-break: break-all;
  2903. word-break: break-all;
  2904. word-break: break-word;
  2905. -ms-hyphens: auto;
  2906. -moz-hyphens: auto;
  2907. -webkit-hyphens: auto;
  2908. hyphens: auto;
  2909. }
  2910. .settings .hook.history.list .item {
  2911. padding-left: 13px;
  2912. }
  2913. .settings .hook.history.list .item .meta .ui.right {
  2914. margin-top: 5px;
  2915. }
  2916. .settings .hook.history.list .item .meta .ui.right .time {
  2917. font-size: 12px;
  2918. }
  2919. .settings .hook.history.list .item .info {
  2920. margin-top: 10px;
  2921. }
  2922. .settings .hook.history.list .item .info .tabular.menu .item {
  2923. font-weight: 500;
  2924. }
  2925. .settings .hook.history.list .item .info .tab.segment {
  2926. border: none;
  2927. padding: 0;
  2928. padding-top: 10px;
  2929. box-shadow: none;
  2930. }
  2931. .settings .hook.history.list .item .info .tab.segment > * {
  2932. color: #666;
  2933. }
  2934. .settings .hook.history.list .item .info .tab.segment pre {
  2935. word-wrap: break-word;
  2936. }
  2937. .settings .hook.history.list .item .info .tab.segment pre .hljs {
  2938. padding: 0;
  2939. background-color: inherit;
  2940. }
  2941. .ui.vertical.menu .header.item {
  2942. font-size: 1.1em;
  2943. background: #f0f0f0;
  2944. }
  2945. .edit-label.modal .form .column,
  2946. .new-label.segment .form .column {
  2947. padding-right: 0;
  2948. }
  2949. .edit-label.modal .form .buttons,
  2950. .new-label.segment .form .buttons {
  2951. margin-left: auto;
  2952. padding-top: 15px;
  2953. }
  2954. .edit-label.modal .form .color.picker.column,
  2955. .new-label.segment .form .color.picker.column {
  2956. width: auto;
  2957. }
  2958. .edit-label.modal .form .color.picker.column .color-picker,
  2959. .new-label.segment .form .color.picker.column .color-picker {
  2960. height: 35px;
  2961. width: auto;
  2962. padding-left: 30px;
  2963. }
  2964. .edit-label.modal .form .minicolors-swatch.minicolors-sprite,
  2965. .new-label.segment .form .minicolors-swatch.minicolors-sprite {
  2966. top: 10px;
  2967. left: 10px;
  2968. width: 15px;
  2969. height: 15px;
  2970. }
  2971. .edit-label.modal .form .precolors,
  2972. .new-label.segment .form .precolors {
  2973. padding-left: 0;
  2974. padding-right: 0;
  2975. margin: 3px 10px auto 10px;
  2976. width: 120px;
  2977. }
  2978. .edit-label.modal .form .precolors .color,
  2979. .new-label.segment .form .precolors .color {
  2980. float: left;
  2981. width: 15px;
  2982. height: 15px;
  2983. }
  2984. #avatar-arrow:before,
  2985. #avatar-arrow:after {
  2986. right: 100%;
  2987. top: 20px;
  2988. border: solid transparent;
  2989. content: " ";
  2990. height: 0;
  2991. width: 0;
  2992. position: absolute;
  2993. pointer-events: none;
  2994. }
  2995. #avatar-arrow:before {
  2996. border-right-color: #D4D4D5;
  2997. border-width: 9px;
  2998. margin-top: -9px;
  2999. }
  3000. #avatar-arrow:after {
  3001. border-right-color: #f7f7f7;
  3002. border-width: 8px;
  3003. margin-top: -8px;
  3004. }
  3005. #transfer-repo-modal .ui.message,
  3006. #delete-repo-modal .ui.message {
  3007. width: 100%!important;
  3008. }
  3009. .tab-size-1 {
  3010. tab-size: 1 !important;
  3011. -moz-tab-size: 1 !important;
  3012. }
  3013. .tab-size-2 {
  3014. tab-size: 2 !important;
  3015. -moz-tab-size: 2 !important;
  3016. }
  3017. .tab-size-3 {
  3018. tab-size: 3 !important;
  3019. -moz-tab-size: 3 !important;
  3020. }
  3021. .tab-size-4 {
  3022. tab-size: 4 !important;
  3023. -moz-tab-size: 4 !important;
  3024. }
  3025. .tab-size-5 {
  3026. tab-size: 5 !important;
  3027. -moz-tab-size: 5 !important;
  3028. }
  3029. .tab-size-6 {
  3030. tab-size: 6 !important;
  3031. -moz-tab-size: 6 !important;
  3032. }
  3033. .tab-size-7 {
  3034. tab-size: 7 !important;
  3035. -moz-tab-size: 7 !important;
  3036. }
  3037. .tab-size-8 {
  3038. tab-size: 8 !important;
  3039. -moz-tab-size: 8 !important;
  3040. }
  3041. .tab-size-9 {
  3042. tab-size: 9 !important;
  3043. -moz-tab-size: 9 !important;
  3044. }
  3045. .tab-size-10 {
  3046. tab-size: 10 !important;
  3047. -moz-tab-size: 10 !important;
  3048. }
  3049. .tab-size-11 {
  3050. tab-size: 11 !important;
  3051. -moz-tab-size: 11 !important;
  3052. }
  3053. .tab-size-12 {
  3054. tab-size: 12 !important;
  3055. -moz-tab-size: 12 !important;
  3056. }
  3057. .tab-size-13 {
  3058. tab-size: 13 !important;
  3059. -moz-tab-size: 13 !important;
  3060. }
  3061. .tab-size-14 {
  3062. tab-size: 14 !important;
  3063. -moz-tab-size: 14 !important;
  3064. }
  3065. .tab-size-15 {
  3066. tab-size: 15 !important;
  3067. -moz-tab-size: 15 !important;
  3068. }
  3069. .tab-size-16 {
  3070. tab-size: 16 !important;
  3071. -moz-tab-size: 16 !important;
  3072. }
  3073. .repo-table-font {
  3074. font-size: 15px !important;
  3075. line-height: 1.5;
  3076. }
  3077. .md-helper {
  3078. display: inline-block;
  3079. padding-top: 15px;
  3080. margin-left: 10px;
  3081. font-size: 12px;
  3082. color: #586069;
  3083. float: left;
  3084. }
  3085. .md-helper:hover {
  3086. color: #0366d6;
  3087. }
  3088. .view-source {
  3089. border: 1px solid #2185d0;
  3090. border-radius: 4px;
  3091. padding: 5px 8px;
  3092. margin-left: 3px;
  3093. }
  3094. .view-source:hover {
  3095. background: #2185d0;
  3096. }
  3097. .code-icon {
  3098. color: #2185d0;
  3099. }
  3100. .code-icon:hover {
  3101. color: #ffffff;
  3102. }
  3103. @media (max-width: 1020px) {
  3104. [class*="vertically padded"].ui.grid,
  3105. #release-list .ui.grid,
  3106. #git-stats,
  3107. .repository.new.repo .ui.form .selection.dropdown:not(.owner),
  3108. .repository.new.repo form input,
  3109. .repository.new.migrate form input,
  3110. .repository.new.fork form input,
  3111. .repository.new.repo form textarea,
  3112. .repository.new.migrate form textarea,
  3113. .repository.new.fork form textarea,
  3114. .ui.grid > [class*="twelve wide"].column,
  3115. .repository .ui.container .navbar .ui.compact.small.menu {
  3116. width: 100% !important;
  3117. }
  3118. .repository .ui.container .ui.secondary.menu {
  3119. padding: 6px 6px 30px;
  3120. position: relative;
  3121. width: 100%;
  3122. }
  3123. .repository.file.list #repo-files-table .grey.has-emoji,
  3124. .repository.file.list #repo-files-table thead th,
  3125. .repository.file.list #repo-files-table td.message.collapsing.has-emoji {
  3126. display: none;
  3127. }
  3128. .repository.file.list #repo-files-table thead th:first-child {
  3129. width: 200%;
  3130. }
  3131. .repository.file.list #repo-files-table tr {
  3132. width: 100%;
  3133. }
  3134. #commits-table tbody tr .message.collapsing span,
  3135. #commits-table thead tr .nine.wide.message span.commits-message {
  3136. display: none;
  3137. }
  3138. #commits-table thead tr th.four.wide,
  3139. #commits-table thead tr th.nine.wide.message,
  3140. #commits-table thead tr th.three.wide {
  3141. width: 33%;
  3142. }
  3143. #file-buttons {
  3144. display: none !important;
  3145. }
  3146. .ui.menu .right.fitted.item {
  3147. display: none;
  3148. }
  3149. .repository .ui.container .navbar .ui.compact.small.menu .item {
  3150. position: relative;
  3151. width: 50%;
  3152. text-align: center;
  3153. }
  3154. .repository .ui.container .navbar .ui.right {
  3155. margin-top: 5px;
  3156. float: none;
  3157. }
  3158. .repository .ui.container .navbar .ui.right .ui.green.button {
  3159. margin: auto;
  3160. display: table;
  3161. }
  3162. .repository.new.repo form .inline.field > label,
  3163. .repository.new.migrate form .inline.field > label,
  3164. .repository.new.fork form .inline.field > label {
  3165. text-align: left;
  3166. }
  3167. .repository.new.repo form .header,
  3168. .repository.new.migrate form .header,
  3169. .repository.new.fork form .header {
  3170. padding-left: 0 !important;
  3171. }
  3172. .repository .header-wrapper .ui.tabular .octicon {
  3173. margin: 0 auto !important;
  3174. }
  3175. .repository .header-wrapper .ui.tabular .octicon.octicon-file-text {
  3176. padding-left: 5px;
  3177. }
  3178. #repo-desc {
  3179. text-align: left;
  3180. }
  3181. .repository.release #release-list > li .meta {
  3182. text-align: left;
  3183. padding-bottom: 0;
  3184. border-left: 1px solid #DDD;
  3185. }
  3186. .repository.release #release-list > li .detail {
  3187. padding-top: 10px;
  3188. }
  3189. .repository .ui.container .ui.secondary.menu.right.floated.menu {
  3190. display: none;
  3191. }
  3192. }
  3193. .CodeMirror {
  3194. font: 14px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  3195. line-height: 1.5;
  3196. font-size: 13px;
  3197. }
  3198. .CodeMirror.cm-s-default {
  3199. border-radius: 3px;
  3200. padding: 0 !important;
  3201. }
  3202. .CodeMirror .cm-comment {
  3203. background: inherit !important;
  3204. }
  3205. .organization {
  3206. padding-top: 15px;
  3207. padding-bottom: 80px;
  3208. }
  3209. .organization .head .ui.header .text {
  3210. vertical-align: middle;
  3211. font-size: 1.6rem;
  3212. margin-left: 15px;
  3213. }
  3214. .organization .head .ui.header .ui.right {
  3215. margin-top: 5px;
  3216. }
  3217. .organization.new.org form {
  3218. margin: auto;
  3219. width: 800px!important;
  3220. }
  3221. .organization.new.org form .ui.message {
  3222. text-align: center;
  3223. }
  3224. .organization.new.org form .header {
  3225. padding-left: 280px;
  3226. }
  3227. .organization.new.org form .inline.field > label {
  3228. text-align: right;
  3229. width: 250px;
  3230. word-wrap: break-word;
  3231. }
  3232. .organization.new.org form .help {
  3233. margin-left: 265px;
  3234. }
  3235. .organization.new.org form .optional .title {
  3236. margin-left: 250px;
  3237. }
  3238. .organization.new.org form input,
  3239. .organization.new.org form textarea {
  3240. width: 50% !important;
  3241. }
  3242. .organization.options input {
  3243. min-width: 300px;
  3244. }
  3245. .organization.profile #org-avatar {
  3246. width: 100px;
  3247. height: 100px;
  3248. margin-right: 15px;
  3249. }
  3250. .organization.profile #org-info .ui.header {
  3251. font-size: 36px;
  3252. margin-bottom: 0;
  3253. }
  3254. .organization.profile #org-info .desc {
  3255. font-size: 15px;
  3256. margin-bottom: 10px;
  3257. }
  3258. .organization.profile #org-info .meta .item {
  3259. display: inline-block;
  3260. margin-right: 10px;
  3261. }
  3262. .organization.profile #org-info .meta .item .icon {
  3263. margin-right: 5px;
  3264. }
  3265. .organization.profile .ui.top.header .ui.right {
  3266. margin-top: 0;
  3267. }
  3268. .organization.profile .teams .item {
  3269. padding: 10px 15px;
  3270. }
  3271. .organization.teams .members .ui.avatar,
  3272. .organization.profile .members .ui.avatar {
  3273. width: 48px;
  3274. height: 48px;
  3275. }
  3276. .organization.invite #invite-box {
  3277. margin: auto;
  3278. margin-top: 50px;
  3279. width: 500px !important;
  3280. }
  3281. .organization.invite #invite-box #search-user-box input {
  3282. margin-left: 0;
  3283. width: 300px;
  3284. }
  3285. .organization.invite #invite-box .ui.button {
  3286. margin-left: 5px;
  3287. margin-top: -3px;
  3288. }
  3289. .organization.members .list .item {
  3290. margin-left: 0;
  3291. margin-right: 0;
  3292. border-bottom: 1px solid #eee;
  3293. }
  3294. .organization.members .list .item .ui.avatar {
  3295. width: 48px;
  3296. height: 48px;
  3297. }
  3298. .organization.members .list .item .meta {
  3299. line-height: 24px;
  3300. }
  3301. .organization.teams .detail .item {
  3302. padding: 10px 15px;
  3303. }
  3304. .organization.teams .detail .item:not(:last-child) {
  3305. border-bottom: 1px solid #eee;
  3306. }
  3307. .organization.teams .repositories .item,
  3308. .organization.teams .members .item {
  3309. padding: 10px 20px;
  3310. line-height: 32px;
  3311. }
  3312. .organization.teams .repositories .item:not(:last-child),
  3313. .organization.teams .members .item:not(:last-child) {
  3314. border-bottom: 1px solid #DDD;
  3315. }
  3316. .organization.teams .repositories .item .button,
  3317. .organization.teams .members .item .button {
  3318. padding: 9px 10px;
  3319. }
  3320. .organization.teams #add-repo-form input,
  3321. .organization.teams #add-member-form input {
  3322. margin-left: 0;
  3323. }
  3324. .organization.teams #add-repo-form .ui.button,
  3325. .organization.teams #add-member-form .ui.button {
  3326. margin-left: 5px;
  3327. margin-top: -3px;
  3328. }
  3329. @media (max-width: 1020px) {
  3330. .ui.right .ui.secondary.head.menu .item[href^="/org/"] {
  3331. display: none;
  3332. }
  3333. .organization.new.org form .help {
  3334. margin-left: 0 !important;
  3335. }
  3336. .organization.new.org form .inline.field > label {
  3337. text-align: left;
  3338. }
  3339. .organization.new.org form .header {
  3340. padding-left: 0 !important;
  3341. }
  3342. }
  3343. .user:not(.icon) {
  3344. padding-top: 15px;
  3345. padding-bottom: 80px;
  3346. }
  3347. .user.settings .list .item.ui.grid {
  3348. margin-top: 15px;
  3349. }
  3350. .user.settings .email.list .item:not(:first-child) {
  3351. border-top: 1px solid #eaeaea;
  3352. height: 50px;
  3353. }
  3354. .user.settings .email.list .item:not(:first-child) .button {
  3355. margin-top: -10px;
  3356. }
  3357. .user.settings .email.list .item .ui.primary.label {
  3358. margin-top: -5px;
  3359. }
  3360. .user.settings.sshkeys .right.floated.button,
  3361. .user.settings.applications .right.floated.button {
  3362. padding-top: 1rem;
  3363. padding-bottom: 1rem;
  3364. }
  3365. .user.settings.security .two-factor .toggle.button {
  3366. margin-top: -5px;
  3367. }
  3368. .user.settings.repositories .repos {
  3369. padding: 0;
  3370. }
  3371. .user.settings.repositories .repos .item {
  3372. padding: 15px;
  3373. height: 46px;
  3374. }
  3375. .user.settings.repositories .repos .item .button {
  3376. margin-top: -5px;
  3377. }
  3378. .user.settings.organizations .orgs.non-empty {
  3379. padding: 0;
  3380. }
  3381. .user.settings.organizations .orgs .item {
  3382. padding: 10px;
  3383. }
  3384. .user.settings.organizations .orgs .item .button {
  3385. margin-top: 5px;
  3386. margin-right: 8px;
  3387. }
  3388. .user.profile .ui.card .header {
  3389. word-break: break-all;
  3390. }
  3391. .user.profile .ui.card .username {
  3392. background-color: #ffdb99;
  3393. color: #330000;
  3394. display: inline-block;
  3395. margin-top: 5px;
  3396. padding: 3px;
  3397. padding-left: 8px;
  3398. padding-right: 8px;
  3399. border-radius: 2em;
  3400. font-size: 11px;
  3401. }
  3402. .user.profile .ui.card .extra.content {
  3403. padding: 0;
  3404. }
  3405. .user.profile .ui.card .extra.content ul {
  3406. margin: 0;
  3407. padding: 0;
  3408. }
  3409. .user.profile .ui.card .extra.content ul li {
  3410. padding: 10px;
  3411. list-style: none;
  3412. }
  3413. .user.profile .ui.card .extra.content ul li:not(:last-child) {
  3414. border-bottom: 1px solid #eaeaea;
  3415. font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  3416. font-weight: bold;
  3417. }
  3418. .user.profile .ui.card .extra.content ul li .octicon {
  3419. margin-left: 1px;
  3420. margin-right: 5px;
  3421. }
  3422. .user.profile .ui.card .extra.content ul li.follow .ui.button {
  3423. width: 100%;
  3424. }
  3425. .user.profile .ui.repository.list {
  3426. margin-top: 25px;
  3427. }
  3428. .user.followers .header.name {
  3429. font-size: 20px;
  3430. line-height: 24px;
  3431. vertical-align: middle;
  3432. }
  3433. .user.followers .follow .ui.button {
  3434. padding: 8px 15px;
  3435. }
  3436. .user.description {
  3437. margin-bottom: 5px;
  3438. margin-top: 5px;
  3439. overflow: hidden;
  3440. font-size: 13px;
  3441. color: #6a737d;
  3442. font-family: monospace !important;
  3443. font-weight: 100 !important;
  3444. }
  3445. .verified {
  3446. font-size: 16px;
  3447. color: #328a46;
  3448. margin-right: 3px;
  3449. }
  3450. .verified.v-explore {
  3451. font-size: 13px;
  3452. }
  3453. .maker {
  3454. font-size: 16px;
  3455. color: #6435c9;
  3456. }
  3457. .maker.m-explore {
  3458. font-size: 13px;
  3459. margin-right: 3px;
  3460. }
  3461. .isstaff {
  3462. font-size: 16px;
  3463. color: #f2711c;
  3464. }
  3465. .isintern {
  3466. font-size: 16px;
  3467. color: #242424;
  3468. }
  3469. .developer {
  3470. font-size: 16px;
  3471. color: #00bcd4;
  3472. }
  3473. .bughunter {
  3474. font-size: 16px;
  3475. color: #ff0000;
  3476. margin-right: 2px;
  3477. }
  3478. .bughunter.bh-explore {
  3479. font-size: 13px;
  3480. margin-right: 3px;
  3481. }
  3482. .org-grid {
  3483. display: inline-block;
  3484. margin-bottom: 3px;
  3485. }
  3486. .staff {
  3487. padding: 3px 4px;
  3488. font-size: 12px;
  3489. font-family: sans-serif;
  3490. color: #ffffff;
  3491. text-transform: uppercase;
  3492. border-radius: 2px;
  3493. box-shadow: inset 0 -1px 0 rgba(27, 31, 35, 0.12);
  3494. background-color: #0366d6;
  3495. }
  3496. .pro-truncate {
  3497. overflow: hidden;
  3498. text-overflow: ellipsis;
  3499. display: inline-block;
  3500. width: 85%;
  3501. margin-bottom: -6px;
  3502. }
  3503. @media (max-width: 1020px) {
  3504. .ui.eleven.wide.column {
  3505. width: 100% !important;
  3506. }
  3507. .ui.container .ui.grid .ui.eleven.wide.column .text.right .ui.green.button {
  3508. width: 100%;
  3509. }
  3510. .mobile-card {
  3511. border-radius: 0 !important;
  3512. box-shadow: none;
  3513. padding: 15px;
  3514. font-family: monospace;
  3515. }
  3516. .mobile-card.follow {
  3517. margin-top: 15px;
  3518. width: 100%;
  3519. border-radius: 5px !important;
  3520. }
  3521. .mobile-count {
  3522. display: none !important;
  3523. }
  3524. .mobile-name {
  3525. font-size: 18px;
  3526. font-weight: bold;
  3527. }
  3528. .status {
  3529. color: #949494;
  3530. font-size: 12px;
  3531. margin-top: 8px !important;
  3532. }
  3533. }
  3534. @media (min-width: 1020px) {
  3535. .mobile-card {
  3536. display: none;
  3537. }
  3538. }
  3539. .dashboard {
  3540. padding-top: 15px;
  3541. padding-bottom: 80px;
  3542. }
  3543. .dashboard.feeds .context.user.menu,
  3544. .dashboard.issues .context.user.menu {
  3545. z-index: 101;
  3546. min-width: 200px;
  3547. }
  3548. .dashboard.feeds .context.user.menu .ui.header,
  3549. .dashboard.issues .context.user.menu .ui.header {
  3550. font-size: 1rem;
  3551. text-transform: none;
  3552. text-align: left;
  3553. }
  3554. .dashboard.feeds .filter.menu .item,
  3555. .dashboard.issues .filter.menu .item {
  3556. text-align: left;
  3557. }
  3558. .dashboard.feeds .filter.menu .item .text,
  3559. .dashboard.issues .filter.menu .item .text {
  3560. height: 16px;
  3561. vertical-align: middle;
  3562. }
  3563. .dashboard.feeds .filter.menu .item .text.truncate,
  3564. .dashboard.issues .filter.menu .item .text.truncate {
  3565. width: 85%;
  3566. }
  3567. .dashboard.feeds .filter.menu .item .floating.label,
  3568. .dashboard.issues .filter.menu .item .floating.label {
  3569. top: 7px;
  3570. left: 90%;
  3571. width: 15%;
  3572. }
  3573. .dashboard.feeds .filter.menu .jump.item,
  3574. .dashboard.issues .filter.menu .jump.item {
  3575. margin: 1px;
  3576. padding-right: 0;
  3577. }
  3578. .dashboard.feeds .filter.menu .menu,
  3579. .dashboard.issues .filter.menu .menu {
  3580. max-height: 300px;
  3581. overflow-x: auto;
  3582. right: 0!important;
  3583. left: auto!important;
  3584. }
  3585. .dashboard.feeds .ui.right .head.menu,
  3586. .dashboard.issues .ui.right .head.menu {
  3587. margin-top: -5px;
  3588. }
  3589. .dashboard.feeds .ui.right .head.menu .item.active,
  3590. .dashboard.issues .ui.right .head.menu .item.active {
  3591. color: #d9453d;
  3592. }
  3593. .dashboard.sponsor {
  3594. background: #fcf8e9;
  3595. }
  3596. .dashboard.sponsor center {
  3597. padding: 15px;
  3598. }
  3599. .dashboard.sponsor center div {
  3600. background: #dee4ff;
  3601. color: #0a0a0a;
  3602. display: inline-block;
  3603. padding: 2px 6px;
  3604. font-weight: 500;
  3605. margin-top: 10px;
  3606. }
  3607. .dashboard.sponsor center div:hover {
  3608. background: #e5e9ff;
  3609. }
  3610. .dashboard.sponsor.divider {
  3611. border-top: 2px solid #ececec;
  3612. font-size: 0.84em;
  3613. color: #666666;
  3614. }
  3615. .dashboard.no-activity {
  3616. margin-top: 25px !important;
  3617. }
  3618. .dashboard.prompt {
  3619. background-image: linear-gradient(226deg, rgba(255, 255, 255, 0) 0%, #ffffff), linear-gradient(70deg, #eaf5ff 0%, #f6fff8);
  3620. }
  3621. .bootcamp .alg {
  3622. margin-bottom: 2em !important;
  3623. }
  3624. .bootcamp .head {
  3625. padding-top: 7px !important;
  3626. padding-bottom: 7px !important;
  3627. }
  3628. .bootcamp .box {
  3629. background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #fffefd), linear-gradient(0deg, #fff8e2 0%, #fff6db) !important;
  3630. }
  3631. .bootcamp .box img {
  3632. height: 5em;
  3633. margin-bottom: -10px;
  3634. margin-top: 10px;
  3635. }
  3636. .bootcamp .box p {
  3637. font-size: 12px;
  3638. }
  3639. .bootcamp .box h2 {
  3640. color: #b4b4b4;
  3641. }
  3642. .bootcamp .close {
  3643. padding: 5px !important;
  3644. }
  3645. .card-desc {
  3646. line-height: 1.5;
  3647. margin-bottom: 15px;
  3648. }
  3649. .feeds .news > .ui.grid {
  3650. margin-left: auto;
  3651. margin-right: auto;
  3652. }
  3653. .feeds .news .ui.avatar {
  3654. margin-top: 13px;
  3655. }
  3656. .feeds .news p {
  3657. font-size: 16px;
  3658. }
  3659. .feeds .news .time-since {
  3660. font-size: 11px;
  3661. font-weight: bold;
  3662. }
  3663. .feeds .news .issue.title {
  3664. line-height: 1.1em;
  3665. width: 80%;
  3666. }
  3667. .feeds .news .push.news .content ul {
  3668. font-size: 13px;
  3669. list-style: none;
  3670. padding-left: 0;
  3671. }
  3672. .feeds .news .push.news .content ul img {
  3673. margin-bottom: -2px;
  3674. }
  3675. .feeds .news .push.news .content ul .text.truncate {
  3676. width: 60%;
  3677. margin-bottom: -5px;
  3678. margin-left: 3px;
  3679. }
  3680. .feeds .news .commits-card {
  3681. background-color: #f9f9f9;
  3682. border: 1px solid #d1d5da;
  3683. border-radius: 3px;
  3684. padding: 5px 16px;
  3685. }
  3686. .feeds .news .commits-card .sha {
  3687. font-family: Consolas, monospace;
  3688. background: #fff2ce;
  3689. padding: 1px 5px;
  3690. font-size: 12px;
  3691. border-radius: 3px;
  3692. }
  3693. .feeds .news code {
  3694. padding: 3px;
  3695. font-size: 85%;
  3696. background-color: rgba(0, 0, 0, 0.04);
  3697. border-radius: 3px;
  3698. word-break: break-all;
  3699. }
  3700. .feeds .list .header .ui.label {
  3701. margin-top: -4px;
  3702. padding: 4px 5px;
  3703. font-weight: normal;
  3704. }
  3705. .feeds .list .header .plus.icon {
  3706. margin-top: 5px;
  3707. }
  3708. .feeds .list ul {
  3709. list-style: none;
  3710. margin: 0;
  3711. padding-left: 0;
  3712. }
  3713. .feeds .list ul li:not(:last-child) {
  3714. border-bottom: 1px solid #EAEAEA;
  3715. }
  3716. .feeds .list ul li.private {
  3717. background-color: #fcf8e9;
  3718. }
  3719. .feeds .list ul li a {
  3720. padding: 6px 1.2em;
  3721. display: block;
  3722. }
  3723. .feeds .list ul li a .octicon {
  3724. color: #888;
  3725. }
  3726. .feeds .list ul li a .octicon.rear {
  3727. font-size: 15px;
  3728. }
  3729. .feeds .list ul li a .star-num {
  3730. font-size: 12px;
  3731. }
  3732. .feeds .list .repo-owner-name-list .item-name {
  3733. max-width: 70%;
  3734. margin-bottom: -4px;
  3735. }
  3736. .feeds .list #collaborative-repo-list .owner-and-repo {
  3737. max-width: 80%;
  3738. margin-bottom: -5px;
  3739. }
  3740. .feeds .list #collaborative-repo-list .owner-name {
  3741. max-width: 120px;
  3742. margin-bottom: -5px;
  3743. }
  3744. .feeds .issue {
  3745. overflow-wrap: break-word !important;
  3746. font-size: 13px !important;
  3747. }
  3748. .ui.grid > [class*="fifteen wide"].column {
  3749. text-align: left;
  3750. }
  3751. .home-footer {
  3752. margin-top: 2em !important;
  3753. }
  3754. .home-footer img {
  3755. width: 1.4em !important;
  3756. margin-bottom: 6px;
  3757. }
  3758. .home-footer span {
  3759. font-size: 14px !important;
  3760. }
  3761. .profile-card {
  3762. width: 100% !important;
  3763. font-family: monospace;
  3764. }
  3765. .profile-card.meta {
  3766. line-height: 1.8;
  3767. margin-top: 18px;
  3768. color: #5b5b5b !important;
  3769. }
  3770. .profile-card.font {
  3771. font-size: 15px !important;
  3772. }
  3773. @media (max-width: 1020px) {
  3774. .item.brand,
  3775. .six.wide.column,
  3776. .ui.five.wide.column,
  3777. .home-footer {
  3778. display: none !important;
  3779. }
  3780. .dashboard,
  3781. .ui.grid > [class*="ten wide"].column,
  3782. .ten.wide.column,
  3783. .feeds .news .issue.title {
  3784. width: 100% !important;
  3785. }
  3786. .ui.vertically.padded.grid.head .column {
  3787. padding: 0;
  3788. }
  3789. .ui.grid > [class*="one wide"].column {
  3790. margin-left: -38px;
  3791. margin-top: 3em;
  3792. position: absolute;
  3793. }
  3794. .feeds .news p {
  3795. font-size: 1rem !important;
  3796. line-height: 19px !important;
  3797. }
  3798. .feeds .news .push.news .content ul {
  3799. font-size: 12px;
  3800. }
  3801. .commits-card .sha {
  3802. font-family: monospace !important;
  3803. background: transparent !important;
  3804. padding: 0 !important;
  3805. border-radius: 0 !important;
  3806. font-size: 10px !important;
  3807. }
  3808. .bootcamp {
  3809. display: none;
  3810. }
  3811. }
  3812. .admin {
  3813. padding-top: 15px;
  3814. padding-bottom: 80px;
  3815. }
  3816. .admin .table.segment {
  3817. padding: 0;
  3818. font-size: 13px;
  3819. }
  3820. .admin .table.segment:not(.striped) {
  3821. padding-top: 5px;
  3822. }
  3823. .admin .table.segment:not(.striped) thead th:last-child {
  3824. padding-right: 5px !important;
  3825. }
  3826. .admin .table.segment th {
  3827. padding-top: 5px;
  3828. padding-bottom: 5px;
  3829. }
  3830. .admin .table.segment:not(.select) th:first-of-type,
  3831. .admin .table.segment:not(.select) td:first-of-type {
  3832. padding-left: 15px !important;
  3833. }
  3834. .admin.user .email {
  3835. max-width: 200px;
  3836. }
  3837. .admin dl.admin-dl-horizontal {
  3838. padding: 20px;
  3839. margin: 0;
  3840. }
  3841. .admin dl.admin-dl-horizontal dd {
  3842. margin-left: 240px;
  3843. }
  3844. .admin dl.admin-dl-horizontal dt {
  3845. font-weight: bolder;
  3846. float: left;
  3847. width: 250px;
  3848. clear: left;
  3849. overflow: hidden;
  3850. text-overflow: ellipsis;
  3851. white-space: nowrap;
  3852. }
  3853. .admin.config #test-mail-btn {
  3854. margin-left: 5px;
  3855. }
  3856. .admin.config table tbody tr td:first-child {
  3857. font-weight: bold;
  3858. }
  3859. .admin.config pre {
  3860. background-color: #f7f7f7;
  3861. padding: 5px;
  3862. }
  3863. .admin.config code {
  3864. color: #db2828;
  3865. line-height: 1;
  3866. }
  3867. .admin.config .log-config table tbody tr td:first-child {
  3868. width: 100px;
  3869. }
  3870. .admin.indication {
  3871. font-size: 10px;
  3872. text-align: center !important;
  3873. }
  3874. .sitestatus {
  3875. padding: 1em;
  3876. }
  3877. .sitestatus div {
  3878. padding: 1em;
  3879. }
  3880. .adminbar.main {
  3881. background-color: #2f363c;
  3882. border-bottom: 1px solid #454e57;
  3883. height: 41px;
  3884. }
  3885. .adminbar.text {
  3886. padding: 5px 0 !important;
  3887. color: #fff !important;
  3888. font-size: 13px !important;
  3889. }
  3890. .adminbar.embed {
  3891. background: #24292e;
  3892. padding: 3px 5px;
  3893. border-radius: 4px;
  3894. margin: 5px 3px;
  3895. font-size: 11px;
  3896. }
  3897. .adminbar.branch {
  3898. margin-left: -5px;
  3899. }
  3900. .adminbar.logo {
  3901. width: 13px !important;
  3902. margin-top: -1px !important;
  3903. margin-left: 5px;
  3904. margin-right: 1px;
  3905. }
  3906. .adminbar.align {
  3907. margin-right: 5px;
  3908. }
  3909. .adminbar.divider {
  3910. border-left: 1px solid #ababab;
  3911. margin-right: 10px;
  3912. }
  3913. .admin-badge {
  3914. font-size: 10px !important;
  3915. }
  3916. @media (max-width: 1020px) {
  3917. .render-time {
  3918. display: none !important;
  3919. }
  3920. }
  3921. .explore {
  3922. padding-top: 15px;
  3923. padding-bottom: 80px;
  3924. }
  3925. .explore .navbar .octicon {
  3926. width: 16px;
  3927. text-align: center;
  3928. }
  3929. .explore .not-found {
  3930. background: #f3f3f3;
  3931. padding: 32px;
  3932. background-color: #fafbfc;
  3933. border: 1px solid #e1e4e8;
  3934. border-radius: 3px;
  3935. box-shadow: inset 0 0 10px rgba(27, 31, 35, 0.05);
  3936. }
  3937. .explore .username {
  3938. background-color: #ffdb99;
  3939. color: #5a5a5a;
  3940. display: inline-block;
  3941. padding-left: 6px;
  3942. padding-right: 6px;
  3943. border-radius: 2em;
  3944. font-size: 12px;
  3945. }
  3946. .ui.repository.list .item {
  3947. padding-bottom: 25px;
  3948. }
  3949. .ui.repository.list .item:not(:first-child) {
  3950. border-top: 1px solid #eee;
  3951. padding-top: 25px;
  3952. }
  3953. .ui.repository.list .item .ui.header {
  3954. font-size: 1.5rem;
  3955. padding-bottom: 10px;
  3956. font-weight: 500;
  3957. }
  3958. .ui.repository.list .item .ui.header .name {
  3959. word-break: break-all;
  3960. }
  3961. .ui.repository.list .item .ui.header .metas {
  3962. color: #888;
  3963. font-size: 14px;
  3964. font-weight: normal;
  3965. }
  3966. .ui.repository.list .item .ui.header .metas span:not(:last-child) {
  3967. margin-right: 5px;
  3968. }
  3969. .ui.repository.list .item .time {
  3970. font-size: 12px;
  3971. color: #808080;
  3972. }
  3973. .ui.user.list .item {
  3974. padding-bottom: 25px;
  3975. }
  3976. .ui.user.list .item:not(:first-child) {
  3977. border-top: 1px solid #eee;
  3978. padding-top: 25px;
  3979. }
  3980. .ui.user.list .item .ui.avatar.image.explore-page {
  3981. width: 40px;
  3982. height: 40px;
  3983. border-radius: 50px;
  3984. border: 2px solid #bbb;
  3985. }
  3986. .ui.user.list .item .description {
  3987. font-size: 12px;
  3988. margin-top: 7px;
  3989. }
  3990. .ui.user.list .item .description .octicon:not(:first-child) {
  3991. margin-left: 5px;
  3992. }
  3993. .ui.user.list .item .description a {
  3994. color: #333;
  3995. }
  3996. .ui.user.list .item .description a:hover {
  3997. text-decoration: underline;
  3998. }
  3999. .explore-card.top {
  4000. margin-top: 0.4em;
  4001. }
  4002. .explore-card.title {
  4003. font-size: 20px;
  4004. color: #383838;
  4005. margin-bottom: 8px;
  4006. }
  4007. .explore-card.meta {
  4008. font-size: 14px !important;
  4009. }
  4010. .explore-card.description {
  4011. font-size: 13px;
  4012. }
  4013. .explore-card.icon {
  4014. font-size: .9em !important;
  4015. }
  4016. .explore-card.extra {
  4017. font-size: 13px !important;
  4018. }
  4019. .explore-card.topics-img {
  4020. width: 100%;
  4021. }
  4022. .explore-card.footer {
  4023. font-size: 1.1em;
  4024. margin-top: 7em;
  4025. margin-bottom: 5em;
  4026. }
  4027. .explore-card.font {
  4028. font-size: 1.2em !important;
  4029. font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace !important;
  4030. }
  4031. .explore-card.seperator {
  4032. margin-right: 10px;
  4033. }
  4034. .ex-search {
  4035. font-weight: 400;
  4036. }
  4037. .no-padding-left {
  4038. padding-left: 0 !important;
  4039. }
  4040. @media (max-width: 1020px) {
  4041. .ui.grid > [class*="four wide"].column {
  4042. width: 100% !important;
  4043. }
  4044. .ui.vertical.menu {
  4045. margin: 0 auto !important;
  4046. width: 90%;
  4047. }
  4048. .ui.user.list .item .content {
  4049. width: 85%;
  4050. }
  4051. .ui.user.list .item .content .br {
  4052. display: block;
  4053. }
  4054. .ui.user.list .item .content .octicon.octicon-location {
  4055. padding-left: 5px;
  4056. }
  4057. .time {
  4058. padding-left: 10px;
  4059. }
  4060. .has-emoji {
  4061. margin-left: 10px;
  4062. }
  4063. .explore-card.top {
  4064. margin-left: 50%;
  4065. margin-right: 50%;
  4066. }
  4067. .explore-card.mobile {
  4068. display: none !important;
  4069. }
  4070. .explore-card.card {
  4071. margin-top: .1em !important;
  4072. }
  4073. .ex-search {
  4074. font-size: 1.3em;
  4075. padding-top: 1.5em;
  4076. padding-bottom: .5em;
  4077. }
  4078. .ex-head {
  4079. font-size: 20px;
  4080. }
  4081. }
  4082. .pages.bg {
  4083. color: #ffffff;
  4084. background-color: #252a30;
  4085. }
  4086. .pages .body {
  4087. padding: 70px 0 90px;
  4088. margin: 0 auto;
  4089. max-width: -webkit-calc(75%);
  4090. max-width: calc(75%);
  4091. text-align: left;
  4092. width: 900px;
  4093. }
  4094. .pages.head {
  4095. font-size: 36px;
  4096. height: 150px;
  4097. align-items: center;
  4098. background-color: #2f363d;
  4099. color: #ffffff;
  4100. display: flex;
  4101. flex-direction: column;
  4102. font-weight: 600;
  4103. justify-content: center;
  4104. padding-bottom: 50px;
  4105. position: relative;
  4106. }
  4107. .pages.head .text {
  4108. display: flex;
  4109. justify-content: center;
  4110. white-space: nowrap;
  4111. width: 100%;
  4112. margin-top: 50px !important;
  4113. }
  4114. .pages.head div {
  4115. font-size: 16px;
  4116. }
  4117. .pages .list {
  4118. font-size: 1.1em;
  4119. color: #9cb3c9;
  4120. margin-top: 14px;
  4121. line-height: 1.4;
  4122. margin-bottom: 28px;
  4123. }
  4124. .pages .code {
  4125. background: #e7445a;
  4126. padding: 4px;
  4127. color: #ffffff;
  4128. border-radius: 3px;
  4129. }
  4130. .pages .heading {
  4131. color: #ffffff;
  4132. font-size: 20px !important;
  4133. }
  4134. .pages .about.heading {
  4135. color: #ffffff;
  4136. font-size: 30px !important;
  4137. }
  4138. .pages .about.text {
  4139. color: #ffffff;
  4140. font-size: 17px !important;
  4141. }
  4142. .pages .about.text.top {
  4143. margin-top: 40px;
  4144. }
  4145. .pages .soon {
  4146. margin: 2em;
  4147. height: 10em;
  4148. }
  4149. .pages-heading {
  4150. font-size: 22px !important;
  4151. font-weight: 400 !important;
  4152. margin-top: 80px !important;
  4153. }
  4154. .pages-small {
  4155. font-size: 17px;
  4156. color: #9cb3c9;
  4157. margin-top: 14px;
  4158. line-height: 1.4;
  4159. }
  4160. .pages-small a {
  4161. border-bottom: 3px solid #e6375a;
  4162. color: #ffffff;
  4163. font-weight: 600;
  4164. position: relative;
  4165. transition: background-color 120ms;
  4166. }
  4167. .pages-small a:hover {
  4168. background-color: #e6375a;
  4169. }
  4170. .octopus {
  4171. height: 20em;
  4172. margin-top: 3em;
  4173. margin-bottom: 3em;
  4174. }
  4175. .contact {
  4176. padding-left: 5%;
  4177. padding-right: 5%;
  4178. }
  4179. .contact label {
  4180. color: #ffffff !important;
  4181. }
  4182. .contact .color {
  4183. color: #ffffff !important;
  4184. background: #343b42 !important;
  4185. }
  4186. .contact .desc {
  4187. margin-top: 0 !important;
  4188. color: #e4e4e4;
  4189. }
  4190. @media (max-width: 1020px) {
  4191. .pages .body {
  4192. max-width: -webkit-calc(80%);
  4193. max-width: calc(80%);
  4194. }
  4195. .contact .desc {
  4196. display: none;
  4197. }
  4198. .pages-small.head,
  4199. .pages-small .box-head {
  4200. font-size: 25px !important;
  4201. }
  4202. }
  4203. .error.align {
  4204. margin-top: 100px;
  4205. margin-bottom: 50px;
  4206. }
  4207. .error img {
  4208. height: 150px;
  4209. }
  4210. .error.footer {
  4211. margin-top: 40px;
  4212. }
  4213. .error.footer a {
  4214. color: #777777;
  4215. }
  4216. .error.footer span {
  4217. margin-left: 5px;
  4218. margin-right: 5px;
  4219. color: #777777;
  4220. }
  4221. .error.image {
  4222. height: 35px;
  4223. margin-top: 35px;
  4224. }
  4225. @media (max-width: 1020px) {
  4226. .error.footer {
  4227. font-size: 11px;
  4228. }
  4229. }