Skip to content

Commit

Permalink
DOCFIX: Larger code view (#17)
Browse files Browse the repository at this point in the history
DOCFIX: Larger code view
  • Loading branch information
mr-ubik committed Jul 25, 2019
2 parents 0e281e4 + 28c6f50 commit f10856e
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions docs/source/_static/css/custom.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
:root {
--ashpy-blue: #28285b;
--ashpy-red: #d3145b;
}

.wy-side-nav-search {
background-color: #28285b;
background-color: var(--ashpy-blue);
}

.wy-side-nav-search > a {
color: var(--ashpy-red);
}

@media (orientation: portrait) {
.wy-nav-content {
max-width: 70vw;
}
}

.wy-side-nav-search>a {
color: #d3145b;
@media (orientation: landscape) {
.wy-nav-content {
max-width: 45vw;
}
}

0 comments on commit f10856e

Please sign in to comment.