diff options
| author | 2022-02-01 01:21:21 +0100 | |
|---|---|---|
| committer | 2022-02-01 01:21:21 +0100 | |
| commit | 3c92f66890a67a19ba082acd50ebcd2df311f305 (patch) | |
| tree | 7ae24a076a3d97e09c4931a57447eb417eac4e9e | |
| parent | Make resource tags correctly deactivate. (diff) | |
When hovering titles, make them light, not black.
| -rw-r--r-- | pydis_site/static/css/resources/resources.css | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/pydis_site/static/css/resources/resources.css b/pydis_site/static/css/resources/resources.css index 2fb3a9b5..b8456e38 100644 --- a/pydis_site/static/css/resources/resources.css +++ b/pydis_site/static/css/resources/resources.css @@ -119,6 +119,12 @@ i.is-primary {      filter: brightness(115%);  } +/* When hovering title anchors, just make the color a lighter primary, not black. */ +.resource-box a:hover { +    filter: brightness(120%); +    color: #7289DA; +} +  /* Set default display to inline-flex, for centering. */  span.filter-box-tag { | 
