2023-12-19 23:18:18 +08:00
|
|
|
html,
|
|
|
|
html {
|
|
|
|
overflow-y: scroll !important;
|
2024-02-23 16:01:38 +08:00
|
|
|
width: 90% !important;
|
2023-12-19 23:18:18 +08:00
|
|
|
}
|
|
|
|
|
2022-10-14 21:11:33 +08:00
|
|
|
body {
|
2024-02-23 16:01:38 +08:00
|
|
|
overflow: initial !important;
|
|
|
|
color: var(--top-color);
|
2023-11-27 23:43:12 +08:00
|
|
|
font-family: georgia, times, serif;
|
2022-10-14 21:11:33 +08:00
|
|
|
font-size: 14pt;
|
|
|
|
max-width: 800px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2024-02-23 16:01:38 +08:00
|
|
|
margin-top: revert;
|
|
|
|
margin-bottom: revert;
|
2022-10-14 21:11:33 +08:00
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|
|
|
|
|
2022-11-20 17:28:23 +08:00
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-10-14 21:11:33 +08:00
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
border-spacing: 0;
|
|
|
|
}
|
|
|
|
|
2022-11-01 22:01:28 +08:00
|
|
|
ul li p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2022-10-14 21:11:33 +08:00
|
|
|
thead tr {
|
2024-02-23 16:01:38 +08:00
|
|
|
background-color: var(--editor-table-head-background-color);
|
|
|
|
color: var(--editor-table-head-color);
|
2022-10-14 21:11:33 +08:00
|
|
|
}
|
|
|
|
|
2023-11-27 23:43:12 +08:00
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: 8px;
|
2022-10-14 21:11:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
tbody tr:nth-of-type(even) {
|
2024-02-23 16:01:38 +08:00
|
|
|
background-color: var(--editor-table-even-background-color);
|
2022-10-14 21:11:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
a[href] {
|
|
|
|
text-decoration: none;
|
2024-02-23 16:01:38 +08:00
|
|
|
color: var(--link-color);
|
2022-10-14 21:11:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
2024-02-23 16:01:38 +08:00
|
|
|
border-left: 1px solid var(--editor-blockquote-border-color);
|
2022-10-14 21:11:33 +08:00
|
|
|
margin-left: 2px;
|
|
|
|
padding-left: 10px;
|
2024-02-23 16:01:38 +08:00
|
|
|
background-color: var(--editor-blockquote-background-color);
|
|
|
|
color: var(--editor-blockquote-color);
|
2022-10-14 21:11:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
2023-11-27 23:43:12 +08:00
|
|
|
margin: 1em 0 1em 0;
|
|
|
|
text-align: center;
|
2024-02-23 16:01:38 +08:00
|
|
|
border-color: var(--editor-ruler-color);
|
2023-11-27 23:43:12 +08:00
|
|
|
border-width: 0;
|
|
|
|
border-style: dotted;
|
2022-10-14 21:11:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
hr:after {
|
2023-11-27 23:43:12 +08:00
|
|
|
content: "···";
|
|
|
|
letter-spacing: 1em;
|
2022-10-14 21:11:33 +08:00
|
|
|
}
|
2022-11-01 22:01:28 +08:00
|
|
|
|
|
|
|
span.highlight {
|
2024-02-23 16:01:38 +08:00
|
|
|
background-color: var(--highlight-color);
|
|
|
|
}
|