diff options
author | Tommy Chen <tommy351@gmail.com> | 2012-06-02 05:29:26 +0200 |
---|---|---|
committer | Tommy Chen <tommy351@gmail.com> | 2012-06-02 05:29:26 +0200 |
commit | f94661134e80e56cfbdcb2fa5e2b70a43b7ade50 (patch) | |
tree | c393b5e9bcca897474fe7da0f5e7f96ed430343a /sass/parts/_article.scss | |
parent | af4cdaa2884a86235078110fc2bb445bb1ebef21 (diff) | |
download | octopress-theme-jeyzu-f94661134e80e56cfbdcb2fa5e2b70a43b7ade50.zip octopress-theme-jeyzu-f94661134e80e56cfbdcb2fa5e2b70a43b7ade50.tar.gz |
add color prefix
Diffstat (limited to 'sass/parts/_article.scss')
-rw-r--r-- | sass/parts/_article.scss | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sass/parts/_article.scss b/sass/parts/_article.scss index ba14807..1d9f0bd 100644 --- a/sass/parts/_article.scss +++ b/sass/parts/_article.scss @@ -1,6 +1,6 @@ article{ - border-bottom: 1px solid $gray04; - border-top: 1px solid $gray05; + border-bottom: 1px solid $color-gray04; + border-top: 1px solid $color-gray05; padding: 30px 0; position: relative; @media screen and (max-width: 800px){ @@ -14,7 +14,7 @@ article{ line-height: 35px; margin-bottom: 20px; a{ - color: $gray01; + color: $color-gray01; } } .entry{ @@ -51,13 +51,13 @@ article{ } h2{ font-weight: 300; - border-bottom: 1px solid $gray04; + border-bottom: 1px solid $color-gray04; position: relative; &:before{ content: ""; position: absolute; bottom: -2px; - border-bottom: 1px solid $gray05; + border-bottom: 1px solid $color-gray05; width: 100%; } } @@ -66,8 +66,8 @@ article{ height: auto; } blockquote{ - background: $gray04; - border-left: 5px solid $gray03; + background: $color-gray04; + border-left: 5px solid $color-gray03; padding: 15px 20px; margin-top: 10px; & > p:first-of-type{ @@ -78,12 +78,12 @@ article{ border: none; } table{ - background: $gray04; - border: 1px solid $gray03; + background: $color-gray04; + border: 1px solid $color-gray03; border-spacing: 0; margin-top: 10px; th{ - background: $gray03; + background: $color-gray03; padding: 0 15px; } td{ @@ -99,7 +99,7 @@ article{ background: image-url('caption.png') 0 4px no-repeat; display: block; font-size: $meta-size; - color: $gray02; + color: $color-gray02; padding-left: 25px; } .video-container{ |