pelican-alchemy/alchemy/static/css/oldstyle.css
Vitaly Potyarkin c8f57215aa Add stylesheet to restore old visual style
By default this stylesheet is not used, because it may break some
Boostwatch themes. User must explicitly enable it via THEME_CSS_OVERRIDES
2019-10-18 16:21:06 +03:00

40 lines
607 B
CSS

/* Restore colors as they were before adding Boostwatch support
* https://github.com/nairobilug/pelican-alchemy/pull/79
*
* Add THEME_CSS_OVERRIDES = ['theme/css/oldstyle.css']
* to your pelicanconf.py to enable this stylesheet */
::selection {
background: #0085a1;
color: #fff;
}
body {
background-color: #f5f5f5;
}
a {
color: #333;
}
a:focus,
a:hover {
color: #0085a1;
}
blockquote {
color: #818a91;
opacity: inherit;
}
.header {
border-bottom: 1px solid rgba(0,0,0,.1)
}
.footer {
border-top: 1px solid rgba(0,0,0,.1)
}
.highlight pre {
border: 1px solid rgba(0,0,0,.1)
}