diff options
| author | Jakob L. Kreuze | 2019-07-20 17:07:39 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze | 2019-07-20 17:07:39 -0400 |
| commit | b4fdc3017b9c05734b92151d7aa2e0353682fc09 (patch) | |
| tree | a056a6a6e379bcae01b22c6dca203218c609cac3 /haunt/static/css/style.css | |
| parent | aed8c20a9488f1ed4f4e316068cbafb07e8676ff (diff) | |
Stage everything. Bleh, I'll commit to a clean history from now on
Diffstat (limited to 'haunt/static/css/style.css')
| -rw-r--r-- | haunt/static/css/style.css | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/haunt/static/css/style.css b/haunt/static/css/style.css index ef354f9..02001ec 100644 --- a/haunt/static/css/style.css +++ b/haunt/static/css/style.css @@ -101,7 +101,7 @@ body > header > nav > ul { /* Links. */ -a:link, a:visited { color:#0000EE; } +a:link, a:visited { color: #00E; text-decoration: none; } /* Figures */ @@ -138,6 +138,47 @@ figure > figcaption { display: inline; } +/* Webmention. */ + +#webmention { + border-top: 2px solid #d2d6dd; +} + +ul#webmention-container { + list-style-type: none; +} + +div.h-entry, ul#webmention-container li { + border: 2px solid #d2d6dd; + padding: 1rem; +} + +img.u-photo { + width: 4rem; + padding: 0 1rem 1rem 0; + float: left; +} + +div.p-author * { + padding-right: 1rem; +} + +/* Webmention form. */ + +form { + border-top: 2px solid #d2d6dd; + padding-top: 1rem; +} + +form input { + margin-top: 1rem; +} + +form input[type=url] { + display: block; + width: 100%; +} + /* Source code. */ pre { |