diff --git a/_src/page-template.html b/_src/page-template.html index e785123..2267ff7 100644 --- a/_src/page-template.html +++ b/_src/page-template.html @@ -32,7 +32,7 @@ - Alexis King + Alexis King diff --git a/scss/_code.scss b/scss/_code.scss index 3af78d7..e66a485 100644 --- a/scss/_code.scss +++ b/scss/_code.scss @@ -19,7 +19,11 @@ pre code, table.sourcetable pre { pre code { display: block; +} + +pre code, div[class^='brush: '] { width: 100%; + overflow: auto; } table.sourcetable { diff --git a/scss/application.scss b/scss/application.scss index fd4c062..1e9ab4e 100644 --- a/scss/application.scss +++ b/scss/application.scss @@ -28,6 +28,7 @@ html, body { #page-content > section[role=main] { flex: 1; + padding: 0 30px; & > .content { margin: 0 auto; @@ -49,6 +50,13 @@ html, body { } } +// hide the blog title in the navbar on small screen sizes +@media (max-width: 550px) { + #blog-title-header { + display: none; + } +} + #page-content > footer { background-color: $color-primary; color: $text-color-light;