Remove the font size adjustments

Increasing the font size is *not* useful due to a couple of reasons:

  - It breaks the visual seperation between the headlines. It is very
    hard to determine the headline levels when the font size is that big.

  - It breaks the definition lists which are useful for manpages.

  - It extends the line width to an unnatural value. It is not narrow
    any more, but it is also not big. It just looks a bit odd.

  - The regular font (on linux) renders as almost a light bold type. It
    generates a "Comic Sans" experience. That does not look
    professional.

Since I am not a designer and I don't know how to fix these problems in
the right way, I think the best solution is switching back to the very
sane defaults.
This commit is contained in:
Stefan Tatschner
2015-05-29 12:59:37 +02:00
parent f59300023e
commit 635b3f6db5
-15
View File
@@ -1,18 +1,3 @@
.rst-content p, .rst-content p.admonition-title, .rst-content li, .rst-content table.docutils td,
.rst-content table.docutils th {
font-size: 14pt;
line-height: 1.4;
}
.rst-content code, .rst-content div[class^='highlight'] pre {
font-size: 12pt;
line-height: 1.4;
}
.rst-content li {
margin-bottom: 0.5em;
}
.wy-nav-content {
max-width: 1050px
}
.strike {
text-decoration: line-through;
}