style.css 992 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. margin: 0;
  19. }
  20. cite {
  21. font-family: monospace;
  22. font-style: normal;
  23. background-color: #fbfbfb;
  24. border-radius: 2px;
  25. border-width: 1px;
  26. border-style: solid;
  27. border-color: #dedede;
  28. padding: 1px 7px 1px 7px;
  29. }
  30. blockquote {
  31. margin-left: 0;
  32. margin-top: 0;
  33. margin-bottom: 16px;
  34. padding: 0 1em;
  35. border-left: 0.25em solid #ddd;
  36. }
  37. pre.code {
  38. margin-left: 0;
  39. margin-right: 0;
  40. padding: 16px;
  41. overflow: auto;
  42. }
  43. h1, h2, h3 {
  44. line-height:1.2
  45. }
  46. a {
  47. color: #4078c0;
  48. text-decoration: none;
  49. }
  50. a:hover {
  51. text-decoration: underline;
  52. }
  53. a:visited {
  54. color: #4078c0;
  55. }
  56. a.toc-backref {
  57. color: #4078c0;
  58. }