Skip to content

Commit

Permalink
Fix some CSS issues on mobile (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
theacodes committed May 16, 2019
1 parent 1d83d64 commit a493eed
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion docs/_static/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,20 @@ div.footer a {
}

@media screen and (max-width: 875px) {
body {
margin: 0;
}
div.body {
min-width: 0;
}
div.highlight {
padding: 0px 5px;
}
div.sphinxsidebar {
background: #003039;
text-align: center;
}
div.sphinxsidebar h1.logo, div.sphinxsidebar p.blurb{
text-align: left;
}
div.sphinxsidebar h1 a {
color: #1bc5e0;
Expand All @@ -144,4 +153,11 @@ div.footer a {
div.sphinxsidebar ul {
color: #ceb1ff;
}
div.sphinxsidebar ul ul {
display: none;
}
div > dl {
border: none;
padding-left: none;
}
}

0 comments on commit a493eed

Please sign in to comment.