mirror of
https://github.com/litruv/lit.ruv.wtf.git
synced 2026-07-24 02:36:02 +10:00
12 lines
267 B
CSS
12 lines
267 B
CSS
.post {
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
|
|
transition: box-shadow 0.3s ease, transform 0.3s ease;
|
|
position: relative;
|
|
}
|
|
|
|
.post:hover {
|
|
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
|
|
z-index: 999 !important;
|
|
transform: translateY(-4px);
|
|
}
|