1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2025-06-15 00:53:18 +02:00

Drop shadow color

This commit is contained in:
Philipp Heckel 2021-12-06 19:04:45 -05:00
parent d0d1f9e5c7
commit faa7de9f37
2 changed files with 15 additions and 4 deletions
docs/static/css

View file

@ -1,3 +1,9 @@
:root {
--md-primary-fg-color: #3a9784;
--md-primary-fg-color--light: #3a9784;
--md-primary-fg-color--dark: #3a9784;
}
.md-header__button.md-logo :is(img, svg) {
width: unset !important;
}
@ -6,11 +12,18 @@ article {
padding-bottom: 50px;
}
figure iframe, figure img, figure video {
filter: drop-shadow(3px 3px 3px #ccc);
figure img, figure video {
border-radius: 7px;
}
body[data-md-color-scheme="default"] figure img, body[data-md-color-scheme="default"] figure video {
filter: drop-shadow(3px 3px 3px #ccc);
}
body[data-md-color-scheme="slate"] figure img, body[data-md-color-scheme="slate"] figure video {
filter: drop-shadow(3px 3px 3px #1a1313);
}
figure video {
width: 100%;
max-height: 450px;