40 lines
775 B
CSS
40 lines
775 B
CSS
body {
|
|
background: #f8f9fb;
|
|
}
|
|
|
|
.floating-btn {
|
|
position: fixed;
|
|
right: 24px;
|
|
bottom: 24px;
|
|
width: 56px;
|
|
height: 56px;
|
|
font-size: 32px;
|
|
line-height: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.card-img-top {
|
|
height: 180px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
/* 웹(가로 그리드)에서 긴 요약으로 카드가 과도하게 늘어나지 않도록 모바일과 비슷한 미리보기 높이로 제한 */
|
|
@media (min-width: 768px) {
|
|
.card-description {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 4;
|
|
overflow: hidden;
|
|
min-height: 0;
|
|
}
|
|
|
|
.card-title.line-clamp-title {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
overflow: hidden;
|
|
}
|
|
}
|