Method: ReportBuilder::Builder::Html#basic_css
- Defined in:
- lib/reportbuilder/builder/html.rb
#basic_css ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/reportbuilder/builder/html.rb', line 21 def basic_css <<-HERE <style> body { margin:0; padding:1em; } table { border-collapse: collapse; } table td { border: 1px solid black; } .section { margin:0.5em; } </style> HERE end |