Font tweaks

Apply Roboto to <article><section> and not just <p>. Non-<p> tags inside
of articles weren't getting it, like <ul>.

Shrink code font size from 90% to 80%. This at least keeps code that
stays within 80 char lines looking nice.
This commit is contained in:
Nick Pegg 2018-01-20 17:33:37 -08:00
parent b414d4c870
commit 63862db888

View file

@ -4,12 +4,13 @@ body {
font-family: 'Quicksand', sans-serif; font-family: 'Quicksand', sans-serif;
} }
p { article section {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
} }
pre code { pre code {
font-family: 'Source Code Pro', monospace; font-family: 'Source Code Pro', monospace;
font-size: 80%;
} }
a { a {