123456789101112131415161718192021222324 |
- /* color palette from <https://github.com/vuejs/theme> */
- :root {
- --main-color: #b07843;
- --sub-color: #d0ba93;
- --bg-grey: #9a9fa3;
- --text-color: #3f3b3a;
- }
- *,
- *::before,
- *::after {
- box-sizing: border-box;
- margin: 0;
- font-weight: normal;
- font-family: "Noto Sans TC", sans-serif;
- }
- p {
- white-space: pre-wrap; /* CSS3 */
- white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
- white-space: -pre-wrap; /* Opera 4-6 */
- white-space: -o-pre-wrap; /* Opera 7 */
- word-wrap: break-word; /* Internet Explorer 5.5+ */
- }
|