diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2013-06-23 14:46:45 +0200 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2013-06-23 14:46:45 +0200 |
commit | 844975b53233b4697d1385548c1295ce18a7be72 (patch) | |
tree | 94599bf9859879f9bce5d410c38f39e6543f4af5 /lib | |
parent | 9fb2fd9fa3ba4b92a440f271adbb9584b236c34e (diff) | |
download | coderay-844975b53233b4697d1385548c1295ce18a7be72.tar.gz |
whitespace
Diffstat (limited to 'lib')
-rw-r--r-- | lib/coderay/styles/alpha.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/coderay/styles/alpha.rb b/lib/coderay/styles/alpha.rb index b05ae53..ff85ecc 100644 --- a/lib/coderay/styles/alpha.rb +++ b/lib/coderay/styles/alpha.rb @@ -3,14 +3,14 @@ module Styles # A colorful theme using CSS 3 colors (with alpha channel). class Alpha < Style - + register_for :alpha - + code_background = 'hsl(0,0%,95%)' numbers_background = 'hsl(180,65%,90%)' border_color = 'silver' normal_color = 'black' - + CSS_MAIN_STYLES = <<-MAIN # :nodoc: .CodeRay { background-color: #{code_background}; @@ -145,8 +145,8 @@ table.CodeRay td { padding: 2px 4px; vertical-align: top; } .change .change { color: #88f } .head .head { color: #f4f } TOKENS - + end - + end end |