content.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. @media screen {
  8. html {
  9. background: #f4f4f4;
  10. }
  11. }
  12. body {
  13. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  14. }
  15. @media screen {
  16. body {
  17. background-color: #fff;
  18. box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  19. box-sizing: border-box;
  20. margin: 1rem auto 0;
  21. max-width: 820px;
  22. min-height: calc(99vh);
  23. padding: 4rem 6rem 6rem 6rem;
  24. }
  25. }
  26. table {
  27. border-collapse: collapse;
  28. }
  29. table th,
  30. table td {
  31. border: 1px solid #ccc;
  32. padding: .4rem;
  33. }
  34. blockquote {
  35. border-left: 2px solid #ccc;
  36. margin-left: 1.5rem;
  37. padding-left: 1rem;
  38. }
  39. figure figcaption {
  40. color: #999;
  41. margin-top: .25rem;
  42. text-align: center;
  43. }
  44. hr {
  45. border-color: #ccc;
  46. border-style: solid;
  47. border-width: 1px 0 0 0;
  48. }