diff options
| author | Jakob L. Kreuze | 2019-07-13 19:22:38 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze | 2019-07-13 19:41:24 -0400 |
| commit | b5153f76e28b0491cad90d529e969d0b92a63ed1 (patch) | |
| tree | c301684312027ac6c79917088a6d34a3dd851edf /haunt/static/css/style.css | |
| parent | c9a30e04e8603c9796fec663a2d374e41e2e6031 (diff) | |
Reimplement tag-based navigation.
Diffstat (limited to 'haunt/static/css/style.css')
| -rw-r--r-- | haunt/static/css/style.css | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/haunt/static/css/style.css b/haunt/static/css/style.css index b9f7beb..ef354f9 100644 --- a/haunt/static/css/style.css +++ b/haunt/static/css/style.css @@ -73,13 +73,32 @@ body > header > nav > ul { } } -/* Pagination navigation. */ +/* Pagination. */ #pagination { display: flex; justify-content: space-around; } +/* Tag clouds. */ + +#tag-cloud a { + color: #000; +} + +#tag-cloud li { + display: inline-block; + margin: 10px 5px; + padding: 5px 10px; + vertical-align: top; + + text-align: center; + + border-radius: 4px; + border-style: solid; + border-width: thin; +} + /* Links. */ a:link, a:visited { color:#0000EE; } |