-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathprelude.html
69 lines (57 loc) · 1.56 KB
/
prelude.html
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
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Yamanote app 山の手</title>
<style>
div.bookmark {
padding-top: 0.4em;
border-bottom: #ddd dotted;
}
div.comment:not(:last-child) {
border-bottom: 2px #ddd dotted;
}
pre.unrendered {
white-space: pre-wrap;
display: inline;
font-family: inherit;
}
a.emojilink {
text-decoration: none;
}
textarea {
width: 100%;
height: 40vh;
font: 20px/1.3 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
body {
overflow-wrap: break-word;
max-width: 80rem;
margin: 10px auto;
padding: 0 10px;
font: 20px/1.3 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
color: #444
}
@media (prefers-color-scheme: dark) {
body {
color: #ccc;
background: #111;
}
a:link {
color: #5bf
}
a:visited {
color: #ccf
}
div.bookmark {
border-bottom: #222 dotted;
}
div.comment:not(:last-child) {
border-bottom: 2px #222 dotted;
}
}
</style>
<script src="/prelude.js"> </script>
<link rel="icon" type="image/png" href="/yamanote-favico.png">
</head>