Files
wahyd4.github.com/sass/base/_layout.scss
T
2013-01-14 21:14:28 +08:00

40 lines
477 B
SCSS

*{
margin: 0;
padding: 0;
}
body{
background: $color-background;
font: 300 14px $font-main;
text-shadow: 0 0 1px transparent;
}
h1{
font-size: 2em;
}
h2{
font-size: 1.6em;
}
h3{
font-size: 1.3em;
}
a{
color: $color-main01;
text-decoration: none;
}
strong{
font-weight: bold;
}
.alignleft{
float: left;
}
.alignright{
float: right;
}
.clearfix{
@include pie-clearfix;
}
.inner{
margin: 0 auto;
position: relative;
width: 1000px;
z-index: 0;
}