Container

A container with a maximum width of $screen-lg-max

Example

<div class="container"></div>
Source file: ~/source/sass/layout/container.scss

Pull left

Floats an element to the left edge of the container.

Example

Floating to the left
<div class="pull-left">Floating to the left</div>
<div class="clearfix"></div>
Source file: ~/source/sass/layout/float.scss

Pull right

Floats an element to the right edge of the container.

Example

Floating to the right
<div class="pull-right">Floating to the right</div>
<div class="clearfix"></div>
Source file: ~/source/sass/layout/float.scss

Clearfix

Used to clear floats. Can be used either on a div after a floated element or directly on the container.

Example

<div class="clearfix"></div>
Source file: ~/source/sass/layout/float.scss

Grid

HbgPrime's grid system is a 12 column responsive grid.
ATTENTION: Remove the .grid-example class before using.

Example

grid-md-3
grid-md-9
<div class="grid grid-example">
    <div class="grid-md-3">grid-md-3</div>
    <div class="grid-md-9">grid-md-9</div>
</div>
Source file: ~/source/sass/layout/grid.scss

The website's main footer

Example

Helsingborg Stad
  • Telefonnummer
  • Helsingborg kontaktcenter: 042-10 50 00
  • Postadress
  • Namn på verksamheten
    251 89 Helsingborg
<footer class="main-footer">
    <div class="container">
        <div class="grid">
            <div class="grid-lg-12">
                <a href="/" class="logotype"><img src="http://www.helsingborg.se/wp-content/themes/This-is-Helsingborg/assets/images/helsingborg-neg.svg" alt="Helsingborg Stad" width="239" height="68"></a>
            </div>
        </div>
        <div class="grid">
            <div class="grid-lg-6">
                <ul>
                    <li><strong>Telefonnummer</strong></li>
                    <li>Helsingborg kontaktcenter: 042-10 50 00</li>
                </ul>
                <ul>
                    <li><strong>E-post</strong></li>
                    <li><a href="mailto:kontaktcenter@helsingborg.se" class="link-item link-item-light">kontaktcenter@helsingborg.se</a></li>
                </ul>
            </div>
            <div class="grid-lg-6">
                <ul>
                    <li><strong>Postadress</strong></li>
                    <li>Namn på verksamheten<br>251 89 Helsingborg</li>
                </ul>
            </div>
        </div>
    </div>
</footer>
Source file: ~/source/sass/component/footer/footer.scss