module Compass::Configuration::Defaults

Public Instance Methods

default_grid() click to toggle source
# File lib/resgrid.rb, line 22
def default_grid
    {
        :measure => :px,
        :columns => 12,
        :type => :static,
        :width => "100%",
        :min => nil,
        :max => nil,
    }
end
default_resolutions() click to toggle source
# File lib/resgrid.rb, line 33
def default_resolutions
    {
        :tiny => { :max => 480, :type => :fluid },
        :small => { :min => 481, :max => 767, :type => :fluid },
        :medium => { :min => 768, :max => 979, :width => 740 },
        :large => { :min => 980, :max => 1199, :width => 960 },
        :huge => { :min => 1200, :width => 1170 }
    }
end