Skip to content
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #59 from mdboom/doc/use-system-monospace-font
Browse files Browse the repository at this point in the history
Use the system monospace font in the docs
  • Loading branch information
embray committed Jul 28, 2014
2 parents d2e8bec + 125969d commit 9a0d45a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
- Fixed crash that could result from users with missing/misconfigured
locale settings. [#58]

- The font used for code examples in the docs is now the
system-defined ``monospace`` font, rather than ``Minaco``, which is
not available on all platforms. [#50]


0.4 (2014-07-15)
----------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,14 +128,13 @@ address {
}
code, pre {
padding: 0 3px 2px;
font-family: Monaco, Andale Mono, Courier New, monospace;
font-size: 12px;
font-family: monospace;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
tt {
font-family: Monaco, Andale Mono, Courier New, monospace;
font-family: monospace;
}
code {
color: rgba(0, 0, 0, 0.75);
Expand All @@ -146,7 +145,6 @@ pre {
padding: 8.5px;
margin: 0 0 18px;
line-height: 18px;
font-size: 12px;
border: 1px solid #ddd;
border: 1px solid rgba(0, 0, 0, 0.12);
-webkit-border-radius: 3px;
Expand All @@ -168,7 +166,6 @@ tt {
border: 1px solid #ddd;
border: 1px solid rgba(0, 0, 0, 0.12);
border-radius: 3px;
font-size: 0.95em;
}

/* all code has same box background color, even in headers */
Expand Down

0 comments on commit 9a0d45a

Please sign in to comment.