From ed7bf9da3b72f1337d419e3df53a09c2b4e988ef Mon Sep 17 00:00:00 2001 From: wakgill <76528604+wakgill@users.noreply.github.com> Date: Fri, 1 Jan 2021 12:36:25 -0600 Subject: [PATCH] Delete typography.md --- docs/ui-components/typography.md | 114 ------------------------------- 1 file changed, 114 deletions(-) delete mode 100644 docs/ui-components/typography.md diff --git a/docs/ui-components/typography.md b/docs/ui-components/typography.md deleted file mode 100644 index b879c95..0000000 --- a/docs/ui-components/typography.md +++ /dev/null @@ -1,114 +0,0 @@ ---- -layout: default -title: Typography -parent: UI Components -nav_order: 1 ---- - -# Typography -{: .no_toc } - -## Table of contents -{: .no_toc .text-delta } - -1. TOC -{:toc} - ---- - -## Font stack - -By default, Just the Docs uses a native system font stack for sans-serif fonts: - -```scss -system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif -``` - -ABCDEFGHIJKLMNOPQRSTUVWXYZ -abcdefghijklmnopqrstuvwxyz -{: .fs-5 .ls-10 .code-example } - -For monospace type, like code snippets or the `
` element, Just the Docs uses a native system font stack for monospace fonts:
-
-```scss
-"SFMono-Regular", Menlo, Consolas, Monospace
-```
-
-ABCDEFGHIJKLMNOPQRSTUVWXYZ
-abcdefghijklmnopqrstuvwxyz
-{: .fs-5 .ls-10 .text-mono .code-example }
-
----
-
-## Responsive type scale
-
-Just the Docs uses a responsive type scale that shifts depending on the viewport size.
-
-| Selector              | Small screen size `font-size`    | Large screen size `font-size` |
-|:----------------------|:---------------------------------|:------------------------------|
-| `h1`, `.text-alpha`   | 32px                             | 36px                          |
-| `h2`, `.text-beta`    | 18px                             | 24px                          |
-| `h3`, `.text-gamma`   | 16px                             | 18px                          |
-| `h4`, `.text-delta`   | 14px                             | 16px                          |
-| `h5`, `.text-epsilon` | 16px                             | 18px                          |
-| `h6`, `.text-zeta`    | 18px                             | 24px                          |
-| `body`                | 14px                             | 16px                          |
-
----
-
-## Headings
-
-Headings are rendered like this:
-
-
-

Heading 1

-

Heading 2

-

Heading 3

-

Heading 4

-
Heading 5
-
Heading 6
-
-```markdown -# Heading 1 -## Heading 2 -### Heading 3 -#### Heading 4 -##### Heading 5 -###### Heading 6 -``` - ---- - -## Body text - -Default body text is rendered like this: - -
-Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. -
-```markdown -Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. -``` - ---- - -## Inline elements - -
-Text can be **bold**, _italic_, or ~~strikethrough~~. - -[Link to another page](another-page). -
-```markdown -Text can be **bold**, _italic_, or ~~strikethrough~~. - -[Link to another page](another-page). -``` - ---- - -## Typographic Utilities - -There are a number of specific typographic CSS classes that allow you to override default styling for font size, font weight, line height, and capitalization. - -[View typography utilities]({{ site.baseurl }}{% link docs/utilities/utilities.md %}#typography){: .btn .btn-outline }