diff options
author | elijah <elijah@riseup.net> | 2015-07-23 14:17:51 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2015-07-23 14:17:51 -0700 |
commit | dd592044bba259a9d4922690d9d146d542165f30 (patch) | |
tree | 2627074baf18dd282781fd40273da9184dae9336 /config/customization.example/stylesheets/tail.scss | |
parent | 002e764c4b8f03f472d7d6d3473289653dd897a5 (diff) |
added customization example
Diffstat (limited to 'config/customization.example/stylesheets/tail.scss')
-rw-r--r-- | config/customization.example/stylesheets/tail.scss | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/config/customization.example/stylesheets/tail.scss b/config/customization.example/stylesheets/tail.scss new file mode 100644 index 0000000..4c51a34 --- /dev/null +++ b/config/customization.example/stylesheets/tail.scss @@ -0,0 +1,43 @@ +$custom-color: #66bbaa; + +a { + color: $custom-color; +} + +// +// MASTHEAD +// + +#masthead { + background-color: $custom-color; + border-bottom: none; + + // make the masthead clickable by replacing the + // site name link with the masthead image: + .title { + padding: 0px; + .sitename a { + display: block; + background: url(/img/masthead.png) 0 0 no-repeat; + font-size: 0px; + height: 100px; + background-size: auto 100px; + } + } +} + +// make the home page masthead slightly larger +body.home #masthead { + .sitename a { + height: 150px; + background-size: auto 150px; + } +} + +// +// FOOTER +// + +#footer .links { + background-color: $custom-color; +}
\ No newline at end of file |