gitote.css 92 KB

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