-
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.
More updates and added upgrade script
- Loading branch information
atomicpages
authored and
atomicpages
committed
May 27, 2014
1 parent
04cc02a
commit 3d22141
Showing
7 changed files
with
82 additions
and
116 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
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,50 +1,51 @@ | ||
// GLOBAL VARIABLES - include your variables here or alter the predefined vars | ||
// See skeleton file for copyright info | ||
// Changes to these variables will alter ALL flavors EXCEPT css. If you wish to override for any given flavor, please edit the vars partial in that flavor. | ||
// GLOBAL VARIABLES - include your variables here or alter the | ||
// predefined vars. | ||
// Changes to these variables will alter ALL flavors EXCEPT css. | ||
// If you wish to override for any given flavor, please edit the vars | ||
// partial in that flavor. | ||
|
||
// background vars | ||
$background-color: #fff; // default background information | ||
|
||
// font vars | ||
$use-rem: true; // use rem as default unit? | ||
$use-em: false; // use em as default unit? | ||
$use-percent: false; // use percentage as default unit? | ||
$use-px-fallback: true; // allow for pixel fall back | ||
$use-global-border-box: true; // use global border box? | ||
|
||
$font-size: 14px; // default font size. Change here will adjust sizes across the board. | ||
$font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; // default fonts | ||
$font-color: #444; // default font color | ||
$background-color: #fff !global; // default background information | ||
|
||
// FONTS | ||
$use-rem: true !global; // use rem as default unit? | ||
$use-em: false !global; // use em as default unit? | ||
$use-percent: false !global; // use percentage as default unit? | ||
$use-px-fallback: true !global; // allow for pixel fall back | ||
$use-global-border-box: true !global; // use global border box? | ||
|
||
// Font size and families | ||
$font-size: 14px !global; // default font size. Change here will adjust sizes across the board. | ||
$font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif !global; // default fonts | ||
$heading-family: "Georgia", "Times New Roman", serif !global; // default heading (h1-h6) font | ||
$font-color: #444 !global; // default font color | ||
$heading-color: #181818 !global; // default heading (h1-h6) color | ||
|
||
// form vars | ||
$form-font: $font-family; // default font font | ||
|
||
// link vars | ||
$link-color: #333; // default link INERT color | ||
$link-hover: #000; // default link HOVER color | ||
$link-decoration: underline; // default link decoration | ||
|
||
// heading vars | ||
$heading-family: "Georgia", "Times New Roman", serif; // default heading font | ||
$heading-color: #181818; // default heading color | ||
$form-font: $font-family !global; // default form font | ||
|
||
// grid variables | ||
$base-width: 960px; // change this to alter the overall width of the grid | ||
// LINKS | ||
$link-color: #333 !global; // default link color | ||
$link-hover: #000 !global; // default link color on :hover | ||
$link-decoration: underline !global; // default link decoration | ||
|
||
$base-col-width: 40px; // change this the alter the grid calculation, see _mixins file for more details | ||
$base-gutter-width: 20px; // calculation has changed, this is mainly here for consistency with 960.gs | ||
$isFluid: false; // want a fluid grid by default? | ||
// GRID | ||
$is-fluid: false !global; // Change to true to enable the fluid grid | ||
$base-width: 960px !global; // The overall width of the grid | ||
$base-col-width: 40px !global; // The width of each columns | ||
$base-gutter-width: 20px !global; // The space between columns | ||
$base-col-count: 16 !global; // The number of columns | ||
|
||
// ------ CHANGE MAY CAUSE UNDESIRED RESULTS | ||
$base-col-count: 16; // number of cols to generate | ||
$base-font-size: 10px; | ||
$base-font-size: 10px !global; // the font size in the html element | ||
|
||
// media query dimensions | ||
$tablet-width: 768px; | ||
$mobile-portrait-width: 300px; | ||
$mobile-landscape-width: 420px; | ||
$tablet-width: 768px !global; // the tablet width media query | ||
$mobile-portrait-width: 300px !global; // the mobile portrait media query | ||
$mobile-landscape-width: 420px !global; // the mobile landscape media query | ||
|
||
// ------ IMPORTS. DO NOT CHANGE | ||
@import "dependencies"; | ||
@import "mixins"; | ||
// @import "_MYconfig.scss"; | ||
@import "dependencies" !global; | ||
@import "functions" !global; | ||
@import "mixins" !global; | ||
// @import "_MYconfig.scss" !global; |
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