Heuzef - Les notes excentriques d'un bidouilleur.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

49 lines
687 B

  1. /* Restore colors as they were before adding Boostwatch support
  2. * https://github.com/nairobilug/pelican-alchemy/pull/79
  3. *
  4. * Add THEME_CSS_OVERRIDES = ['theme/css/oldstyle.css']
  5. * to your pelicanconf.py to enable this stylesheet */
  6. ::selection {
  7. background: #0085a1;
  8. color: #fff;
  9. }
  10. body {
  11. background-color: #f5f5f5;
  12. }
  13. a {
  14. color: #333;
  15. }
  16. a:focus,
  17. a:hover {
  18. color: #0085a1;
  19. }
  20. blockquote {
  21. color: #818a91;
  22. opacity: inherit;
  23. }
  24. .header {
  25. border-bottom: 1px solid rgba(0,0,0,.1)
  26. }
  27. .main {
  28. background-color: #fff;
  29. }
  30. .footer {
  31. border-top: 1px solid rgba(0,0,0,.1)
  32. }
  33. .highlight pre {
  34. border: 1px solid rgba(0,0,0,.1)
  35. }
  36. .pagination .page-link {
  37. color: #333;
  38. }