General Styles

These styles are used as the foundation for the theme.

Primary Color

#064CDB

Secondary Color

#064CDB

Success Color

#064CDB

Danger Color

#064CDB

Warning Color

#064CDB

Info Color

#064CDB

Light Color

#064CDB

Dark Color

#064CDB


h1. Heading New

h2. Heading New

h3. Heading New

h4. Heading New

h5. Heading New
h6. Heading New

Display 1

Display 2

Display 3

Display 4


A slightly-larger-than-normal block of text using the class of .lead, useful for decks, blurbs, or other descriptive text.


This is a standard paragraph created using the WordPress editor. It has a strong tag, an em tag and a strikethrough which is actually just the del element. There are a few inline elements not available in the WordPress admin but we style those too, just in case you want to use them. These include citations, abbr, bits of code and variables, inline quotations, inserted text, text that is no longer accurate or something so important you might want to mark it. We can also style subscript and superscript so you can say things like C8H10N402 is my 2nd favourite chemical.

If you are feeling non-semantic you might even use bold, italic, big or small elements. Incidentally, these HTML4.01 tags have been given new life and semantic meaning in HTML5, you may be interested in reading this article by Harry Roberts which gives us a nice excuse to test a link. It is also worth noting in the “kitchen sink” view you can also add underline styling and set text color with pesky inline CSS.

“This stylesheet is going to help so much. Users can take full advantage of all the HTML elements. Imagine that!”

In my dream last night, I saw J. R. R. Tolkien and George R. R. Martin hanging out on Sunset Blvd.

Press Cmd+Q (or Ctrl+Q on Windows) to play Half-Life 3.


You can use the mark tag to highlight text.

This line of text is meant to be treated as deleted text.

This line of text is meant to be treated as no longer accurate.

This line of text is meant to be treated as an addition to the document.

This line of text will render as underlined

This line of text is meant to be treated as fine print.

This line rendered as bold text.

This line rendered as italicized text.

Typography

Documentation and examples for Bootstrap typography, including global settings, headings, body text, lists, and more.

h1. Heading New

h2. Heading New

h3. Heading New

h4. Heading New

h5. Heading New
h6. Heading New

Display 1

Display 2

Display 3

Display 4


A slightly-larger-than-normal block of text using the class of .lead, useful for decks, blurbs, or other descriptive text.


This is a standard paragraph created using the WordPress editor. It has a strong tag, an em tag and a strikethrough which is actually just the del element. There are a few inline elements not available in the WordPress admin but we style those too, just in case you want to use them. These include citations, abbr, bits of code and variables, inline quotations, inserted text, text that is no longer accurate or something so important you might want to mark it. We can also style subscript and superscript so you can say things like C8H10N402 is my 2nd favourite chemical.

If you are feeling non-semantic you might even use bold, italic, big or small elements. Incidentally, these HTML4.01 tags have been given new life and semantic meaning in HTML5, you may be interested in reading this article by Harry Roberts which gives us a nice excuse to test a link. It is also worth noting in the “kitchen sink” view you can also add underline styling and set text color with pesky inline CSS.

“This stylesheet is going to help so much. Users can take full advantage of all the HTML elements. Imagine that!”

In my dream last night, I saw J. R. R. Tolkien and George R. R. Martin hanging out on Sunset Blvd.

Press Cmd+Q (or Ctrl+Q on Windows) to play Half-Life 3.


You can use the mark tag to highlight text.

This line of text is meant to be treated as deleted text.

This line of text is meant to be treated as no longer accurate.

This line of text is meant to be treated as an addition to the document.

This line of text will render as underlined

This line of text is meant to be treated as fine print.

This line rendered as bold text.

This line rendered as italicized text.

Alerts

Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.

Example

Alerts are available for any length of text, as well as an optional dismiss button. For proper styling, use one of the eight required contextual classes (e.g., .alert-success). For inline dismissal, use the alerts jQuery plugin.

    
      <div class="alert alert-primary" role="alert">
        This is a primary alert—check it out!
      </div>
      <div class="alert alert-secondary" role="alert">
        This is a secondary alert—check it out!
      </div>
      <div class="alert alert-success" role="alert">
        This is a success alert—check it out!
      </div>
      <div class="alert alert-danger" role="alert">
        This is a danger alert—check it out!
      </div>
      <div class="alert alert-warning" role="alert">
        This is a warning alert—check it out!
      </div>
      <div class="alert alert-info" role="alert">
        This is a info alert—check it out!
      </div>
      <div class="alert alert-light" role="alert">
        This is a light alert—check it out!
      </div>
      <div class="alert alert-dark" role="alert">
        This is a dark alert—check it out!
      </div>
    
  

Conveying meaning to assistive technologies

Using color to add meaning only provides a visual indication, which will not be conveyed to users of assistive technologies – such as screen readers. Ensure that information denoted by the color is either obvious from the content itself (e.g. the visible text), or is included through alternative means, such as additional text hidden with the .sr-only class.

Additional content

Alerts can also contain additional HTML elements like headings, paragraphs and dividers.

    
      <div class="alert alert-success" role="alert">
        <h4 class="alert-heading">Well done!</h4>
        <p class="alert-text">Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
        <hr />
        <p class="alert-text mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
      </div>
    
  

Dismissing

Using the alert JavaScript plugin, it's possible to dismiss any alert inline. Here's how:

  • Be sure you've loaded the alert plugin, or the compiled Bootstrap JavaScript.
  • If you're building our JavaScript from source, it requires util.js. The compiled version includes this.
  • Add a dismiss button and the .alert-dismissible class, which adds extra padding to the right of the alert and positions the .close button.
  • On the dismiss button, add the data-dismiss="alert" attribute, which triggers the JavaScript functionality. Be sure to use the <button> element with it for proper behavior across all devices.
  • To animate alerts when dismissing them, be sure to add the .fade and .show classes.

You can see this in action with a live demo:

    
      <div class="alert alert-warning alert-dismissible fade show" role="alert">
        <strong>Holy guacamole!</strong> You should check in on some of those fields below.
        <button type="button" class="close" data-dismiss="alert" aria-label="Close">
          <span aria-hidden="true">×</span>
        </button>
      </div>
    
  

JavaScript behavior

For more information, see the official Bootstrap documentation.

Badge
Buttons

Cards

Cards provide a flexible and extensible content container with multiple variants and options.

Card title
Card Subtitle

Some quick example text to build on the card title and make up the bulk of the card's content.

Button
  • List Group Item 1
  • List Group Item 2
  • List Group Item 3
Card Header
Card Title

This is card text with supporting text below as a natural lead-in to additional content.

Button

Overline

H5 Heading Title

Meta

Calling all High School Students and College Freshman residents of an Evergreen managed communities. What does Community mean to you?...

Read More →

Johannes Gutenberg

German Printer

Johannes Gensfleisch zur Laden zum Gutenburg was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe with the printing press. Wikipedia

Born

c. 1400, Mainz Germany

Cafe Bassilico

4.7 Stars (51)

$ • Italian, Cafe

Small plates, salads & Sandwiches in an intimate setting with 12 indoor seats plus patio seating.


Tonights Availability

5:30pm 7:30pm 8:00pm 9:00pm

Reserve

H4 Heading Title

Calling all High School Students and College Freshman residents of an Evergreen managed communities. What does Community mean to you?...

Sep 10, 2019 • Style Guide

Paving & Sealcoating

Atlantic Southern Paving and Sealcoating

6301 W Sunrise Blvd
Sunrise

954-581-5805

Card Components

Card Body

This is some text within a card body.

Titles, text, and links

Card titles are used by adding .card-title to a <h*> tag. In the same way, links are added and placed next to each other by adding .card-link to an <a> tag.

Subtitles are used by adding a .card-subtitle to a <h*> tag. If the .card-title and the .card-subtitle items are placed in a .card-body item, the card title and subtitle are aligned nicely.

Image Overlay

Card Title

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

Card Title

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

Card Title

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

Card Title

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

Card Title

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

Card Title

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

Business Directory

Icons

Documentation and examples for Bootstrap typography, including global settings, headings, body text, lists, and more.


Color Icons - 64x64

Layout 1

A layout that accomodates portal stuff.