name from recursive resolved plaintext

This commit is contained in:
Bel LaPointe
2020-08-07 11:35:52 -06:00
parent 952e04815a
commit 785215bd3c
2 changed files with 66 additions and 2 deletions

View File

@@ -105,7 +105,7 @@ const defaultWrapper = `
body > form > textarea {
margin-top: 2.5em;
}
body > h2:nth-child(2) {
rendered > h2:nth-child(2) {
margin: 0;
position: fixed;
padding: .25em;
@@ -113,6 +113,35 @@ const defaultWrapper = `
background: #3b242b;
top: 0;
}
h1, h2, h3, h4, h5, h6, h7, h8 {
position: relative;
}
.comment {
display: none;
margin: 0;
padding: 0;
flex-direction: column;
justify-content: center;
position: absolute;
right: 100%;
padding-right: 1em;
width: 10em;
top: 0;
text-align: right;
font-size: 12pt;
}
h1:hover > .comment,
h2:hover > .comment,
h3:hover > .comment,
h4:hover > .comment,
h5:hover > .comment,
h6:hover > .comment,
h7:hover > .comment,
h8:hover > .comment,
.comment:focus,
.comment:focus-within {
display: inline-flex;
}
</style>
</header>
<body height="100%">