Style Guide

Style guides require compliance and conformity; in return they provide stability and cohesion. A style guide and code standards document is a way of ensuring brand and code consistency. By maintaining all of a website's primary elements on a single page, we can see how modular components can be reused, as well as how changes to those elements will affect the site overall. The style guide also serves as a curated, archival collection for design and UX/UI decisions made during the course of the site's development - creating a code base that can resist arbitrary decisions since a predefined choice presents itself.

Bootstrap Logo

ConsolidatedCredit.org website is built on top of Bootstrap 4, an open source toolkit for developing with HTML, CSS, and JS.

For thorough documentation on the grid system, components, utilities and all the fun stuff Bootstrap 4 offers, check out the Bootstrap documentation.

Colors

Brand Colors

#003c73
$cc-blue
#4cc6f4
$cc-blue-light
#287dad
$dark-blue-extra
#1e6a9b
$blue

Other Colors

#0d4e78
$dark-blue
#0d9cde
$light-blue
#267cac
$light-blue-extra
#00adf1
$blue-sky
#80d9f7
$blue-marine
#c4e8f5
$soft-blue
#e1f0fa
$bg-blue
#e8730b
$orange
#fdc82b
$yellow
#fee394
$yellow-light
#282828
$dark-gray
#6d7072
$semi-dark-gray
#404040
$semi-gray
#666666
$gray
#e6e6e6
$light-gray
#eef2f5
$light-bluegray
#f4f7f8
$super-light-gray

Typography

Gibson Light

Weight 300

Gibson Regular

Weight 400

Gibson SemiBold

Weight 600

Gibson Bold

Weight 700

Google Fonts Logo Fonts licensed and hosted by Google Fonts

H1 - Default H1 header

 

H2 - Default H2 header

 

H3 - Default H3 header

 

H4 - Default H4 header

 

H5 - Default H5 header

 

Paragraph text. ConsolidatedCredit.org offers daily expert advice about money – how to make it, how to save it, and how to spend it. We even tell you how to go into debt the right way. (What do you think a mortgage and a car loan are?)

But if you want to get out of debt, ConsolidatedCredit.org has partnered with highly rated companies that can help. When you tell us your circumstances (and we tenaciously protect your personal information) we act like a dating service for debt. We introduce you to the perfect debt-solution company for you, and we make sure you’re happy with the results.

Buttons

Examples

<button type="button" class="btn btn-primary">Primary Button</button>
<button type="button" class="btn btn-secondary">Secondary Button</button>
<button type="button" class="btn btn-passive">Passive Button</button>
                            	

Forms

Text Fields and Dropdowns


<form>
    <div class="form-row">
        <div class="col">
            <div class="form-group">
                <label for="exampleFormControlInput1">First Name</label>
                <input type="text" class="form-control" id="exampleFormControlInput1" placeholder="First name">
            </div>
        </div>
        <div class="col">
            <div class="form-group">
                <label for="exampleFormControlInput2">Last Name</label>
                <input type="text" class="form-control" id="exampleFormControlInput2" placeholder="Last name">
            </div>
        </div>
    </div>

    <div class="form-group">
        <label for="exampleFormControlInput3">Email address</label>
        <input type="email" class="form-control" id="exampleFormControlInput3" placeholder="name@example.com">
    </div>

    <div class="form-group">
        <label for="exampleFormControlSelect1">Example select</label>
        <div class="select">
            <select class="form-control" id="exampleFormControlSelect1">
                <option>First select</option>
                <option>Option</option>
                <option>Option</option>
            </select>
            <div class="select__arrow"></div>
        </div>
    </div>

    <div class="form-group">
        <label for="exampleFormControlTextarea1">Example textarea</label>
        <textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
    </div>
</form>    

                                

Checkboxes and Radio Buttons

 
<form>
    <div class="form-row">
        <div class="col">
            <div class="form-group control-group">
                <label>Example checkboxes</label>

                <div class="form-check">
                    <label class="control control--checkbox">Checkbox
                        <input type="checkbox">
                        <div class="control__indicator"></div>
                    </label>
                </div>

                <div class="form-check">
                    <label class="control control--checkbox">Checked
                        <input type="checkbox" checked="checked">
                        <div class="control__indicator"></div>
                    </label>
                </div>

                <div class="form-check">
                    <label class="control control--checkbox">Disabled
                        <input type="checkbox" disabled="disabled">
                        <div class="control__indicator"></div>
                        </label>
                </div>

                <div class="form-check">
                    <label class="control control--checkbox">Disabled & checked
                        <input type="checkbox" disabled="disabled" checked="checked">
                        <div class="control__indicator"></div>
                    </label>
                </div>
            </div>
        </div>
        <div class="col">
            <div class="form-group control-group">
                <label>Example radio buttons</label>

                <label class="control control--radio">Radio button
                    <input type="radio">
                    <div class="control__indicator"></div>
                </label>

                <label class="control control--radio">Checked
                    <input type="radio" checked="checked">
                    <div class="control__indicator"></div>
                </label>

                <label class="control control--radio">Disabled
                    <input type="radio" disabled="disabled">
                    <div class="control__indicator"></div>
                </label>

                <label class="control control--radio">Disabled & checked
                    <input type="radio" disabled="disabled" checked="checked">
                    <div class="control__indicator"></div>
                </label>
            </div>
        </div>
    </div>
</form>
                                

Icons

FontAwesome Logo

We use the AWESOME open-source, icon font toolkit, Font Awesome Pro, for most of the icons on our website.

We implement many custom icon images throughout the site and try to stay with a thin, line icon style. A custom icon font will be coming soon to make implementing icons even easier.

Primary Icons

Credit Card Icon
Student Loans Icon
Tax Debt Icon
Credit Repair Icon
Bankruptcy Icon
Collector Harassment Icon
Identity Theft Icon

 

Other Icons

Phone/Call Icon
Search Icon
Newsletter Icon
Calculator Icon
Learn Icon
OL/UL Icon
Link/Next Icon
Sign In Icon
Angle Up Icon
Mortgage Icon
Video Icon
List Icon
Menu Icon
Facebook Icon
Twitter Icon
YouTube Icon
LinkedIn Icon
Pinterest Icon
Instagram Icon
RSS Icon