Files
shoptime/com.twin.app.shoptime/src/views/HomePanel/PopularShow/PopularShowItem/PopularShowItem.module.less
junghoon86.park 43c5716873 [Homepanel] style 수정
- 각페이지별 스타일 수정
2024-02-13 11:25:46 +09:00

82 lines
1.6 KiB
Plaintext

@import "../../../../style/CommonStyle.module.less";
.listItem {
width: 546px;
height: 438px;
padding: 18px;
background-color: @COLOR_WHITE;
border-radius: 12px;
border: solid 1px @COLOR_GRAY02;
box-sizing: border-box;
font-weight: bold;
font-family: "LGSmartUIBold";
margin-right: 18px;
border: 4px solid transparent;
box-sizing: border-box;
&:focus,
&:hover,
&:focus-within,
&:active {
border: 4px solid @PRIMARY_COLOR_RED;
box-sizing: border-box;
.focusDropShadow();
}
> img {
width: 510px;
height: 288px;
object-fit: contain;
}
.horizonItem {
width: 510px;
height: 60px;
margin-top: 38px;
color: #333;
font-size: 24px;
text-overflow: ellipsis;
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
}
.listItemVertical {
display: flex;
width: 546px;
height: 438px;
padding: 18px;
background-color: @COLOR_WHITE;
border-radius: 12px;
border: solid 1px @COLOR_GRAY02;
box-sizing: border-box;
margin-right: 18px;
border: 4px solid transparent;
box-sizing: border-box;
font-weight: bold;
font-family: "LGSmartUIBold";
&:focus,
&:hover,
&:focus-within,
&:active {
border: 4px solid @PRIMARY_COLOR_RED;
box-sizing: border-box;
.focusDropShadow();
}
> img {
width: 228px;
height: 402px;
object-fit: contain;
}
.verticalItem {
margin-left: 11px;
color: #333;
font-size: 24px;
width: 270px;
height: 402px;
text-overflow: ellipsis;
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 12;
}
}