Files
dnssash/theme/rd.dnssash/rb.custom/photo_news_lwd/module.css
T
2026-06-11 18:47:38 +09:00

74 lines
1.3 KiB
CSS

.photo-news-lwd {
margin-top: 40px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
.photo-news-header {
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid #333;
padding-bottom: 10px;
margin-bottom: 20px;
}
.photo-news-header h2 {
font-size: 1.5rem;
font-weight: 700;
color: #333;
margin: 0;
}
.photo-news-header .btn-more {
font-size: 0.9rem;
color: #666;
text-decoration: none;
}
.photo-news-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.photo-item a {
text-decoration: none;
color: inherit;
display: block;
}
.photo-item .photo-thumb {
width: 100%;
height: 180px;
overflow: hidden;
margin-bottom: 10px;
background-color: #f5f5f5;
border-radius: 4px;
}
.photo-item .photo-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s;
}
.photo-item:hover .photo-thumb img {
transform: scale(1.05);
}
.photo-item .photo-info h3 {
font-size: 1rem;
font-weight: 500;
line-height: 1.4;
margin: 0;
height: 2.8em; /* 2줄 제한 */
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}