diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-11-29 13:10:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-29 13:10:31 +0100 |
| commit | 36a4abf6e0788ee444671126a19ffd76d73e13a2 (patch) | |
| tree | db1c5024992df8cdb970e4937b9ea3a059451359 | |
| parent | 5d395add7fbdb390087b76eeeda474d17dd332b4 (diff) | |
| parent | 28cc944530420bb3b1fc2dc96e2a8f433a41c6e4 (diff) | |
| download | rust-36a4abf6e0788ee444671126a19ffd76d73e13a2.tar.gz rust-36a4abf6e0788ee444671126a19ffd76d73e13a2.zip | |
Rollup merge of #56080 - mark-i-m:patch-2, r=steveklabnik
Reduce the amount of bold text at doc.rlo Currently, all of the text is either huge or small. IMHO this is hard to read, so I propose that we make the second-level headings smaller, without making them any less prominent. # Before:  # After: 
| -rw-r--r-- | src/doc/index.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/doc/index.md b/src/doc/index.md index 33ee76739c5..b79a349a453 100644 --- a/src/doc/index.md +++ b/src/doc/index.md @@ -21,6 +21,9 @@ nav { #search-but:hover, #search-input:focus { border-color: #55a9ff; } +h2 { + font-size: 18px; +} </style> Welcome to an overview of the documentation provided by the Rust project. |
