This repository has been archived by the owner on Mar 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cc900c0
commit 2f95f9b
Showing
21 changed files
with
6,728 additions
and
6 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
*.tmproj | ||
.DS_Store | ||
.rvmrc | ||
*.tmproj | ||
Build | ||
Documentation |
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,161 @@ | ||
// | ||
// Reset Stylesheet | ||
// | ||
// This stylesheet resets all browsers down to a consistent set of default | ||
// styles, thereby making it easier to design stylesheets across all browsers | ||
// with a consistent look and with less CSS verbosity. | ||
// | ||
// More information can be found at: | ||
// | ||
// * http://meyerweb.com/eric/thoughts/2008/01/15/resetting-again/ | ||
// * http://blog.humanoriented.com/sass-css-reset-revised | ||
// | ||
// Originally created by Eric Meyer and Sassified by Yong Joseph Bakos. It has | ||
// been modified for use within Aphid. | ||
// | ||
html | ||
:margin 0 | ||
:padding 0 | ||
:border 0 | ||
:outline 0 | ||
:font-size 100% | ||
:vertical-align baseline | ||
:background transparent | ||
|
||
body | ||
:margin 0 | ||
:padding 0 | ||
:border 0 | ||
:outline 0 | ||
:font-size 100% | ||
:vertical-align baseline | ||
:background transparent | ||
:line-height 1 | ||
|
||
div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p | ||
:margin 0 | ||
:padding 0 | ||
:border 0 | ||
:outline 0 | ||
:font-size 100% | ||
:vertical-align baseline | ||
:background transparent | ||
|
||
blockquote | ||
:margin 0 | ||
:padding 0 | ||
:border 0 | ||
:outline 0 | ||
:font-size 100% | ||
:vertical-align baseline | ||
:background transparent | ||
:quotes none | ||
|
||
pre, a, abbr, acronym, address, big, cite, code | ||
:margin 0 | ||
:padding 0 | ||
:border 0 | ||
:outline 0 | ||
:font-size 100% | ||
:vertical-align baseline | ||
:background transparent | ||
|
||
del | ||
:margin 0 | ||
:padding 0 | ||
:border 0 | ||
:outline 0 | ||
:font-size 100% | ||
:vertical-align baseline | ||
:background transparent | ||
:text-decoration line-through | ||
|
||
dfn, em, font, img | ||
:margin 0 | ||
:padding 0 | ||
:border 0 | ||
:outline 0 | ||
:font-size 100% | ||
:vertical-align baseline | ||
:background transparent | ||
|
||
ins | ||
:margin 0 | ||
:padding 0 | ||
:border 0 | ||
:outline 0 | ||
:font-size 100% | ||
:vertical-align baseline | ||
:background transparent | ||
:text-decoration none | ||
|
||
kbd | ||
:margin 0 | ||
:padding 0 | ||
:border 0 | ||
:outline 0 | ||
:font-size 100% | ||
:vertical-align baseline | ||
:background transparent | ||
|
||
q | ||
:margin 0 | ||
:padding 0 | ||
:border 0 | ||
:outline 0 | ||
:font-size 100% | ||
:vertical-align baseline | ||
:background transparent | ||
:quotes none | ||
|
||
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd | ||
:margin 0 | ||
:padding 0 | ||
:border 0 | ||
:outline 0 | ||
:font-size 100% | ||
:vertical-align baseline | ||
:background transparent | ||
|
||
ol, ul | ||
:margin 0 | ||
:padding 0 | ||
:border 0 | ||
:outline 0 | ||
:font-size 100% | ||
:vertical-align baseline | ||
:background transparent | ||
:list-style none | ||
|
||
li, fieldset, form, label, legend | ||
:margin 0 | ||
:padding 0 | ||
:border 0 | ||
:outline 0 | ||
:font-size 100% | ||
:vertical-align baseline | ||
:background transparent | ||
|
||
table | ||
:margin 0 | ||
:padding 0 | ||
:border 0 | ||
:outline 0 | ||
:font-size 100% | ||
:vertical-align baseline | ||
:background transparent | ||
:border-collapse collapse | ||
:border-spacing 0 | ||
|
||
caption, tbody, tfoot, thead, tr, th, td | ||
:margin 0 | ||
:padding 0 | ||
:border 0 | ||
:outline 0 | ||
:font-size 100% | ||
:vertical-align baseline | ||
:background transparent | ||
|
||
:focus | ||
:outline 0 |
Oops, something went wrong.