Utility Classes

Using the Kramdown Markdown renderer 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 custom styling to text and image, and still write in Markdown. **Jekyll 3:** Kramdown is the default for `jekyll new` sites and those hosted on GitHub Pages. Not using Kramdonw? That's OK. The following classes are still available when used with standard HTML. {: .notice--warning} ## 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 Position images with the following classes. ![image-center](https://igards.github.io/images/image-alignment-580x300.jpg){: .align-center} The image above happens to be **centered**. ```markdown ![image-center](/images/filename.jpg){: .align-center} ``` --- ![image-left](https://igards.github.io/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](https://igards.github.io/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](https://igards.github.io/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 Make any link standout more when applying the `.btn` class. ```html Link Text ``` | 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}

Notice Headline:

You can also add the .notice class to a <div> element.

  • Bullet point 1
  • Bullet point 2

Updated: