diff options
author | Tommy Chen <tommy351@gmail.com> | 2012-06-03 04:54:48 +0200 |
---|---|---|
committer | Tommy Chen <tommy351@gmail.com> | 2012-06-03 04:54:56 +0200 |
commit | e160288412cccf7dcc784dcc64cf32451d970cbb (patch) | |
tree | a457fd21559f4c571007bd39fb0642e9844c4cf2 /sass/base | |
parent | 315d340cd34aaa7a83681a1046e651b455dc28b0 (diff) | |
download | octopress-theme-jeyzu-e160288412cccf7dcc784dcc64cf32451d970cbb.zip octopress-theme-jeyzu-e160288412cccf7dcc784dcc64cf32451d970cbb.tar.gz |
change font variables
Diffstat (limited to 'sass/base')
-rw-r--r-- | sass/base/_font.scss | 6 | ||||
-rw-r--r-- | sass/base/_layout.scss | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/sass/base/_font.scss b/sass/base/_font.scss index 7f61fb6..ac8b2ae 100644 --- a/sass/base/_font.scss +++ b/sass/base/_font.scss @@ -1,4 +1,2 @@ -$default: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; -$monospace: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace; - -$meta-size: 0.9em;
\ No newline at end of file +$font-default: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif; +$font-mono: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace;
\ No newline at end of file diff --git a/sass/base/_layout.scss b/sass/base/_layout.scss index 4ac1d55..4c774f5 100644 --- a/sass/base/_layout.scss +++ b/sass/base/_layout.scss @@ -5,7 +5,7 @@ $max-width: 1000px; padding: 0; } body{ - font-family: $default; + font-family: $font-default; font-weight: 300; font-size: 14px; background: $color-background; |