-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from uniqname/stage
Adding files
- Loading branch information
Showing
4 changed files
with
180 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/********** | ||
* Reset/Normailze | ||
**********/ | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
/********** | ||
* Typography | ||
**********/ | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
/********** | ||
* Layout | ||
**********/ | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
/********** | ||
* Components | ||
**********/ | ||
|
||
/* Buttons | ||
===========*/ | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
/* Tabs | ||
===========*/ | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
/* Accoridan | ||
===========*/ | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
/* Image Gallery | ||
===========*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
//Universal utility functions | ||
|
||
//trim the whitespace from the beginning and end of a string | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
//invert a string | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
//Determin if an object is an Array (and not an Array-like object) | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
// Deep merge one JS object into another | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
/************ | ||
* DOM | ||
*************/ | ||
|
||
//Convert a URL query string to a native JS object | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
//Cross browser adding of event listener | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
//Dynamically load a given external resource | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
//ensure HTML5 sectioning elements are recoginzed by older browsers | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
//polyfill the HTML5 <details> and <summary> elements | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
//polyfill HTML5 <input> types and attributes (email, tel, number and placeholder) | ||
|
||
|
||
/************ | ||
* Kobayashi Maru | ||
*************/ | ||
//Responsive Images. Go! |