new-demo/src/components/frontend/home/essays/item/styles.module.less

120 lines
2.5 KiB
Plaintext

.essay {
margin-bottom: 20px;
padding: 20px;
border: 1px solid #e8e8e8;
border-radius: 5px;
background-color: #fff;
box-shadow: 0 1px 3px rgba(26, 26, 26, 0.1);
transition: all 0.3s ease;
display: flex;
&:hover {
box-shadow: 0 1px 5px rgba(26, 26, 26, 0.3);
cursor: pointer;
}
.cover {
width: 200px;
height: 120px;
margin-right: 20px;
border-radius: 5px;
overflow: hidden;
img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
.noCover {
width: 200px;
height: 120px;
display: flex;
justify-content: center;
align-items: center;
background: #f0f0f0;
color: #666;
font-size: 12px;
font-weight: bold;
border-radius: 5px;
}
.body {
flex: 1;
.title {
font-size: 20px;
font-weight: 600;
color: #333;
margin-bottom: 10px;
display: flex;
.top {
background-color: rgb(246, 190, 190);
padding: 0 5px;
margin-right: 5px;
border-radius: 5px;
}
}
.content {
font-size: 14px;
color: #666;
margin-bottom: 10px;
}
.labels {
display: flex;
flex-wrap: wrap;
.label {
padding: 2px 5px;
margin-right: 5px;
margin-bottom: 5px;
font-size: 14px;
border-radius: 5px;
box-shadow: 0 1px 5px rgba(26, 26, 26, 0.3);
}
}
.meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 10px;
.author {
font-size: 14px;
color: #666;
}
.updatedAt {
font-size: 14px;
color: #666;
}
.extra {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
.publishedAt {
font-size: 14px;
color: #666;
}
.author {
font-size: 14px;
color: #666;
}
}
}
.creator {
display: flex;
align-items: center;
}
}
}