add soft_media module

This commit is contained in:
2022-04-14 16:02:23 +01:00
parent f6ee2cf09d
commit 22ab71170b
2 changed files with 13 additions and 0 deletions

7
modules/soft_media.css Normal file
View File

@@ -0,0 +1,7 @@
img, video {
opacity: .75;
transition: opacity .5s ease-in-out;
}
img:hover, video:hover {
opacity: 1;
}