base.css 534 B

123456789101112131415161718192021222324
  1. /* color palette from <https://github.com/vuejs/theme> */
  2. :root {
  3. --main-color: #b07843;
  4. --sub-color: #d0ba93;
  5. --bg-grey: #9a9fa3;
  6. --text-color: #3f3b3a;
  7. }
  8. *,
  9. *::before,
  10. *::after {
  11. box-sizing: border-box;
  12. margin: 0;
  13. font-weight: normal;
  14. font-family: "Noto Sans TC", sans-serif;
  15. }
  16. p {
  17. white-space: pre-wrap; /* CSS3 */
  18. white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  19. white-space: -pre-wrap; /* Opera 4-6 */
  20. white-space: -o-pre-wrap; /* Opera 7 */
  21. word-wrap: break-word; /* Internet Explorer 5.5+ */
  22. }