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:
parent
b414d4c870
commit
63862db888
1 changed files with 2 additions and 1 deletions
|
|
@ -4,12 +4,13 @@ body {
|
|||
font-family: 'Quicksand', sans-serif;
|
||||
}
|
||||
|
||||
p {
|
||||
article section {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
|
||||
pre code {
|
||||
font-family: 'Source Code Pro', monospace;
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
a {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue