Skip to content

Instantly share code, notes, and snippets.

@naderhen
Created May 8, 2013 16:48
Show Gist options
  • Save naderhen/b0908c55739c78cb45bd to your computer and use it in GitHub Desktop.
Save naderhen/b0908c55739c78cb45bd to your computer and use it in GitHub Desktop.
@import "compass/reset/utilities";
// Based on [Eric Meyer's reset 2.0](http://meyerweb.com/eric/tools/css/reset/index.html)
// Global reset rules.
// For more specific resets, use the reset mixins provided below
/*
* removed these styles for being to restrictive.
* table { @include reset-table; }
* caption, th, td { @include reset-table-cell; }
*
* removed th, td from this list due to the base reset styles being to restrictive and interfering with gmail message
* display.
*
* NOTE:: base backupify tables, tr, td, th are defined in /public/sass/modules/_tables.scss
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
@include reset-box-model;
@include reset-font; }
body {
@include reset-body; }
ol, ul {
@include reset-list-style; }
/*table {
@include reset-table; }*/
/*caption, th, td {
@include reset-table-cell; }*/
q, blockquote {
@include reset-quotation; }
a img {
@include reset-image-anchor-border; }
@include reset-html5;
# This configuration file works with both the Compass command line tool and within Rails.
# Require any additional compass plugins here.
require 'ninesixty'
require 'compass_twitter_bootstrap'
project_type = :rails
# Set this to the root of your project when deployed:
http_path = "/"
sass_dir = "app/sass"
# Need for the FireSass Firefox plugin
#sass_options = {:debug_info => true, :cache => true, :always_check => true}
sass_options = {:cache => true, :always_check => true}
# You can select your preferred output style here (can be overridden via the command line):
# output_style = :expanded or :nested or :compact or :compressed
# To enable relative paths to assets via compass helper functions. Uncomment:
# relative_assets = true
# To disable debugging comments that display the original location of your selectors. Uncomment:
# line_comments = false
preferred_syntax = :scss
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment