style.css 898 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * Copyright (c) 2012-2016 Daniele Bartolini and individual contributors.
  3. * License: https://github.com/taylor001/crown/blob/master/LICENSE
  4. */
  5. body {
  6. font-family: sans-serif;
  7. font-size: 14px;
  8. line-height: 1.6;
  9. color: #444;
  10. margin: 40px auto;
  11. max-width: 650px;
  12. padding: 0 10px;
  13. background-color: #f6f6f6;
  14. }
  15. div.topic {
  16. border: 1px solid #aaa;
  17. background-color: #f9f9f9;
  18. }
  19. cite {
  20. font-family: monospace;
  21. font-style: normal;
  22. background-color: #fbfbfb;
  23. border-radius: 2px;
  24. border-width: 1px;
  25. border-style: solid;
  26. border-color: #dedede;
  27. padding: 1px 7px 1px 7px;
  28. }
  29. blockquote {
  30. margin-left: 0;
  31. margin-top: 0;
  32. margin-bottom: 16px;
  33. padding: 0 1em;
  34. border-left: 0.25em solid #ddd;
  35. }
  36. h1, h2, h3 {
  37. line-height:1.2
  38. }
  39. a {
  40. color: #4078c0;
  41. text-decoration: none;
  42. }
  43. a:hover {
  44. text-decoration: underline;
  45. }
  46. a:visited {
  47. color: #4078c0;
  48. }
  49. a.toc-backref {
  50. color: #4078c0;
  51. }