summaryrefslogtreecommitdiffstats
path: root/sass/base
diff options
context:
space:
mode:
authorSkyArrow <tommy351@gmail.com>2012-01-24 14:53:22 +0100
committerSkyArrow <tommy351@gmail.com>2012-01-24 14:53:22 +0100
commit1c574d24b7fdd482499fa9553c19342b6a4d391e (patch)
tree3381ce235c72044d6fa76243e9d6948c737a6e4f /sass/base
downloadoctopress-theme-jeyzu-1c574d24b7fdd482499fa9553c19342b6a4d391e.zip
octopress-theme-jeyzu-1c574d24b7fdd482499fa9553c19342b6a4d391e.tar.gz
created
Diffstat (limited to 'sass/base')
-rw-r--r--sass/base/_color.scss3
-rw-r--r--sass/base/_font.scss10
-rw-r--r--sass/base/_layout.scss51
3 files changed, 64 insertions, 0 deletions
diff --git a/sass/base/_color.scss b/sass/base/_color.scss
new file mode 100644
index 0000000..38eb870
--- /dev/null
+++ b/sass/base/_color.scss
@@ -0,0 +1,3 @@
+$black: rgba(0,0,0,0.5);
+$main: #258fb8;
+$shadow: rgba(0,0,0,0.3); \ No newline at end of file
diff --git a/sass/base/_font.scss b/sass/base/_font.scss
new file mode 100644
index 0000000..89fd7e4
--- /dev/null
+++ b/sass/base/_font.scss
@@ -0,0 +1,10 @@
+$default: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
+$symbol: "WebSymbolsRegular", sans-serif;
+$code-font: "Consolas",Monaco,Courier New,Courier,monospace;
+
+@font-face {
+ font-family: 'WebSymbolsRegular';
+ src: image-url('fonts/websymbols-regular-webfont.ttf');
+ font-weight: normal;
+ font-style: normal;
+} \ No newline at end of file
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