diff options
author | ubq323 <ubq323@ubq323.website> | 2022-12-01 20:15:46 +0000 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2022-12-01 20:15:46 +0000 |
commit | 0ea9c2d0001a42743dbbab062cd7af1886727bbb (patch) | |
tree | d0d0b8cf5417bf1f4f0f1f39d5bee42cf91d723f | |
parent | 9bd1932d9c8ea2122f90e29d6cc465c2a0f2fc91 (diff) |
minor colour changes
- visited usernames shouldn't be purple
- the purple visited colour should be the browser default of #551a8b
-rw-r--r-- | apioforum/static/style.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apioforum/static/style.css b/apioforum/static/style.css index 652105a..4b2085c 100644 --- a/apioforum/static/style.css +++ b/apioforum/static/style.css @@ -10,7 +10,7 @@ body { font-family: sans-serif; word-wrap: break-word; } --red: red; --yellow: yellow; --blue: blue; - --visited: purple; + --visited: #552a8b; } a { color: var(--blue) } @@ -29,7 +29,7 @@ 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 { +.post-heading,.post-footer,.username,.username:visited { color: var(--username-colour); } .username { @@ -386,4 +386,4 @@ textarea { body { background-color: var(--light-colour); color: var(--dark-colour); } } -
\ No newline at end of file + |