Style for reply button

This commit is contained in:
Brandon Rozek 2023-01-03 21:04:24 -05:00
parent aa68e11c56
commit 8fc0095a72
No known key found for this signature in database
GPG key ID: 26E457DA82C9F480
2 changed files with 12 additions and 1 deletions

View file

@ -456,6 +456,17 @@ main .e-content .toot-photos img {
font-size: 1rem;
}
.reply-button {
border: 1px solid black;
padding: 5px;
border-radius: 0.5rem;
box-shadow: 5px 5px var(--acent-color);
}
.reply-button:hover {
box-shadow: 2px 2px var(--acent-color);
}
/*
** Fonts
*/

View file

@ -20,7 +20,7 @@
{{ .Content }}
</div>
</article>
<a href='mailto:{{ .Site.Params.email }}?subject=Re: "{{ .Title }}"' style="border: 1px solid black;padding: 5px;border-radius: 0.5rem;">Reply via Email</a>
<a href='mailto:{{ .Site.Params.email }}?subject=Re: "{{ .Title }}"' class="reply-button">Reply via Email</a>
{{ partial "webmentions.html" . }}
</main>