Skip to content

Instantly share code, notes, and snippets.

@yoksel
Last active August 29, 2015 14:08
Show Gist options
  • Save yoksel/f2305d88515d15ca9e4e to your computer and use it in GitHub Desktop.
Save yoksel/f2305d88515d15ca9e4e to your computer and use it in GitHub Desktop.
Make GitHub responsive and more readable on small screens
@media (max-width: 800px){
body,
.header {
min-width: 0;
}
.site-search {
width: calc(100% - 38px);
margin-bottom: 1em;
}
.site-search form {
width: 100%;
}
.repository-with-sidebar.with-full-navigation .repository-content {
width: auto;
}
.container,
.repository-with-sidebar .repository-content {
/* width: calc(100% - 70px); */
float: none;
width: auto;
margin: 15px;
}
.header-logged-in,
.repohead,
.pagehead-actions,
.repository-sidebar,
.file-history-tease,
.file-wrap {
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment