47 lines
961 B
CSS
47 lines
961 B
CSS
/* 💡 [최종 수정] 스킨 자체는 크기를 갖지 않고, 부모 컨테이너를 100% 채우도록 수정 */
|
|
.rb-banner-card-overlay {
|
|
position: relative;
|
|
overflow: hidden;
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.rb-banner-card-overlay a {
|
|
display: block;
|
|
text-decoration: none;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.rb-banner-card-overlay .banner-image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.rb-banner-card-overlay .banner-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
display: block;
|
|
}
|
|
|
|
.rb-banner-card-overlay .banner-content {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
padding: 10px;
|
|
background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
|
|
color: #fff;
|
|
}
|
|
|
|
.rb-banner-card-overlay h3 {
|
|
margin: 0;
|
|
font-size: 0.9rem;
|
|
font-weight: 700;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|