+12
-1
static/index.html
+12
-1
static/index.html
···
43
43
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
44
44
}
45
45
46
+
h1 a {
47
+
color: inherit;
48
+
text-decoration: none;
49
+
cursor: pointer;
50
+
transition: opacity 0.2s;
51
+
}
52
+
53
+
h1 a:hover {
54
+
opacity: 0.8;
55
+
}
56
+
46
57
.subtitle {
47
58
color: rgba(255, 255, 255, 0.9);
48
59
font-size: 1.1em;
···
276
287
<body>
277
288
<div class="container">
278
289
<div class="header">
279
-
<h1>find bufo</h1>
290
+
<h1><a href="/">find bufo</a></h1>
280
291
<p class="subtitle"><a href="https://tangled.org/@zzstoatzz.io/find-bufo/blob/main/src/search.rs" target="_blank">semantic search</a> for <a href="https://bufo.zone" target="_blank">bufo.zone</a></p>
281
292
</div>
282
293