diff options
author | SkyArrow <tommy351@gmail.com> | 2012-01-24 14:53:22 +0100 |
---|---|---|
committer | SkyArrow <tommy351@gmail.com> | 2012-01-24 14:53:22 +0100 |
commit | 1c574d24b7fdd482499fa9553c19342b6a4d391e (patch) | |
tree | 3381ce235c72044d6fa76243e9d6948c737a6e4f /sass/base/_layout.scss | |
download | octopress-theme-jeyzu-1c574d24b7fdd482499fa9553c19342b6a4d391e.zip octopress-theme-jeyzu-1c574d24b7fdd482499fa9553c19342b6a4d391e.tar.gz |
created
Diffstat (limited to 'sass/base/_layout.scss')
-rw-r--r-- | sass/base/_layout.scss | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/sass/base/_layout.scss b/sass/base/_layout.scss new file mode 100644 index 0000000..60d27a7 --- /dev/null +++ b/sass/base/_layout.scss @@ -0,0 +1,51 @@ +$max-width: 1200px; + +@mixin square($property){ + width: $property; + height: $property; +} +@mixin user-select($select){ + -moz-user-select: $select; + -khtml-user-select: $select; + -webkit-user-select: $select; + -o-user-select: $select; + user-select: $select; +} + +*{ + margin: 0; + padding: 0; +} +body{ + font-family: $default; + font-weight: 300; + font-size: 14px; + background: #333 image-url('random_grey_variations.png'); +} +h1{ + font-size: 2em; +} +h2{ + font-size: 1.5em; +} +h3{ + font-size: 1.3em; +} +a{ + text-decoration: none; + outline-width: 0; + color: $main; +} +.left{ + float: left; +} +.right{ + float: right; +} +.clear{ + clear: both; +} +.inner{ + width: $max-width; + margin: 0 auto; +}
\ No newline at end of file |