aboutsummaryrefslogtreecommitdiff
path: root/stylesheets/library
diff options
context:
space:
mode:
authorB Mathis <brandon@imathis.com>2009-11-21 15:41:38 -0600
committerB Mathis <brandon@imathis.com>2009-11-21 15:41:38 -0600
commitd3313c836dc7f2f620c0b207df5ae97f087c56de (patch)
treea9f03f7bc2e384e5c64b1ed0a4db6db54781359b /stylesheets/library
parent6f10642bdebfef726318120b1f2eab26df022728 (diff)
downloadmy_new_personal_website-d3313c836dc7f2f620c0b207df5ae97f087c56de.tar.xz
my_new_personal_website-d3313c836dc7f2f620c0b207df5ae97f087c56de.zip
updated layout, page styles, fixed config paths for assets
Diffstat (limited to 'stylesheets/library')
-rw-r--r--stylesheets/library/_easy_box_shadow.sass10
1 files changed, 7 insertions, 3 deletions
diff --git a/stylesheets/library/_easy_box_shadow.sass b/stylesheets/library/_easy_box_shadow.sass
index 437f187a..b8b9fcef 100644
--- a/stylesheets/library/_easy_box_shadow.sass
+++ b/stylesheets/library/_easy_box_shadow.sass
@@ -3,6 +3,10 @@
!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
+=box-shadow(!color = !default_box_shadow_color, !blur_radius = !default_box_shadow_blur_radius, !x_offset = !default_box_shadow_x_offset, !y_offset = !default_box_shadow_y_offset, !inset = "")
+ box-shadow= !inset !x_offset !y_offset !blur_radius !color
+ -webkit-box-shadow= !inset !x_offset !y_offset !blur_radius !color
+ -moz-box-shadow= !inset !x_offset !y_offset !blur_radius !color
+
+=inset-box-shadow(!color = !default_box_shadow_color, !blur_radius = !default_box_shadow_blur_radius, !x_offset = !default_box_shadow_x_offset, !y_offset = !default_box_shadow_y_offset)
+ +box-shadow(!color, !blur_radius, !x_offset, !y_offset, "inset") \ No newline at end of file