18 lines
375 B
CSS
18 lines
375 B
CSS
/* Hover and Transition Effects */
|
|
.hover-shadow:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
|
|
}
|
|
|
|
.transition-all {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
/* Text Truncation */
|
|
.text-truncate-2 {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
} |