diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2023-08-27 19:39:21 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2023-08-27 19:39:21 -0400 |
| commit | 94af23a294371efa2fb147633ef4c074bfce3174 (patch) | |
| tree | e1f8274698b41108821a5cf082f0bab3924e22c5 /haunt/static/css/style.css | |
| parent | e34974ee4fb88e6832161874d29b373db2153c38 (diff) | |
[comments] Fix CSS for Webmention form
Diffstat (limited to 'haunt/static/css/style.css')
| -rw-r--r-- | haunt/static/css/style.css | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/haunt/static/css/style.css b/haunt/static/css/style.css index 3d95b3b..0890fd0 100644 --- a/haunt/static/css/style.css +++ b/haunt/static/css/style.css @@ -251,18 +251,20 @@ ul.webmention-container .comment .comment-source-identifier { /* Webmention form. */ -#webmention-form form { +form#webmention-form { border-top: 2px solid #d2d6dd; padding-top: 1rem; } -#webmention-form form input { +form#webmention-form input { margin-top: 1rem; } -#webmention-form form input[type=url] { +form#webmention-form input[type=url] { display: block; - width: 100%; + width: 90%; + margin: auto; + margin-top: 1rem; } /* Comment form. */ |