Skip to content

Instantly share code, notes, and snippets.

@dyoder
Created September 8, 2008 18:07
Show Gist options
  • Save dyoder/9497 to your computer and use it in GitHub Desktop.
Save dyoder/9497 to your computer and use it in GitHub Desktop.
module Cassandra
module CSS
# stuff that is pure CSS generation goes here
end
module Hacks
# stuff that encapsulate browser hacks goes here
end
module Grid
# stuff that encapsulates grid layout features here
end
# etc.
class Engine
# we include CSS and browser hacks by default
include CSS, Hacks
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment