Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Commit

Permalink
Commit support for h4, h5, and h6 tags as these are in turn supported…
Browse files Browse the repository at this point in the history
… by rdoc's markup.
  • Loading branch information
DesigningPatterns committed Jun 26, 2008
1 parent 750b9c8 commit c3ebed1
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions lib/hanna/template_files/styles.sass
Expand Up @@ -6,6 +6,7 @@
!light_link = #369
!link = !light_link - 40
!light_text = #666
!dark_blue_text = #0E3062

html, body
:height 100%
Expand Down Expand Up @@ -62,7 +63,7 @@ a
:color = !light_link
&:hover
:color #eee
h1, h2, h3
h1, h2, h3, h4, h5, h6
a
:color = !link

Expand Down Expand Up @@ -182,7 +183,7 @@ div.header
// :max-width 60em
p
:margin-top .5em
h1, h2, h3
h1, h2, h3, h4, h5, h6
:font-family = !title_font
h1
:font-size 2.2em
Expand All @@ -191,12 +192,23 @@ div.header
:padding-bottom .1em
h2
:font-size 1.8em
:color #0E3062
:color !dark_blue_text
:margin .8em 0 .3em 0
h3
:font-size 1.6em
:margin .8em 0 .3em 0
:color = !light_text
h4
:font-size 1.4em
:margin .8em 0 .3em 0
h5
:font-size 1.2em
:margin .8em 0 .3em 0
:color = !dark_blue_text
h6
:font-size 1.0em
:margin .8em 0 .3em 0
:color = !light_text

#description, .method .description
ul
Expand Down Expand Up @@ -238,6 +250,10 @@ div.header
:font = "small-caps 1.2em" !title_font
:color #444
:margin 1em 0 .2em 0
h4
:font = "1.1em" !title_font
:color = !dark_blue_text
:margin 1em 0 .2em 0

.method
:border 1px solid silver
Expand Down

0 comments on commit c3ebed1

Please sign in to comment.