Sha256: 12f846f5027d71081082a1854c688c934cfdbdebb3993b548d5abbdbf0ed76a9
Contents?: true
Size: 1.74 KB
Versions: 2
Compression:
Stored size: 1.74 KB
Contents
/* -------------------------------------------------------------------------------- * Elements - Rails Starting Base * * typography.css.scss * * Defines some of the base styles for the elements used in layout * * @author : Jais Cheema * -----------------------------------------------------------------------------------*/ h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; } h1 { font-size: 3em; } h2 { font-size: 2em;} h3 { font-size: 1.5em;} h4 { font-size: 1.2em;} h5 { font-size: 1em;} h6 { font-size: 1em; } /** The Colors to be used everywhere */ $body_background_color: white; $text_color: #999; $link_color: #ff9900; $link_hover_color : #ddd; $nav_color: #666666; /** End Colors */ body { font-family: Helevetica Neue, Helevetica, Verdana, Georgia, sans-serif; color: $text_color; background-color: $body_background_color; header { nav { color: $nav_color; ul { font-size:17px; li { a { color: $link_color; text-decoration:none; } &.active a { color: $link_hover_color; } a:hover { color: $link_hover_color; } } } } } .breadcrumbs { ul { font-size:12px; color:#9b9b9b; } a { text-decoration:none; color:#454545; &:hover { color:#35acc5; } } } .page_title{ h1 { font-size:46px; font-style:bold; letter-spacing:-1px; } p { font-size:24px; } &.left { h1 { font-size:38px; letter-spacing:1px; } } } .footer { .container { section { h3 { font-size:20px; } a { color: $link_color; font-size:14px; text-decoration:none; &:hover { color: $link_hover_color; } } } .copyright { font-size:15px; } } } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
elements-0.2.1 | app/assets/stylesheets/elements/typography.css.scss |
elements-0.2.0 | app/assets/stylesheets/elements/typography.css.scss |