content.css 968 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /**
  2. * Copyright (c) Tiny Technologies, Inc. All rights reserved.
  3. * Licensed under the LGPL or a commercial license.
  4. * For LGPL see License.txt in the project root for license information.
  5. * For commercial licenses see https://www.tiny.cloud/
  6. */
  7. body {
  8. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  9. line-height: 1.4;
  10. margin: 1rem auto;
  11. max-width: 900px;
  12. }
  13. table {
  14. border-collapse: collapse;
  15. }
  16. table th,
  17. table td {
  18. border: 1px solid #ccc;
  19. padding: .4rem;
  20. }
  21. blockquote {
  22. border-left: 2px solid #ccc;
  23. margin-left: 1.5rem;
  24. padding-left: 1rem;
  25. }
  26. figure {
  27. display: table;
  28. margin: 1rem auto;
  29. }
  30. figure figcaption {
  31. color: #999;
  32. display: block;
  33. margin-top: .25rem;
  34. text-align: center;
  35. }
  36. hr {
  37. border-color: #ccc;
  38. border-style: solid;
  39. border-width: 1px 0 0 0;
  40. }
  41. code {
  42. background-color: #e8e8e8;
  43. border-radius: 3px;
  44. padding: .1rem .2rem;
  45. }