From 5413787e403711a78843976a37a77b1c9ad51cc1 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 7 Sep 2016 20:39:33 -0700 Subject: fixes #20655: Update font stack list in the Reboot docs to match current CSS usage (#20666) --- docs/content/reboot.md | 8 -------- 1 file changed, 8 deletions(-) (limited to 'docs/content') diff --git a/docs/content/reboot.md b/docs/content/reboot.md index ad8a8a6f6..a6815e9db 100644 --- a/docs/content/reboot.md +++ b/docs/content/reboot.md @@ -46,14 +46,6 @@ $font-family-sans-serif: "Segoe UI", // Android "Roboto", - // Linux - "Oxygen", // KDE - "Ubuntu", - "Cantarell", // GNOME - // Firefox OS [R.I.P.] - "Fira Sans", - // Older Android - "Droid Sans", // Basic web fallback "Helvetica Neue", Arial, sans-serif !default; {% endhighlight %} -- cgit v1.2.3 From 18258cbd9936c020b5e30fea758fc1373f661039 Mon Sep 17 00:00:00 2001 From: Igor Tarasov Date: Thu, 8 Sep 2016 07:44:28 +0400 Subject: Fix docs for heading sizes (#20646) * Fix docs for heading sizes (sizes here were from v3) * Added rem sizes to header size docs * Fixed erroneous px sizes --- docs/content/typography.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'docs/content') diff --git a/docs/content/typography.md b/docs/content/typography.md index 139a7e00e..a59f50347 100644 --- a/docs/content/typography.md +++ b/docs/content/typography.md @@ -31,27 +31,27 @@ All HTML headings, `

` through `

`, are available.

h1. Bootstrap heading

- Semibold 36px + Semibold 2.5rem (40px)

h2. Bootstrap heading

- Semibold 30px + Semibold 2rem (32px)

h3. Bootstrap heading

- Semibold 24px + Semibold 1.75rem (28px)

h4. Bootstrap heading

- Semibold 18px + Semibold 1.5rem (24px)
h5. Bootstrap heading
- Semibold 14px + Semibold 1.25rem (20px)
h6. Bootstrap heading
- Semibold 12px + Semibold 1rem (16px) -- cgit v1.2.3