Skip to content
This repository has been archived by the owner on Mar 5, 2020. It is now read-only.

Commit

Permalink
Basic project structure for Aphid.
Browse files Browse the repository at this point in the history
  • Loading branch information
justinwinslow committed Jun 3, 2010
1 parent cc900c0 commit 2f95f9b
Show file tree
Hide file tree
Showing 21 changed files with 6,728 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
*.tmproj
.DS_Store
.rvmrc
*.tmproj
Build
Documentation
161 changes: 161 additions & 0 deletions Assets/Stylesheets/Reset.sass
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
Loading

0 comments on commit 2f95f9b

Please sign in to comment.