-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (65 loc) · 1.5 KB
/
Copy pathindex.html
File metadata and controls
67 lines (65 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Read Later</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, viewport-fit=cover">
<meta name="color-scheme" content="light dark">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
padding-top: var(--safe-area-inset-top, 0);
padding-bottom: var(--safe-area-inset-bottom, 0);
}
.page {
scroll-behaviour: smooth;
height: calc(100vh - var(--safe-area-inset-top, 0) - var(--safe-area-inset-bottom, 0))
}
.article [aria-hidden="true"] {
display: none !important;
}
.reader_view *:not(code) {
max-width: 100%;
overflow-x: auto;
}
.reader_view ol,
.reader_view ul {
list-style-position: outside;
padding-left: 1.5em;
}
.reader_view li,
.reader_view li * {
overflow-x: visible;
max-width: none;
}
.reader_view .tts_code_block {
width: 100%;
overflow-x: scroll;
white-space: pre;
}
.reader_view .tts_code_block * {
overflow-x: visible;
max-width: none;
}
img {
max-width: 100%;
height: auto;
}
.article table {
display: block;
overflow-x: auto;
max-width: 100%;
width: max-content;
}
</style>
</head>
<body>
<main id="app"></main>
<script type="module" src="/src/main.ts"></script>
</body>
<html>