Browse Source

updated layout, page styles, fixed config paths for assets

unreleased_contents
B Mathis 15 years ago
parent
commit
d3313c836d
  1. 11
      config.rb
  2. 2
      stylesheets/_theme.sass
  3. 10
      stylesheets/library/_easy_box_shadow.sass
  4. 2
      stylesheets/partials/_page.sass

11
config.rb

@ -1,11 +1,10 @@
# Require any additional compass plugins here.
#require 'compass-colors'
require 'compass-colors'
project_type = :stand_alone
# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "site/stylesheets"
sass_dir = "/stylesheets"
images_dir = "images"
# To enable relative paths to assets via compass helper functions. Uncomment:
# relative_assets = true
sass_dir = "stylesheets"
images_dir = "source/images"
images_dir = "source/images/"
http_images_path = "/images"

2
stylesheets/_theme.sass

@ -1,5 +1,5 @@
// Link Colors
!link_color = #165B94
!link_color = lighten(#165B94, .30)
// Main Section Colors
!body_color = #333

10
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)
=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")

2
stylesheets/partials/_page.sass

@ -8,7 +8,7 @@
top: 25px
bottom: 25px
background-color= !blog_bg
+easy-box-shadow(#ccc)
+box-shadow(#ccc)
border:
left= "1px solid" !page_border_sides
right= "1px solid" !page_border_sides

Loading…
Cancel
Save