diff options
author | 2024-01-05 20:35:35 +0800 | |
---|---|---|
committer | 2024-01-05 20:35:35 +0800 | |
commit | 7fd2412b4d21bbdbc8df2a73b23a647d91438f6f (patch) | |
tree | d2df9b7499f7128e8486e1890ac242f8c941d9ca | |
parent | Remove obsolete comment regarding notification.css file (diff) |
Dark: Fix shadows & borders colors on the homepage
-rw-r--r-- | pydis_site/static/css/home/index.css | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/pydis_site/static/css/home/index.css b/pydis_site/static/css/home/index.css index 0214a762..b9d829f6 100644 --- a/pydis_site/static/css/home/index.css +++ b/pydis_site/static/css/home/index.css @@ -111,6 +111,10 @@ h1 { margin: 0 1em; } +[data-theme="dark"] #showcase .box { + box-shadow: 0 0.5em 1em -0.125em rgb(10 10 10 / 10%), 0 0px 0 1px rgb(10 10 10 / 2%); +} + #showcase .mini-timeline { height: 3px; position: relative; @@ -157,10 +161,18 @@ h1 { flex-direction: column; } +[data-theme="dark"] #projects .card { + border: #4E4F51 1px solid; +} + #projects .card:hover { box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); } +[data-theme="dark"] #projects .card:hover { + box-shadow: 0 1px 3px rgb(10 10 10 / 65%), 0 1px 2px rgb(10 10 10 / 85%); +} + #projects .card-header { box-shadow: none; font-size: 1.25rem; @@ -174,16 +186,18 @@ h1 { #projects .card-header-title { padding: 0; + /* The primary blurple theme color */ color: #7289DA; } #projects .card:hover .card-header-title { color: #363636; } -[data-theme="dark"] { - #projects .card:hover .card-header-title { - color: #CAD6FF; - } + +[data-theme="dark"] #projects .card:hover .card-header-title { + /* The light blurple theme color, consistent hover behaviour with other + * parts of the site. */ + color: #CAD6FF; } #projects .card-content { |