Skip to content

Commit

Permalink
Settled Sass compiling differences
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig Freeman committed Feb 4, 2014
2 parents 85b5fad + 8d54909 commit 87e9cc8
Show file tree
Hide file tree
Showing 45 changed files with 153 additions and 868 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
.DS_Store
assets/.sass-cache/
assets/.sass-cache
2 changes: 1 addition & 1 deletion 404.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// This file is part of the Carrington Blueprint Theme for WordPress
//
// Copyright (c) 2008-2013 Crowd Favorite, Ltd. All rights reserved.
// Copyright (c) 2008-2014 Crowd Favorite, Ltd. All rights reserved.
// http://crowdfavorite.com
//
// Released under the GPL license
Expand Down
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This is a WordPress theme boilerplate intended to be your starting point for creating a responsive theme using Carrington Core.

Carrington Blueprint uses several technologies to help you create new themes quickly. It leverages [Crowd Favorite](http://crowdfavorite.com)'s SASSified, 12-column, and responsive [CSSGrid](https://github.com/crowdfavorite/css-grid) and the powerful [Carrington Core](https://github.com/crowdfavorite/wp-carrington-core) template engine. You can find relevant documentation for Carrington Core in a README located in each directory.
Carrington Blueprint uses several technologies to help you create new themes quickly. It leverages [Crowd Favorite](http://crowdfavorite.com)'s Sassified and responsive 12-column [CSSGrid](https://github.com/crowdfavorite/css-grid) and the powerful [Carrington Core](https://github.com/crowdfavorite/wp-carrington-core) template engine. You can find relevant documentation for Carrington Core in a README located in each directory.

---

Expand All @@ -12,12 +12,17 @@ Simply navigate to the `wp-content/themes` directory and clone this project into

---

### Editing

This theme uses [Sass](http://sass-lang.com) and [Compass](http://compass-style.org) for CSS pre-processing. Once both are installed, run `compass watch` from the `assets` directory to compile any changes you make to the Sass files.

---

**Target browser compatibility:**
- Chrome
- Safari
- Firefox
- IE10
- IE9
- IE9+

License: [GPL](http://www.opensource.org/licenses/gpl-license.php)

Expand Down
2 changes: 1 addition & 1 deletion archive.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// This file is part of the Carrington Blueprint Theme for WordPress
//
// Copyright (c) 2008-2013 Crowd Favorite, Ltd. All rights reserved.
// Copyright (c) 2008-2014 Crowd Favorite, Ltd. All rights reserved.
// http://crowdfavorite.com
//
// Released under the GPL license
Expand Down
8 changes: 8 additions & 0 deletions assets/config.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
http_path = "/"
css_dir = "css"
sass_dir = "scss"
images_dir = "img"
javascripts_dir = "js"

output_style = :nested
line_comments = false
Empty file added assets/css/ie78-style.css
Empty file.
12 changes: 12 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
.breakpoint-context {
position: absolute;
top: -999em;
left: -999em;
z-index: 1; }
@media (min-width: 760px) {
.breakpoint-context {
z-index: 2; } }
@media (min-width: 1025px) {
.breakpoint-context {
z-index: 3; } }

/*
* HTML5 Boilerplate
*
Expand Down
Loading

0 comments on commit 87e9cc8

Please sign in to comment.