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