Last active
August 29, 2015 14:13
-
-
Save chromaphobic/63e15277c174bc42401b to your computer and use it in GitHub Desktop.
Highlight Boxes
This file contains hidden or 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
<!-- These boxes can be used to highlight small bits of content that we want to draw attention to. --> | |
<!-- For general uses, there are two main styles/classes: --> | |
<!-- "highlight-info" - This is a light gray background with black text --> | |
<!-- "highlight-invert" - A dark gray background with white text. --> | |
<div class="highlight-info"> | |
<h3>Sed posuere consectetur est at lobortis</h3> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce dapibus, tellus ac cursus commodo.</p> | |
</div> | |
<!-- There are 3 additional utility classes, primarily for status messages and such --> | |
<!-- As these utility classes use non-branded colors, they should not be used as design elements: --> | |
<!-- "highlight-warning" - White text on a red background, for warnings and errors --> | |
<!-- "highlight-alert" - Black text on a yellow background, for alerts or less serious/non-critical errors --> | |
<!-- "highlight-confirm" - Black text on a green background, for confirmations and success messages --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment