Welcome to the Fit to a Tee style guide. This guide is a resource for maintaining a consistent design language and coding convention around Fit to a Tee's UI. It's used for storing and maintaining a living database of modular UI elements that make up our site, so that compliancy and consistency can be found across Fit to a Tee's site.
.button.navlink
.button.navlink.checkout
<a class="button navlink" href="">Navigation Button</a>
<a class="button navlink checkout" href="">Checkout Button</a>
a
<a href="">This is a link.</a>
.button.submit
.button.reset
<input type="submit" class="button submit" value="Submit form">
<input type="submit" class="button reset" value="Clear all">
.textfield-label
.textfield
<label class="textfield-label" for="text-input-field">Name</label>
<input type="text" class="textfield" placeholder="Enter your name here" id="input-first-name">
h1
h2
h3
h4
<h1>This is an h1 heading.</h1>
<h2>This is an h2 heading.</h2>
<h3>This is an h3 heading.</h3>
<h4>This is an h4 heading.</h4>
p
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
ul
<ul>
<li><span class="listitem">This is a list item.<span></li>
<li><span class="listitem">This is a list item.<span></li>
<li><span class="listitem">This is a list item.<span></li>
</ul>
The CSS for the <ul> tag colours the bullets, so the <span> tag with the "listitem" class exists to recolour the text back to grey.
ol
<ol>
<li><span class="listitem">This is a list item.<span></li>
<li><span class="listitem">This is a list item.<span></li>
<li><span class="listitem">This is a list item.<span></li>
</ol>
The CSS for the <ol> tag colours the numbers, so the <span> tag with the "listitem" class exists to recolour the text back to grey.
nav
<nav>
<a class="button navlink" href="">Current Styles</a>
<a class="button navlink" href="">Past Styles</a>
<a class="button navlink" href="">About</a>
<a class="button navlink checkout" href="">Checkout</a>
</nav>
.product-listing
<div class="product-listing">
<img src="img/tshirt-bike.png" alt="T-shirt with a bike on the front. The bike has people standing on its seat.">
<div class="product-info">
<p class="product-name">Bike T-Shirt</p>
<p class="product-price">$24.99</p>
</div>
</div>
Bike T-Shirt
$24.99
.container
<div class="container">
<div class="product-listing container-item">
<img src="img/tshirt-bike.png" alt="T-shirt with a bike on the front. The bike has people standing on its seat.">
<div class="product-info">
<p class="product-name">Bike T-Shirt</p>
<p class="product-price">$24.99</p>
</div>
</div>
<div class="product-listing container-item">
<img src="img/tshirt-mountain.png" alt="T-shirt with two mountains on the front. The tall mountain is thinking about food.">
<div class="product-info">
<p class="product-name">Mountain T-Shirt</p>
<p class="product-price">$24.99</p>
</div>
</div>
<div class="product-listing container-item">
<img src="img/tshirt-picnic.png" alt="T-shirt with a picnic basket containing chicken, watermelon, and lemonade on the front.">
<div class="product-info">
<p class="product-name">Picnic T-Shirt</p>
<p class="product-price">$24.99</p>
</div>
</div>
<div class="product-listing container-item">
<img src="img/tshirt-trees.png" alt="T-shirt with walking trees on the front.">
<div class="product-info">
<p class="product-name">Trees T-Shirt</p>
<p class="product-price">$24.99</p>
</div>
</div>
<div class="product-listing container-item">
<img src="img/tshirt-ufo.png" alt="T-shirt with a UFO abducting a man on the front.">
<div class="product-info">
<p class="product-name">UFO T-Shirt</p>
<p class="product-price">$24.99</p>
</div>
</div>
<div class="product-listing container-item">
<img src="img/tshirt-falling.png" alt="T-shirt with two falling children on the front.">
<div class="product-info">
<p class="product-name">Falling T-Shirt</p>
<p class="product-price">$29.99</p>
</div>
</div>
</div>
Bike T-Shirt
$24.99
Mountain T-Shirt
$24.99
Picnic T-Shirt
$24.99
Trees T-Shirt
$24.99
UFO T-Shirt
$24.99
Falling T-Shirt
$29.99