diff options
author | Tommy Chen <tommy351@gmail.com> | 2012-06-03 05:24:21 +0200 |
---|---|---|
committer | Tommy Chen <tommy351@gmail.com> | 2012-06-03 05:24:21 +0200 |
commit | 5bae43b46cd5dd399836f8e326ee128373c1a855 (patch) | |
tree | 2dec21fd6ebb05379a63cddfb7656599ab6b8a92 /sass | |
parent | 175edf60a22b7cab43b02ac0897e254dd1ff544c (diff) | |
download | octopress-theme-jeyzu-5bae43b46cd5dd399836f8e326ee128373c1a855.zip octopress-theme-jeyzu-5bae43b46cd5dd399836f8e326ee128373c1a855.tar.gz |
simplify post
Diffstat (limited to 'sass')
-rw-r--r-- | sass/parts/_article.scss | 3 | ||||
-rw-r--r-- | sass/parts/_post.scss | 2 | ||||
-rw-r--r-- | sass/parts/_syntax.scss | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/sass/parts/_article.scss b/sass/parts/_article.scss index 52151ef..91f6273 100644 --- a/sass/parts/_article.scss +++ b/sass/parts/_article.scss @@ -17,7 +17,7 @@ article{ color: $color-gray01; } } - .entry{ + .entry-content{ line-height: 2; text-align: justify; a{ @@ -114,6 +114,7 @@ article{ left: 0; width: 100%; height: 100%; + margin-top: 0; } } } diff --git a/sass/parts/_post.scss b/sass/parts/_post.scss index 1730fb8..fc4bf6d 100644 --- a/sass/parts/_post.scss +++ b/sass/parts/_post.scss @@ -1,5 +1,5 @@ .post{ - h1.title, .entry{ + h1.title, .entry-content{ margin-left: 200px; @media screen and (max-width: 800px){ margin-left: 0; diff --git a/sass/parts/_syntax.scss b/sass/parts/_syntax.scss index 5ad2b14..0a95988 100644 --- a/sass/parts/_syntax.scss +++ b/sass/parts/_syntax.scss @@ -124,7 +124,7 @@ figure.code{ overflow-x: auto; } } -.entry .gist{ +.entry-content .gist{ background: $pre-bg; color: $color-gray01; padding: 30px 15px 5px; |