social nav + search system #37

Merged
freakoverse merged 22 commits from staging into master 2024-09-18 10:08:04 +00:00
Showing only changes of commit d13c7ca6c3 - Show all commits

View File

@ -26,6 +26,7 @@
} }
.cardBlogMainInside { .cardBlogMainInside {
transition: ease 0.4s;
position: absolute; position: absolute;
top: 0; top: 0;
bottom: 0; bottom: 0;
@ -36,5 +37,10 @@
justify-content: end; justify-content: end;
align-items: start; align-items: start;
padding: 15px; padding: 15px;
background: linear-gradient(rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 50%) 100%);
}
.cardBlogMainInside:hover {
background: linear-gradient(rgb(0 0 0 / 25%) 0%, rgb(0 0 0 / 75%) 100%);
} }