A bit of information about the contents of this folder.
gem install sass # This may need to be run as root
The main Sass file (main.scss
) imports the other files as needed via @import
rules. Partial Sass files begin with an underscore, and reside in the paritals/
folder - these files do not generate a CSS counterpart. Highly-reusable classes, such as buttons, are in the partials/components/
folder.
Vendor files are in the vendor/
folder.
All Sass files are authored in the .scss
syntax.
partials/
components/
_buttons
: The button styles_colors
: Simple style classes for single colors
fonts/
- The
@font-face
rules for various typefaces
- The
_all
: A shortcut for importing all the files in the folder_footer
: The styles for the site footer_forms
: Form-related styles_header
: Styles for the site header, logo, and nav_intro
: Styles for the tagline on the homepage_layout
: Main content area and asides_matches
: Styles the matches_mixins
: General-use mixins (e.g. CSS triangles)_reset
: A barebones reset_schedule
: Styles for the user schedule_typography
: Base typography placeholders_variables
: Variable definitions
vendor/
- A custom build of the ZURB foundation 3 framework
- v1.1.2 of Normalize.css (renamed with a
.scss
extension)
main
: The main Sass file
-
Run the
sass
Grunt task:grunt sass