-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
101 lines (80 loc) · 1.39 KB
/
index.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mrmr.io</title>
<style>
:root {
--bg: oklch(99.24% 0 0);
--text: oklch(8% 0 0);
--soft: oklch(60% 0 0);
--baby-blue: #a2cffe;
--baby-purple: #ca9bf7;
}
@media (prefers-color-scheme: dark) {
:root {
--bg: oklch(31.14% 0.021 285.75);
--text: oklch(90% 0.008 286.75);
--soft: oklch(75.94% 0 0);
}
}
body {
background-color: var(--bg);
color: var(--text);
margin: 2rem;
line-height: 1.5;
max-width: 40rem;
}
@media (width > 40em) {
body {
margin: 4em;
}
}
a {
text-underline-offset: 0.4em;
text-decoration-thickness: 0.1em;
}
a:hover {
text-decoration-thickness: 0.2em;
}
@media (prefers-color-scheme: dark) {
li {
color: var(--soft);
}
a {
color: var(--text);
text-decoration-color: var(--baby-blue);
}
a:visited {
text-decoration-color: var(--baby-purple);
}
}
footer {
margin-block: 8rem;
padding-block-start: 1.5rem;
}
@media (width < 40em) {
footer {
padding-block-end: 0.5rem;
}
}
</style>
</head>
<body>
<p>
<b><i>mrmr</i></b> to me softly
<br />
they tell me <i>it’s all right</i>
<br />
in the wind rustle leaves
<br />
the moon, and the <i>night</i>
</p>
<footer>
<p><i>
<a href="/archive">archive</a>
</i></p>
</footer>
</body>
</html>