mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
69c5a66169
templates are read or a Hash of template location paths to css output paths. Sass::Plugin.options[:css_location] is ignored when :template_location is a Hash. :template_location will also accept a list of pairs as is commonly returned from Array#zip or Hash#to_a, etc.
9 lines
354 B
CSS
9 lines
354 B
CSS
body { font: Arial; background: blue; }
|
|
|
|
#page { width: 700px; height: 100; }
|
|
#page #header { height: 300px; }
|
|
#page #header h1 { font-size: 50px; color: blue; }
|
|
|
|
#content.user.show #container.top #column.left { width: 100px; }
|
|
#content.user.show #container.top #column.right { width: 600px; }
|
|
#content.user.show #container.bottom { background: brown; }
|