aboutsummaryrefslogtreecommitdiff
path: root/source/stylesheets/library
diff options
context:
space:
mode:
authorB Mathis <brandon@imathis.com>2009-10-30 00:31:02 -0500
committerB Mathis <brandon@imathis.com>2009-10-30 00:31:02 -0500
commit5c736f5eb03d7b51defe27ac027124557c4c7a3b (patch)
treef2ad356f733a6b359360422209cba95d8197c817 /source/stylesheets/library
parent80a70068ed7fda704c769e123c77bb8c78c7d9a3 (diff)
downloadmy_new_personal_website-5c736f5eb03d7b51defe27ac027124557c4c7a3b.tar.xz
my_new_personal_website-5c736f5eb03d7b51defe27ac027124557c4c7a3b.zip
added twitter feed to sidebar, moved to compass-edge gem
Diffstat (limited to 'source/stylesheets/library')
-rw-r--r--source/stylesheets/library/_box_shadow.sass10
-rw-r--r--source/stylesheets/library/_easy_box_shadow.sass8
2 files changed, 8 insertions, 10 deletions
diff --git a/source/stylesheets/library/_box_shadow.sass b/source/stylesheets/library/_box_shadow.sass
deleted file mode 100644
index 728a8942..00000000
--- a/source/stylesheets/library/_box_shadow.sass
+++ /dev/null
@@ -1,10 +0,0 @@
-!default_box_shadow_color = #333
-!default_box_shadow_x_offset = 1px
-!default_box_shadow_y_offset = 1px
-!default_box_shadow_blur_radius = 8px
-
-=box-shadow(!color = !default_box_shadow_color, !x_offset = !default_box_shadow_x_offset, !y_offset = !default_box_shadow_y_offset, !blur_radius = !default_box_shadow_blur_radius)
- box-shadow= !x_offset !y_offset !blur_radius !color
- -webkit-box-shadow= !x_offset !y_offset !blur_radius !color
- -moz-box-shadow= !x_offset !y_offset !blur_radius !color
- \ No newline at end of file
diff --git a/source/stylesheets/library/_easy_box_shadow.sass b/source/stylesheets/library/_easy_box_shadow.sass
new file mode 100644
index 00000000..437f187a
--- /dev/null
+++ b/source/stylesheets/library/_easy_box_shadow.sass
@@ -0,0 +1,8 @@
+!default_box_shadow_color = #333
+!default_box_shadow_x_offset = 1px
+!default_box_shadow_y_offset = 1px
+!default_box_shadow_blur_radius = 8px
+
+=easy-box-shadow(!color = !default_box_shadow_color, !x_offset = !default_box_shadow_x_offset, !y_offset = !default_box_shadow_y_offset, !blur_radius = !default_box_shadow_blur_radius)
+ +box-shadow(!x_offset, !y_offset, !blur_radius, !color)
+ \ No newline at end of file