module Fillers def skin_filler gray1 = "#555" gray2 = "#e5e5e5" gray3 = "#d5d5d5" gray4 = "#c5c5c5" blue = "#6b99bf" border1 = "1px solid #{gray2}" border2 = "2px solid #{gray3}" border3 = "2px solid #{gray4}" <<-SKIN /* Skin Author: #{author_name} Date: #{Date.today.strftime("%d %b, %Y")} Description: =============================================================== Place styles that will affect the look and feel for your site. You should not have to modify reset.css, typography.css, grids.css or application.css if you are using the grids css system. */ body { color: #555; } #container { border-top: #{border1}; border-left: #{border1}; border-right: #{border2}; border-bottom: #{border3}; margin: 2.30em auto; padding: 0.77em; width: 73.85em; } #pagetitle { border-bottom: 2px solid #{gray2}; padding-bottom: 0.385em; } #pagetitle span { color: #{blue}; } .clearfix { overflow: hidden; _overflow: visible; zoom: 1; } pre { background-color: #{gray2}; margin-bottom: 0.77em; overflow: auto; padding: 0.77em; } table { background-color: #efefef; border-collapse: collapse; border-color: #999; width: 100%; } tr, td, th { border-color: #ccc; } tr:nth-child(even) { background-color: #f5f5f5; } th { background-color: #444; color: #fff; } SKIN end def index_filler <<-INDEX
Place your plugin description here.
Place any options for your plugin here.
Place any examples for your plugin here.