This commit is contained in:
MDeeApp
2025-10-22 18:24:28 +02:00
parent 6a2b6e46e0
commit 36dff70f98
5 changed files with 648 additions and 46 deletions

View File

@@ -466,6 +466,31 @@ h1 {
border-left: 4px solid #059669;
}
.post-card--highlight {
box-shadow:
0 1px 2px rgba(0, 0, 0, 0.1),
0 0 0 4px rgba(102, 126, 234, 0.35);
animation: post-card-highlight-pulse 1.4s ease-in-out 2;
}
@keyframes post-card-highlight-pulse {
0% {
box-shadow:
0 1px 2px rgba(0, 0, 0, 0.1),
0 0 0 0 rgba(102, 126, 234, 0.45);
}
50% {
box-shadow:
0 1px 2px rgba(0, 0, 0, 0.1),
0 0 0 8px rgba(102, 126, 234, 0.2);
}
100% {
box-shadow:
0 1px 2px rgba(0, 0, 0, 0.1),
0 0 0 0 rgba(102, 126, 234, 0.45);
}
}
.post-header {
display: flex;
justify-content: space-between;