Utility Classes

Using the Kramdown Markdown renderer with Jekyll allows you to add block and 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.

Text Alignment

Align text blocks with the following classes.

Left aligned text .text-left

Left aligned text
{: .text-left}

Center aligned text. .text-center

Center aligned text.
{: .text-center}

Right aligned text. .text-right

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.

Justified text.
{: .text-justify}

No wrap text. .text-nowrap

No wrap text.
{: .text-nowrap}

Image Alignment

Position images with the following classes.

image-center

The image above happens to be centered.

![image-center](/images/filename.jpg){: .align-center}

image-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.

![image-left](/images/filename.jpg){: .align-left}

image-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.

![image-right](/images/filename.jpg){: .align-right}

full

The image above should extend outside of the parent container on right.

![full](/images/filename.jpg)
{: .full}

Buttons

Make any link standout more when applying the .btn class.

<a href="#" class="btn">Link Text</a>
Button TypeExampleClassKramdown
DefaultText.btn[Text](#link){: .btn}
SuccessText.btn .btn--success[Text](#link){: .btn .btn--success}
WarningText.btn .btn--warning[Text](#link){: .btn .btn--warning}
DangerText.btn .btn--danger[Text](#link){: .btn .btn--danger}
InfoText.btn .btn--info[Text](#link){: .btn .btn--info}
InverseText.btn .btn--inverse[Text](#link){: .btn .btn--inverse}
Light OutlineText.btn .btn--light-outline[Text](#link){: .btn .btn--light-outline}
Button SizeExampleClassKramdown
X-LargeX-Large Button.btn .btn--x-large[Text](#link){: .btn .btn--x-large}
LargeLarge Button.btn .btn--large[Text](#link){: .btn .btn--large}
DefaultDefault Button.btn[Text](#link){: .btn}
SmallSmall Button.btn .btn--small[Text](#link){: .btn .btn--small}

Notices

Call attention to a block of text.

Notice TypeClass
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.

Watch out! This paragraph of text has been emphasized with the {: .notice--primary} class.

Watch out! This paragraph of text has been emphasized with the {: .notice--info} class.

Watch out! This paragraph of text has been emphasized with the {: .notice--warning} class.

Watch out! This paragraph of text has been emphasized with the {: .notice--success} class.

Watch out! This paragraph of text has been emphasized with the {: .notice--danger} class.

Notice Headline:

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

  • Bullet point 1
  • Bullet point 2

Created:

Updated: