32 lines
550 B
CSS
32 lines
550 B
CSS
.post-title {
|
|
height: 40px;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.post-img {
|
|
width: 330px;
|
|
height: 160px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.recent-posts {
|
|
background-color: #f9f9f9 !important;
|
|
}
|
|
.feature-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
.feature-box img {
|
|
width: 150px;
|
|
object-fit: cover;
|
|
}
|
|
.feature-box img:hover {
|
|
transform: scale(1.1);
|
|
transition: all 0.3s ease-in-out;
|
|
} |