summaryrefslogtreecommitdiffstats
path: root/sass/parts/_archive.scss
diff options
context:
space:
mode:
authorSkyArrow <tommy351@gmail.com>2012-01-24 18:19:10 +0100
committerSkyArrow <tommy351@gmail.com>2012-01-24 18:19:10 +0100
commitcaeed23e766705eecae7ef17a534213c0f87fdd6 (patch)
treee002f70de3b4a3c31d798f36af0b8e0598b185f1 /sass/parts/_archive.scss
parent0a7ff46da7d7352373dc74c2839233e34e232aec (diff)
downloadoctopress-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.scss65
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