45 lines
1.1 KiB
HTML
45 lines
1.1 KiB
HTML
<!doctype html>
|
|||
|
|
<html lang="zh-CN">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
|
|
<title>mnote leptos-tiptap spike</title>
|
||
|
|
<style>
|
||
|
|
:root {
|
||
|
|
color-scheme: light;
|
||
|
|
--bg: #f4efe6;
|
||
|
|
--panel: rgba(255, 252, 246, 0.94);
|
||
|
|
--panel-strong: #fffdfa;
|
||
|
|
--ink: #1f2937;
|
||
|
|
--muted: #5b6473;
|
||
|
|
--line: rgba(100, 116, 139, 0.24);
|
||
|
|
--accent: #0f766e;
|
||
|
|
--accent-strong: #0b5f59;
|
||
|
|
--accent-soft: rgba(15, 118, 110, 0.12);
|
||
|
|
}
|
||
|
|
|
||
|
|
* {
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
html,
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
min-height: 100%;
|
||
|
|
background:
|
||
|
|
radial-gradient(circle at top left, rgba(15, 118, 110, 0.18), transparent 26%),
|
||
|
|
linear-gradient(180deg, #fcf8f2 0%, var(--bg) 100%);
|
||
|
|
color: var(--ink);
|
||
|
|
font-family: "Noto Sans CJK SC", "Source Han Sans SC", "PingFang SC", sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
button,
|
||
|
|
input,
|
||
|
|
textarea {
|
||
|
|
font: inherit;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body></body>
|
||
|
|
</html>
|