50 lines
781 B
SCSS
50 lines
781 B
SCSS
.article-detail-page {
|
|
padding: 15px;
|
|
background-color: #fff;
|
|
|
|
.article-header {
|
|
margin-bottom: 20px;
|
|
border-bottom: 1px solid #eee;
|
|
padding-bottom: 15px;
|
|
|
|
.article-title {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
margin-bottom: 10px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.article-meta {
|
|
font-size: 14px;
|
|
color: #999;
|
|
|
|
span {
|
|
margin-right: 15px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.article-content {
|
|
line-height: 1.8;
|
|
font-size: 16px;
|
|
color: #333;
|
|
|
|
.article-main-image {
|
|
width: 100%;
|
|
height: auto;
|
|
margin-bottom: 15px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
} |