diff options
Diffstat (limited to 'src/static')
| -rw-r--r-- | src/static/css/site.css | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/src/static/css/site.css b/src/static/css/site.css index 9cfa4417..1e3a781a 100644 --- a/src/static/css/site.css +++ b/src/static/css/site.css @@ -1518,6 +1518,14 @@ label > input[type=checkbox]:not(:checked) + span { font-size: 0.9em; } +.other-release-tooltip .tooltip-content .when { + /* technically just putting this in a <span> was enough + * to keep it from wrapping all tight-like, for some + * reason, but im not taking any chances... + */ + white-space: nowrap; +} + .rerelease-tooltip .not-credited-on-first-release { opacity: 0.9; } @@ -2088,6 +2096,19 @@ h1 { white-space: nowrap; } +#content li.divider { + list-style-type: none; + max-width: 220px; + margin-top: 0.5em; + margin-bottom: 0.5em; +} + +#content li.divider hr { + color: #888; + border: none; + border-bottom: 1px solid; +} + #content details { margin-top: 0.25em; margin-bottom: 0.25em; @@ -2263,11 +2284,11 @@ ul.quick-info li:not(:last-child)::after { margin: 0 6px; } -li .by { +dt .by, li .by { font-style: oblique; } -li .by a { +dt .by a, li .by a { display: inline-block; } |