diff options
author | SkyArrow <tommy351@gmail.com> | 2012-01-24 18:19:10 +0100 |
---|---|---|
committer | SkyArrow <tommy351@gmail.com> | 2012-01-24 18:19:10 +0100 |
commit | caeed23e766705eecae7ef17a534213c0f87fdd6 (patch) | |
tree | e002f70de3b4a3c31d798f36af0b8e0598b185f1 /sass/parts/_archive.scss | |
parent | 0a7ff46da7d7352373dc74c2839233e34e232aec (diff) | |
download | octopress-theme-jeyzu-caeed23e766705eecae7ef17a534213c0f87fdd6.zip octopress-theme-jeyzu-caeed23e766705eecae7ef17a534213c0f87fdd6.tar.gz |
archive, category
Diffstat (limited to 'sass/parts/_archive.scss')
-rw-r--r-- | sass/parts/_archive.scss | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/sass/parts/_archive.scss b/sass/parts/_archive.scss new file mode 100644 index 0000000..ad96dc2 --- /dev/null +++ b/sass/parts/_archive.scss @@ -0,0 +1,65 @@ +section.archive{ + position: relative; + &:first-of-type{ + border-top: 1px solid $light-shadow; + article.archive{ + border-top: none; + } + h1.archive-title{ + border-top: none; + &:before{ + border-top: none; + } + } + } + &:last-of-type{ + border-bottom: 1px solid $border; + article.archive{ + border-bottom: none; + } + } + h1.archive-title{ + font-size: 25px; + font-weight: 300; + line-height: 35px; + width: 200px; + position: absolute; + top: 0; + padding-top: 30px; + border-top: 1px solid #fff; + &:before{ + content: ""; + position: absolute; + top: -2px; + width: 100%; + border-top: 1px solid #ddd; + } + } + article.archive{ + margin-left: 200px; + .meta{ + color: $font-meta; + span{ + margin-right: 30px; + padding-left: 30px; + display: inline-block; + } + a{ + color: $font-meta; + @include transition(0.3s); + &:hover{ + color: $font-main; + } + } + .date{ + background: image-url('date.png') 0 center no-repeat; + } + .tags{ + background: image-url('tags.png') 0 center no-repeat; + } + .comments{ + background: image-url('comments.png') 0 center no-repeat; + } + } + } +}
\ No newline at end of file |