content.css 943 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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;
  11. }
  12. table {
  13. border-collapse: collapse;
  14. }
  15. table th,
  16. table td {
  17. border: 1px solid #ccc;
  18. padding: .4rem;
  19. }
  20. blockquote {
  21. border-left: 2px solid #ccc;
  22. margin-left: 1.5rem;
  23. padding-left: 1rem;
  24. }
  25. figure {
  26. display: table;
  27. margin: 1rem auto;
  28. }
  29. figure figcaption {
  30. color: #999;
  31. display: block;
  32. margin-top: .25rem;
  33. text-align: center;
  34. }
  35. hr {
  36. border-color: #ccc;
  37. border-style: solid;
  38. border-width: 1px 0 0 0;
  39. }
  40. code {
  41. background-color: #e8e8e8;
  42. border-radius: 3px;
  43. padding: .1rem .2rem;
  44. }