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
main
Vitaly Potyarkin 2019-10-18 16:21:06 +03:00
parent a3120f0534
commit c8f57215aa
1 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,40 @@
/* 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)
}