style.css 778 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * Copyright (c) 2012-2016 Daniele Bartolini and individual contributors.
  3. * License: https://github.com/taylor001/crown/blob/master/LICENSE
  4. */
  5. @import url(html4css1.css);
  6. .document {
  7. font-family: sans-serif;
  8. font-size: 11pt;
  9. line-height: 145%;
  10. color: #1f1f1f;
  11. }
  12. div.topic {
  13. border: 1px solid #aaa;
  14. background-color: #f9f9f9;
  15. }
  16. tt.literal {
  17. background-color: #fafafa;
  18. border-radius: 2px;
  19. border-width: 1px;
  20. border-style: solid;
  21. border-color: #e7e7e7;
  22. padding: 1px 7px 1px 7px;
  23. }
  24. a {
  25. color: #4078c0;
  26. text-decoration: none;
  27. }
  28. a:hover {
  29. text-decoration: underline;
  30. }
  31. a:visited {
  32. color: #4078c0;
  33. }
  34. a.toc-backref {
  35. color: #4078c0;
  36. }
  37. blockquote {
  38. margin-left: 0;
  39. margin-top: 0;
  40. margin-bottom: 16px;
  41. padding: 0 1em;
  42. border-left: 0.25em solid #ddd;
  43. }