diff options
Diffstat (limited to 'sass/base')
-rw-r--r-- | sass/base/_color.scss | 9 | ||||
-rw-r--r-- | sass/base/_font.scss | 10 | ||||
-rw-r--r-- | sass/base/_layout.scss | 5 |
3 files changed, 10 insertions, 14 deletions
diff --git a/sass/base/_color.scss b/sass/base/_color.scss index 38eb870..4925193 100644 --- a/sass/base/_color.scss +++ b/sass/base/_color.scss @@ -1,3 +1,6 @@ -$black: rgba(0,0,0,0.5); -$main: #258fb8; -$shadow: rgba(0,0,0,0.3);
\ No newline at end of file +$background: #eee; +$main: #FF9500; +$border: #ddd; +$light-shadow: #fff; +$font-main: #666; +$font-meta: #999;
\ No newline at end of file diff --git a/sass/base/_font.scss b/sass/base/_font.scss index 89fd7e4..44f829f 100644 --- a/sass/base/_font.scss +++ b/sass/base/_font.scss @@ -1,10 +1,2 @@ $default: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; -$symbol: "WebSymbolsRegular", sans-serif; -$code-font: "Consolas",Monaco,Courier New,Courier,monospace; - -@font-face { - font-family: 'WebSymbolsRegular'; - src: image-url('fonts/websymbols-regular-webfont.ttf'); - font-weight: normal; - font-style: normal; -}
\ No newline at end of file +$monospace: "Consolas", Monaco, Courier New, Courier, monospace;
\ No newline at end of file diff --git a/sass/base/_layout.scss b/sass/base/_layout.scss index 60d27a7..10d0d10 100644 --- a/sass/base/_layout.scss +++ b/sass/base/_layout.scss @@ -1,4 +1,4 @@ -$max-width: 1200px; +$max-width: 1000px; @mixin square($property){ width: $property; @@ -20,7 +20,8 @@ body{ font-family: $default; font-weight: 300; font-size: 14px; - background: #333 image-url('random_grey_variations.png'); + background: $background; + color: $font-main; } h1{ font-size: 2em; |