Update class utility docs
This commit is contained in:
parent
ab244a0e13
commit
7d033d57ef
4 changed files with 186 additions and 5 deletions
|
@ -10,10 +10,169 @@ sidebar:
|
||||||
{% include base_path %}
|
{% include base_path %}
|
||||||
{% include toc icon="gears" title="Utility Classes" %}
|
{% include toc icon="gears" title="Utility Classes" %}
|
||||||
|
|
||||||
|
Using the Kramdown Markdown rendered with Jekyll allows you to add [block](http://kramdown.gettalong.org/quickref.html#block-attributes) and [inline attributes](http://kramdown.gettalong.org/quickref.html#inline-attributes). This is nice if you want to add styling to text and image, and still write in Markdown. As of v3 Kramdown is also the default for `jekyll new` sites and those hosted on GitHub Pages.
|
||||||
|
|
||||||
|
**Not Using Kramdown?** That's OK. The following classes can still available when used with standard HTML.
|
||||||
|
{: .notice--warning}
|
||||||
|
|
||||||
## Text Alignment
|
## Text Alignment
|
||||||
|
|
||||||
|
Align text blocks with the following classes.
|
||||||
|
|
||||||
|
Left aligned text `.text-left`
|
||||||
|
{: .text-left}
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
Left aligned text
|
||||||
|
{: .text-left}
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Center aligned text. `.text-center`
|
||||||
|
{: .text-center}
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
Center aligned text.
|
||||||
|
{: .text-center}
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Right aligned text. `.text-right`
|
||||||
|
{: .text-right}
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
Right aligned text.
|
||||||
|
{: .text-right}
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Justified text.** `.text-justify` Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vel eleifend odio, eu elementum purus. In hac habitasse platea dictumst. Fusce sed sapien eleifend, sollicitudin neque non, faucibus est. Proin tempus nisi eu arcu facilisis, eget venenatis eros consequat.
|
||||||
|
{: .text-justify}
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
Justified text.
|
||||||
|
{: .text-justify}
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
No wrap text. `.text-nowrap`
|
||||||
|
{: .text-nowrap}
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
No wrap text.
|
||||||
|
{: .text-nowrap}
|
||||||
|
```
|
||||||
|
|
||||||
## Image Alignment
|
## Image Alignment
|
||||||
|
|
||||||
|
Position images with the following classes.
|
||||||
|
|
||||||
|
![image-center]({{ site.url }}{{ site.baseurl }}/images/image-alignment-580x300.jpg){: .align-center}
|
||||||
|
|
||||||
|
The image above happens to be **centered**.
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
![image-center](/images/filename.jpg){: .align-center}
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
![image-left]({{ site.url }}{{ site.baseurl }}/images/image-alignment-150x150.jpg){: .align-left} The rest of this paragraph is filler for the sake of seeing the text wrap around the 150×150 image, which is **left aligned**. There should be plenty of room above, below, and to the right of the image. Just look at him there --- Hey guy! Way to rock that left side. I don't care what the right aligned image says, you look great. Don't let anyone else tell you differently.
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
![image-left](/images/filename.jpg){: .align-left}
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
![image-right]({{ site.url }}{{ site.baseurl }}/images/image-alignment-300x200.jpg){: .align-right}
|
||||||
|
|
||||||
|
And now we're going to shift things to the **right align**. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there --- Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
![image-right](/images/filename.jpg){: .align-right}
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
![full]({{ site.url }}{{ site.baseurl }}/images/image-alignment-1200x4002.jpg)
|
||||||
|
{: .full}
|
||||||
|
|
||||||
|
The image above should extend outside of the parent container on right.
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
![full](/images/filename.jpg)
|
||||||
|
{: .full}
|
||||||
|
```
|
||||||
|
|
||||||
## Buttons
|
## Buttons
|
||||||
|
|
||||||
## Notices
|
Make any link standout more when applying the `.btn` class.
|
||||||
|
|
||||||
|
```html
|
||||||
|
<a href="#" class="btn">Link Text</a>
|
||||||
|
```
|
||||||
|
|
||||||
|
| Button Type | Example | Class | Kramdown |
|
||||||
|
| ------ | ------- | ----- | ------- |
|
||||||
|
| Default | [Text](#link){: .btn} | `.btn` | `[Text](#link){: .btn}` |
|
||||||
|
| Success | [Text](#link){: .btn .btn--success} | `.btn .btn--success` | `[Text](#link){: .btn .btn--success}` |
|
||||||
|
| Warning | [Text](#link){: .btn .btn--warning} | `.btn .btn--warning` | `[Text](#link){: .btn .btn--warning}` |
|
||||||
|
| Danger | [Text](#link){: .btn .btn--danger} | `.btn .btn--danger` | `[Text](#link){: .btn .btn--danger}` |
|
||||||
|
| Info | [Text](#link){: .btn .btn--info} | `.btn .btn--info` | `[Text](#link){: .btn .btn--info}` |
|
||||||
|
| Inverse | [Text](#link){: .btn .btn--inverse} | `.btn .btn--inverse` | `[Text](#link){: .btn .btn--inverse}` |
|
||||||
|
| Light Outline | [Text](#link){: .btn .btn--light-outline} | `.btn .btn--light-outline` | `[Text](#link){: .btn .btn--light-outline}` |
|
||||||
|
|
||||||
|
| Button Size | Example | Class | Kramdown |
|
||||||
|
| ----------- | ------- | ----- | -------- |
|
||||||
|
| X-Large | [X-Large Button](#){: .btn .btn--x-large} | `.btn .btn--x-large` | `[Text](#link){: .btn .btn--x-large}` |
|
||||||
|
| Large | [Large Button](#){: .btn .btn--large} | `.btn .btn--large` | `[Text](#link){: .btn .btn--large}` |
|
||||||
|
| Default | [Default Button](#){: .btn} | `.btn` | `[Text](#link){: .btn}` |
|
||||||
|
| Small | [Small Button](#){: .btn .btn--small} | `.btn .btn--small` | `[Text](#link){: .btn .btn--small}` |
|
||||||
|
|
||||||
|
## Notices
|
||||||
|
|
||||||
|
Call attention to a block of text.
|
||||||
|
|
||||||
|
| Notice Type | Class |
|
||||||
|
| ----------- | ----- |
|
||||||
|
| Default | `.notice` |
|
||||||
|
| Primary | `.notice--primary` |
|
||||||
|
| Info | `.notice--info` |
|
||||||
|
| Warning | `.notice--warning` |
|
||||||
|
| Success | `.notice--success` |
|
||||||
|
| Danger | `.notice--danger` |
|
||||||
|
|
||||||
|
**Watch out!** This paragraph of text has been emphasized with the `{: .notice}` class.
|
||||||
|
{: .notice}
|
||||||
|
|
||||||
|
**Watch out!** This paragraph of text has been emphasized with the `{: .notice--primary}` class.
|
||||||
|
{: .notice--primary}
|
||||||
|
|
||||||
|
**Watch out!** This paragraph of text has been emphasized with the `{: .notice--info}` class.
|
||||||
|
{: .notice--info}
|
||||||
|
|
||||||
|
**Watch out!** This paragraph of text has been emphasized with the `{: .notice--warning}` class.
|
||||||
|
{: .notice--warning}
|
||||||
|
|
||||||
|
**Watch out!** This paragraph of text has been emphasized with the `{: .notice--success}` class.
|
||||||
|
{: .notice--success}
|
||||||
|
|
||||||
|
**Watch out!** This paragraph of text has been emphasized with the `{: .notice--danger}` class.
|
||||||
|
{: .notice--danger}
|
||||||
|
|
||||||
|
{% capture notice-text %}
|
||||||
|
You can also add the `.notice` class to a `<div>` element.
|
||||||
|
|
||||||
|
* Bullet point 1
|
||||||
|
* Bullet point 2
|
||||||
|
{% endcapture %}
|
||||||
|
|
||||||
|
<div class="notice--info">
|
||||||
|
<h4>Notice Headline:</h4>
|
||||||
|
{{ notice-text | markdownify }}
|
||||||
|
</div>
|
|
@ -1,3 +1,3 @@
|
||||||
<!--[if lt IE 9]>
|
<!--[if lt IE 9]>
|
||||||
<div class="notice--danger center" style="margin: 0;">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</div>
|
<div class="notice--danger align-center" style="margin: 0;">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</div>
|
||||||
<![endif]-->
|
<![endif]-->
|
|
@ -84,12 +84,26 @@ body:hover .visually-hidden button {
|
||||||
Type
|
Type
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
/* center align */
|
.text-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
.center {
|
.text-center {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.text-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-justify {
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-nowrap {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Alignment
|
Alignment
|
||||||
|
@ -134,6 +148,14 @@ body:hover .visually-hidden button {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* image align center */
|
||||||
|
|
||||||
|
.align-center {
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
/* file page content container */
|
/* file page content container */
|
||||||
|
|
||||||
.full {
|
.full {
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue