-
Notifications
You must be signed in to change notification settings - Fork 13
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
Showing
16 changed files
with
350 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Require any additional compass plugins here. | ||
require 'susy' | ||
require 'singularitygs' | ||
require 'toolkit' | ||
require 'compass-normalize' | ||
require 'respond-to' | ||
require 'sassy-buttons' | ||
|
||
# Set this to the root of your project when deployed: | ||
http_path = "/" | ||
css_dir = "css" | ||
sass_dir = "sass" | ||
images_dir = "images" | ||
javascripts_dir = "js" | ||
|
||
# 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 | ||
|
||
|
||
# If you prefer the indented syntax, you might want to regenerate this | ||
# project again passing --syntax sass, or you can uncomment this: | ||
# preferred_syntax = :sass | ||
# and then run: | ||
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass | ||
|
||
# Change this to :production when ready to deploy the CSS to the live server. | ||
environment = :development | ||
# environment = :production | ||
|
||
# Pass options to sass. For development, we turn on the FireSass-compatible | ||
# debug_info if the firesass config variable above is true. | ||
# sass_options = (environment == :development) ? {:debug_info => true} : {} |
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,157 @@ | ||
/* line 17, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.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, th, td, | ||
article, aside, canvas, details, embed, | ||
figure, figcaption, footer, header, hgroup, | ||
menu, nav, output, ruby, section, summary, | ||
time, mark, audio, video { | ||
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
font: inherit; | ||
font-size: 100%; | ||
vertical-align: baseline; | ||
} | ||
|
||
/* line 22, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
html { | ||
line-height: 1; | ||
} | ||
|
||
/* line 24, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
ol, ul { | ||
list-style: none; | ||
} | ||
|
||
/* line 26, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
table { | ||
border-collapse: collapse; | ||
border-spacing: 0; | ||
} | ||
|
||
/* line 28, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
caption, th, td { | ||
text-align: left; | ||
font-weight: normal; | ||
vertical-align: middle; | ||
} | ||
|
||
/* line 30, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
q, blockquote { | ||
quotes: none; | ||
} | ||
/* line 103, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
q:before, q:after, blockquote:before, blockquote:after { | ||
content: ""; | ||
content: none; | ||
} | ||
|
||
/* line 32, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
a img { | ||
border: none; | ||
} | ||
|
||
/* line 116, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { | ||
display: block; | ||
} | ||
|
||
/* line 8, ../../../../../usr/local/gems/toolkit-0.2.0.1/stylesheets/toolkit/_border-box.scss */ | ||
* { | ||
-webkit-box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
box-sizing: border-box; | ||
} | ||
|
||
/* line 4, ../../../../../usr/local/gems/toolkit-0.2.0.1/stylesheets/toolkit/_fluid-media.scss */ | ||
img, video { | ||
max-width: 100%; | ||
height: auto; | ||
} | ||
|
||
@media print { | ||
/* line 17, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.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, th, td, | ||
article, aside, canvas, details, embed, | ||
figure, figcaption, footer, header, hgroup, | ||
menu, nav, output, ruby, section, summary, | ||
time, mark, audio, video { | ||
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
font: inherit; | ||
font-size: 100%; | ||
vertical-align: baseline; | ||
} | ||
|
||
/* line 22, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
html { | ||
line-height: 1; | ||
} | ||
|
||
/* line 24, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
ol, ul { | ||
list-style: none; | ||
} | ||
|
||
/* line 26, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
table { | ||
border-collapse: collapse; | ||
border-spacing: 0; | ||
} | ||
|
||
/* line 28, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
caption, th, td { | ||
text-align: left; | ||
font-weight: normal; | ||
vertical-align: middle; | ||
} | ||
|
||
/* line 30, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
q, blockquote { | ||
quotes: none; | ||
} | ||
/* line 103, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
q:before, q:after, blockquote:before, blockquote:after { | ||
content: ""; | ||
content: none; | ||
} | ||
|
||
/* line 32, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
a img { | ||
border: none; | ||
} | ||
|
||
/* line 116, ../../../../../usr/local/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ | ||
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { | ||
display: block; | ||
} | ||
|
||
/* line 8, ../../../../../usr/local/gems/toolkit-0.2.0.1/stylesheets/toolkit/_border-box.scss */ | ||
* { | ||
-webkit-box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
box-sizing: border-box; | ||
} | ||
|
||
/* line 4, ../../../../../usr/local/gems/toolkit-0.2.0.1/stylesheets/toolkit/_fluid-media.scss */ | ||
img, video { | ||
max-width: 100%; | ||
height: auto; | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
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,28 @@ | ||
//////////////////////// | ||
// Print File | ||
// | ||
// This file gets turned into style.css. This file should really | ||
// hold nothing except for imports of your base, layout, and design | ||
// partials, plus the mixins required to kickstart Aura and Style Guide. | ||
// This file is styles specific to Printed files. | ||
//////////////////////// | ||
|
||
//////////////////////// | ||
// Base Import | ||
//////////////////////// | ||
@import 'partials/global/base'; | ||
|
||
//////////////////////// | ||
// Import Style Guide | ||
//////////////////////// | ||
@import 'partials/styleguide/print-style-guide'; | ||
|
||
//////////////////////// | ||
// Import Layout | ||
//////////////////////// | ||
@import 'partials/layout/print-layout'; | ||
|
||
//////////////////////// | ||
// Import Design | ||
//////////////////////// | ||
@import 'partials/design/print-design'; |
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,9 @@ | ||
//////////////////////// | ||
// Design Partials | ||
// | ||
// Seperate your layout from design, building sub folders and partials | ||
// in this folder, with everything being imported, in casading order, | ||
// into this file. | ||
// | ||
// All styling, non box model properties go here | ||
//////////////////////// |
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,9 @@ | ||
//////////////////////// | ||
// Print Design Partials | ||
// | ||
// Seperate your layout from design, building sub folders and partials | ||
// in this folder, with everything being imported, in casading order, | ||
// into this file. This is for Printed files. | ||
// | ||
// All styling, non box model properties go here | ||
//////////////////////// |
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,33 @@ | ||
//////////////////////// | ||
// Base Partials | ||
// | ||
// These files will be shared across all three of your output | ||
// CSS files. Generally included here are only Compass Extension | ||
// imports and imports for variables, functions, mixins, and extendables. | ||
//////////////////////// | ||
|
||
//////////////////////// | ||
// Compass Imports | ||
//////////////////////// | ||
@import "compass"; | ||
@import "compass/reset"; | ||
|
||
//////////////////////// | ||
// Compass Extensions | ||
// | ||
// Aurora includes Toolkit, Breakpoint, Respond-to, Sassy Buttons, and SingularityGS | ||
//////////////////////// | ||
//@import 'normalize'; | ||
@import 'susy'; | ||
//@import 'singularity'; | ||
@import 'respond-to'; | ||
@import 'sassy-buttons'; | ||
@import 'toolkit'; | ||
|
||
//////////////////////// | ||
// Private Imports | ||
//////////////////////// | ||
@import 'variables'; | ||
@import 'functions'; | ||
@import 'mixins'; | ||
@import 'extendables'; |
Empty file.
Empty file.
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,9 @@ | ||
//////////////////////// | ||
// Layout Partials | ||
// | ||
// Seperate your layout from design, building sub folders and partials | ||
// in this folder, with everything being imported, in casading order, | ||
// into this file. | ||
// | ||
// All box model properties go here | ||
//////////////////////// |
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,9 @@ | ||
//////////////////////// | ||
// Print Layout Partials | ||
// | ||
// Seperate your layout from design, building sub folders and partials | ||
// in this folder, with everything being imported, in casading order, | ||
// into this file. This is for Print files. | ||
// | ||
// All box model properties go here | ||
//////////////////////// |
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,10 @@ | ||
//////////////////////// | ||
// Style Guide Partials | ||
// | ||
// Write a Style Guide for your website, building sub folders and partials | ||
// in this folder, with everything being imported, in casading order, | ||
// into this file. | ||
// | ||
// All Print Style Guide selectors should go in here, regardless of layout or design | ||
// (but separating the two in here is a good idea). | ||
//////////////////////// |
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,10 @@ | ||
//////////////////////// | ||
// Style Guide Partials | ||
// | ||
// Write a Style Guide for your website, building sub folders and partials | ||
// in this folder, with everything being imported, in casading order, | ||
// into this file. | ||
// | ||
// All Style Guide selectors should go in here, regardless of layout or design | ||
// (but separating the two in here is a good idea). | ||
//////////////////////// |
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,34 @@ | ||
//////////////////////// | ||
// Style File | ||
// | ||
// This file gets turned into style.css. This file should really | ||
// hold nothing except for imports of your base, layout, and design | ||
// partials, plus the mixins required to kickstart Aura and Style Guide. | ||
//////////////////////// | ||
|
||
//////////////////////// | ||
// Base Import | ||
//////////////////////// | ||
@import 'partials/global/base'; | ||
|
||
//////////////////////// | ||
// Import Style Guide | ||
//////////////////////// | ||
@import 'partials/styleguide/style-guide'; | ||
|
||
//////////////////////// | ||
// Import Layout | ||
//////////////////////// | ||
@import 'partials/layout/layout'; | ||
|
||
//////////////////////// | ||
// Import Design | ||
//////////////////////// | ||
@import 'partials/design/design'; | ||
|
||
////////////////////////////// | ||
// Import our Print file, because it needs to get downloaded anyway, might as well compress them! | ||
////////////////////////////// | ||
@media print { | ||
@import 'print'; | ||
} |