diff options
-rw-r--r-- | apioforum/static/style.css | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/apioforum/static/style.css b/apioforum/static/style.css index 4b2085c..c9c127d 100644 --- a/apioforum/static/style.css +++ b/apioforum/static/style.css @@ -29,10 +29,10 @@ a:visited { color: var(--visited); } .post:last-of-type { border-bottom: 1px solid var(--dark-colour); } .post-heading,.post-footer { font-size: smaller; } -.post-heading,.post-footer,.username,.username:visited { +.post-heading,.post-footer,.username,.username:visited,nav#navbar .username { color: var(--username-colour); } -.username { +.username,nav#navbar .username{ font-weight: bold; text-decoration: underline; } @@ -269,7 +269,7 @@ nav#pages .pageno { align-self: center; } content: "]"; color: var(--gray); } -.actionbutton { +.actionbutton,.actionbutton:visited { color:var(--blue); white-space: nowrap; } @@ -341,8 +341,9 @@ fieldset { margin-bottom: 15px; } display: inline; } -.breadcrumbs li::before { - content: "/"; +.breadcrumbs li+li::before { + content: "/\00a0"; + padding: 8px; } textarea { |