+12
who-am-i/static/style.css
+12
who-am-i/static/style.css
···
60
max-width: 21rem;
61
}
62
63
+
.explain {
64
+
border-bottom: 1px dashed #888;
65
+
margin-bottom: 1rem;
66
+
padding-bottom: 2rem;
67
+
}
68
+
.explain p {
69
+
text-align: left;
70
+
}
71
+
72
#error-message {
73
font-size: 0.8rem;
74
color: #a31;
···
85
}
86
p.detail {
87
font-size: 0.8rem;
88
+
}
89
+
p.detail.no {
90
+
font-style: italic;
91
}
92
.parent-host {
93
font-weight: bold;
+7
-1
who-am-i/templates/hello.hbs
+7
-1
who-am-i/templates/hello.hbs
···
2
3
{{#*inline "main"}}
4
<div class="mini-content">
5
+
<div class="explain">
6
+
<p>This is a little identity-verifying service for microcosm demos.</p>
7
+
</div>
8
9
{{#if did}}
10
<p id="error-message" class="hidden"></p>
···
70
return info.handle;
71
}
72
</script>
73
+
{{else}}
74
+
<p id="prompt" class="detail no">
75
+
No identity connected.
76
+
</p>
77
{{/if}}
78
</div>
79
{{/inline}}