Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm

explain

Changed files
+19 -1
who-am-i
static
templates
+12
who-am-i/static/style.css
···
max-width: 21rem;
}
+
.explain {
+
border-bottom: 1px dashed #888;
+
margin-bottom: 1rem;
+
padding-bottom: 2rem;
+
}
+
.explain p {
+
text-align: left;
+
}
+
#error-message {
font-size: 0.8rem;
color: #a31;
···
}
p.detail {
font-size: 0.8rem;
+
}
+
p.detail.no {
+
font-style: italic;
}
.parent-host {
font-weight: bold;
+7 -1
who-am-i/templates/hello.hbs
···
{{#*inline "main"}}
<div class="mini-content">
-
This is a little identity-verifying service for microcosm demos.
+
<div class="explain">
+
<p>This is a little identity-verifying service for microcosm demos.</p>
+
</div>
{{#if did}}
<p id="error-message" class="hidden"></p>
···
return info.handle;
}
</script>
+
{{else}}
+
<p id="prompt" class="detail no">
+
No identity connected.
+
</p>
{{/if}}
</div>
{{/inline}}