... | ... |
@@ -1,11 +1,10 @@ |
1 | 1 |
# Require any additional compass plugins here. |
2 |
-#require 'compass-colors' |
|
2 |
+require 'compass-colors' |
|
3 | 3 |
project_type = :stand_alone |
4 | 4 |
# Set this to the root of your project when deployed: |
5 | 5 |
http_path = "/" |
6 | 6 |
css_dir = "site/stylesheets" |
7 |
-sass_dir = "/stylesheets" |
|
8 |
-images_dir = "images" |
|
9 |
- |
|
10 |
-# To enable relative paths to assets via compass helper functions. Uncomment: |
|
11 |
-# relative_assets = true |
|
7 |
+sass_dir = "stylesheets" |
|
8 |
+images_dir = "source/images" |
|
9 |
+images_dir = "source/images/" |
|
10 |
+http_images_path = "/images" |
|
12 | 11 |
\ No newline at end of file |
... | ... |
@@ -3,6 +3,10 @@ |
3 | 3 |
!default_box_shadow_y_offset = 1px |
4 | 4 |
!default_box_shadow_blur_radius = 8px |
5 | 5 |
|
6 |
-=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) |
|
7 |
- +box-shadow(!x_offset, !y_offset, !blur_radius, !color) |
|
8 |
- |
|
9 | 6 |
\ No newline at end of file |
7 |
+=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 = "") |
|
8 |
+ box-shadow= !inset !x_offset !y_offset !blur_radius !color |
|
9 |
+ -webkit-box-shadow= !inset !x_offset !y_offset !blur_radius !color |
|
10 |
+ -moz-box-shadow= !inset !x_offset !y_offset !blur_radius !color |
|
11 |
+ |
|
12 |
+=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) |
|
13 |
+ +box-shadow(!color, !blur_radius, !x_offset, !y_offset, "inset") |
|
10 | 14 |
\ No newline at end of file |