diff options
author | B Mathis <brandon@imathis.com> | 2010-07-26 10:55:53 -0500 |
---|---|---|
committer | B Mathis <brandon@imathis.com> | 2010-07-26 10:55:53 -0500 |
commit | 76b8b8ca450dc09c86d0ad958f7397c3b1bdc36f (patch) | |
tree | 1c017153e507802955569cc88fc985baea3f1c5e /stylesheets/_typography.sass | |
parent | 5951848f724ae5a64d917dced57c328013dc2939 (diff) | |
download | my_new_personal_website-76b8b8ca450dc09c86d0ad958f7397c3b1bdc36f.tar.xz my_new_personal_website-76b8b8ca450dc09c86d0ad958f7397c3b1bdc36f.zip |
fixed rake preview and updated sass to sass3 syntax
Diffstat (limited to 'stylesheets/_typography.sass')
-rw-r--r-- | stylesheets/_typography.sass | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/stylesheets/_typography.sass b/stylesheets/_typography.sass index 7e03bdd2..db67b362 100644 --- a/stylesheets/_typography.sass +++ b/stylesheets/_typography.sass @@ -1,7 +1,7 @@ -!base_font_size = 16px -!base_font_size_small = 13px -!base_font_color = #333 -$default_border_radius = 6px +$base_font_size: 16px +$base_font_size_small: 13px +$base_font_color: #333 +$default_border_radius: 6px +general-typography =heading-font @@ -10,7 +10,7 @@ $default_border_radius = 6px +serif-font body - font-size= !base_font_size + font-size: $base_font_size +serif-font h1,h2,h3,h4,h5,h6 @@ -33,13 +33,13 @@ blockquote color: #ddd cite +sans-font - font-size= !base_font_size - 2px + font-size: $base_font_size - 2px display: block - padding-top= !base_font_size + padding-top: $base_font_size &:before content: "\30FC" padding-right: 2px a color: inherit !important &:hover - color= !link_color !important
\ No newline at end of file + color: $link_color !important
\ No newline at end of file |