mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-15 09:15:37 +00:00
Fix blockquotes in documentation; stylize only in docinfo or immediately after an h1
This commit is contained in:
@@ -130,7 +130,7 @@ html {
|
||||
-ms-text-size-adjust: 100%; }
|
||||
|
||||
/* Where we want fancier font if available */
|
||||
h1, h2, h3, h4, h5, h6, p.module-desc, blockquote p {
|
||||
h1, h2, h3, h4, h5, h6, p.module-desc, table.docinfo + blockquote p, table.docinfo blockquote p, h1 + blockquote p {
|
||||
font-family: "Raleway", "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, sans-serif !important; }
|
||||
|
||||
h1.title {
|
||||
@@ -523,9 +523,13 @@ abbr.initialism {
|
||||
blockquote {
|
||||
padding: 0 0 0 15px;
|
||||
margin: 0 0 20px;
|
||||
border-left: 5px solid #c9c9c9; }
|
||||
border-left: 5px solid #EFEBE0; }
|
||||
|
||||
blockquote p {
|
||||
table.docinfo + blockquote, table.docinfo blockquote, h1 + blockquote {
|
||||
border-left: 5px solid #c9c9c9;
|
||||
}
|
||||
|
||||
table.docinfo + blockquote p, table.docinfo blockquote p, h1 + blockquote p {
|
||||
margin-bottom: 0;
|
||||
font-size: 15px;
|
||||
font-weight: 200;
|
||||
|
||||
@@ -2,11 +2,15 @@
|
||||
Nim's Garbage Collector
|
||||
==========================
|
||||
|
||||
:Author: Andreas Rumpf
|
||||
:Version: |nimversion|
|
||||
:Author: Andreas Rumpf
|
||||
:Version: |nimversion|
|
||||
|
||||
.. contents::
|
||||
|
||||
|
||||
"The road to hell is paved with good intentions."
|
||||
|
||||
|
||||
Introduction
|
||||
============
|
||||
|
||||
|
||||
Reference in New Issue
Block a user