Skip to content
This repository has been archived by the owner on Apr 25, 2019. It is now read-only.

Commit

Permalink
Close #165
Browse files Browse the repository at this point in the history
  • Loading branch information
Gareth Joyce committed Dec 15, 2016
1 parent 11706a6 commit f7948e1
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 7 deletions.
12 changes: 12 additions & 0 deletions pattern/utility/list/1-inline.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php /*
Title: List Inline
Class: .u-list-inline
*/ ?>

<ul class="u-list-inline">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ul>
12 changes: 12 additions & 0 deletions pattern/utility/list/2-ordered.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php /*
Title: List Ordered
Class: .u-list-ordered
*/ ?>

<ul class="u-list-ordered">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ul>
12 changes: 12 additions & 0 deletions pattern/utility/list/3-unordered.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php /*
Title: List Unordered
Class: .u-list-unordered
*/ ?>

<ol class="u-list-unordered">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ol>
12 changes: 12 additions & 0 deletions pattern/utility/list/4-unstyled.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php /*
Title: List Unstyled
Class: .u-list-unstyled
*/ ?>

<ol class="u-list-unstyled">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ol>
15 changes: 8 additions & 7 deletions src/scss/_var.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
// =============================================

$colors: (
primary: (
pink : DeepPink
),

secondary: (
purple : RebeccaPurple
),

// primary: (
// pink : DeepPink
// ),
//
// secondary: (
// purple : RebeccaPurple
// ),

neutral: (
black : #000,
Expand Down

0 comments on commit f7948e1

Please sign in to comment.