Files
wona.github.com/sass/parts/_post.scss
Shashank Mehta c0b836d6ee Changed theme.
2013-05-14 03:35:35 +05:30

52 lines
1021 B
SCSS

.post{
h1.title, .entry-content{
margin-left: 200px;
@media screen and (max-width: 800px){
margin-left: 0;
}
}
.meta{
position: absolute;
top: 85px;
line-height: 2;
font-size: 0.9em;
color: $color-gray02;
width: 170px;
@media screen and (max-width: 800px){
margin-top: 15px;
position: static;
width: auto;
}
a{
@include link-colors($color-gray02, $color-gray01);
@include transition(0.3s);
}
.date, .tags, .comments{
padding-left: 30px;
position: relative;
&:before{
color: $color-gray03;
font: 1.3em $font-icon;
line-height: 1.6em;
position: absolute;
left: 0;
}
@media screen and (max-width: 800px){
@include inline-block;
margin-right: 30px;
}
}
.date:before{content: "\f073";}
.tags:before{content: "\f02c";}
.comments:before{content: "\f075";}
}
hr{
height: 0;
margin-top: 20px;
margin-bottom: 20px;
border-left: 0;
border-right: 0;
border-top: 1px solid #DDD;
border-bottom: 1px solid #FFF;
}
}