CloudPuff Pastries Style Guide

This is a website for a dessert shop specializing in cute and creamy delights.

Branding

Pink Colour Palette
Warm tones make for a great start
Collage of hand drawn faces
Hand drawn graphics make it cute

Interactive Elements

In-text link

CSS selector:

a

Sample code:

<a href="http://www.snowyvillages.ca" target="blank">See more dessert options here.</a>

Rendered element:

Click here to see more dessert options.

Navigation Link

CSS selector:

.button-nav

Sample code:

<a href="#" class="button">Default Button</a>

Rendered element:

Default Button

Text Input Field with Label

CSS selector:

form, label, input

Sample code:

<form method="post" action="#">
<label for="form-name">First Name:</label>
<input type="text" id="form-email" placeholder="Jane">
<a class="button-nav" href="#">Submit</a>
</form>

Rendered element:

Submit

Image as a Link

CSS selector:

a img, a:hover img, a:focus img

Sample code:

<a href="http://www.snowyvillages.ca" target="blank">
<img src="img/02greentea_landing.jpg" alt="An appetizing shaved ice dessert with matcha topping sprinkled.">
</a>

Rendered element:

An appetizing shaved ice dessert with matcha topping sprinkled.
Check out what is in store at CloudPuff Pastries!

Text Elements

Headings

CSS selector:

h1, h2, h3, h4, h5

Sample code:

<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>

Rendered element:

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5

Paragraphs

CSS selector:

p

Sample code:

<p>At CloudPuff Pastries we strive to bring customers a taste of angelic delight. With a wide selection of freshly made drinks and desserts, there is something for everyone. Our fluffy cakes, creamy treats, and sweet confections are bound to bring you a little slice of heaven.</p>

Rendered element:

At CloudPuff Pastries we strive to bring customers a taste of angelic delight. With a wide selection of freshly made drinks and desserts, there is something for everyone. Our fluffy cakes, creamy treats, and sweet confections are bound to bring you a little slice of heaven.

Numbered Lists

CSS selector:

ol, li

Sample code:

<ol>
<li>Injeolmi Bingsoo</li>
<li>Matcha Bingsoo</li>
<li>Strawberry Bingsoo</li>
</ol>

Rendered element:

  1. Injeolmi Bingsoo
  2. Matcha Bingsoo
  3. Strawberry Bingsoo

Combined Elements

Main Navigation

CSS selector:

.button-nav

Sample code:

<a href="#" class="button-nav">Home</a>
<a href="#" class="button-nav">Menu</a>
<a href="#" class="button-nav">About</a>
<a href="#" class="button-nav">Contact</a>

Rendered element:

Product/Service Listing

Strawberry Bingsoo
Strawberry Bingsoo
Injeolmi Bingsoo
Injeolmi Bingsoo

Citations