-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(typography): Typography (#144638)
- Loading branch information
lkramarov
committed
May 23, 2018
1 parent
293766c
commit a55ced4
Showing
6 changed files
with
120 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
@import '../../lib/core/core'; | ||
|
||
|
||
.demo-typography span { | ||
display: block; | ||
} | ||
@import '../../lib/core/core'; | ||
|
||
@include mc-core(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,33 @@ | ||
<div class="demo-typography"> | ||
<span class="mc-h1">Lorem ipsum dolor sit amet</span> | ||
<p class="caption">Labore reprehenderit corporis ullam distinctio ex.</p> | ||
<span class="mc-display-4">Display 4</span> | ||
<span class="mc-display-3">Display 3</span> | ||
<span class="mc-display-2">Display 2</span> | ||
<span class="mc-display-1">Display 1</span> | ||
|
||
<span class="mc-headline">Headline</span> | ||
<span class="mc-title">Title</span> | ||
<span class="mc-subheading">Subheading</span> | ||
|
||
<span class="mc-body-2">Body 2</span> | ||
<span class="mc-body-1">Body 1</span> | ||
<div> | ||
<div class="">Lorem ipsum dolor sit amet</div> | ||
<p class="">Labore reprehenderit corporis ullam distinctio ex.</p> | ||
<div class="mc-display-3">Display 3</div> | ||
<div class="mc-display-2">Display 2</div> | ||
<div class="mc-display-1">Display 1</div> | ||
|
||
<br> | ||
|
||
<div class="mc-headline">Headline</div> | ||
<div class="mc-title">Title</div> | ||
<div class="mc-subheading">Subheading</div> | ||
|
||
<br> | ||
|
||
<div class="mc-body">Body</div> | ||
|
||
<br> | ||
|
||
<div class="mc-subheading">Subheading</div> | ||
<div class="mc-body_caps">BODY CAPS</div> | ||
<div class="mc-body_mono">Body mono</div> | ||
|
||
<br> | ||
|
||
<div class="mc-caption">Caption</div> | ||
<div class="mc-caption_caps">CAPTION CAPS</div> | ||
<div class="mc-caption_mono">Caption mono</div> | ||
|
||
<br> | ||
|
||
<div class="mc-small-text">Small text</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters