-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Beginning to covert fonts into relative units instead of absolute units, added some functions, added some mixins, blah blah...
- Loading branch information
atomicpages
authored and
atomicpages
committed
May 20, 2014
1 parent
fd0b4f4
commit 07cf398
Showing
15 changed files
with
135 additions
and
241 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
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 |
---|---|---|
@@ -1,11 +1,16 @@ | ||
// This file is just a placeholder and not actually used. Please rename to _functions.scss | ||
// and write custom functions that you wish to be scoped globally across all flavors (except css) | ||
// This file can be used to override any and all mixins and functions. Please override variables in the project | ||
// directories in _vars.scss in any given flavor (except css). | ||
|
||
// Once file has been renamed to _functions.scss do the following: | ||
// 1. Open _config.scss and scroll to the bottom | ||
// 2. Uncomment @import "functions"; to enable the use of custom code | ||
// 3. Enjoy! | ||
|
||
// @function myFunction() { } | ||
// This file stores all of your global project configuration options | ||
// and will not be wiped out by upgrading skeleton sass. Run the | ||
// setup.sh script from command line or follow the steps below | ||
// to manually configure: | ||
// | ||
// MANUAL CONFIGURATON | ||
// 1. Rename _MYconfig.scss to _[projectname].config.scss | ||
// 2. Rename skeleton_template.scss to skeleton.scss | ||
// 3. Navigate to core and edit _config.scss using your favorite | ||
// text editor. Add the following to the end of _config.scss: | ||
// @import " _[projectname].config.scss"; | ||
// | ||
// HOW TO RUN AUTOMATED SETUP | ||
// 1. Open terminal and issue the following command: | ||
// bin/setup.sh | ||
// 2. Follow prompts from script |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
cwd=${PWD##*/} | ||
|
||
if [ $cwd == "bin" ]; then | ||
if [[ $cwd = "bin" ]]; then | ||
cd ../ | ||
fi | ||
|
||
|
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
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
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
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
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
@import "../../flavors/bourbon/vars"; | ||
@import "../../flavors/bourbon/base"; | ||
@import "../../flavors/bourbon/skeleton"; | ||
@import "../../flavors/bourbon/layout"; |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
@import "../../flavors/compass/vars"; | ||
@import "../../flavors/compass/base"; | ||
@import "../../flavors/compass/skeleton"; | ||
@import "../../flavors/compass/layout"; |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
@import "../../flavors/sass/vars"; | ||
@import "../../flavors/sass/base"; | ||
@import "../../flavors/sass/skeleton"; | ||
@import "../../flavors/sass/layout"; |
This file was deleted.
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
Oops, something went wrong.