hexo-theme-keep/source/css/layout/article-content.styl

186 lines
3.1 KiB
Stylus
Raw Normal View History

2020-10-27 18:11:10 +08:00
$avatarWidth = 46px;
2020-11-19 12:17:04 +08:00
$arrow-icon-width = 16px;
$post-nav-max-width = 220px;
2020-10-27 18:11:10 +08:00
2020-04-01 12:09:06 +08:00
.article-content-container {
2020-11-20 12:02:22 +08:00
keep-container(1.008, 1.002, 30px, true);
.article-title {
2020-10-27 18:11:10 +08:00
color: var(--second-text-color);
font-weight: 600;
font-size: 1.8em;
2020-11-20 12:02:22 +08:00
+keep-tablet() {
2020-10-27 18:11:10 +08:00
font-size: 1.5em;
}
2020-11-20 12:02:22 +08:00
+keep-mobile() {
2020-10-27 18:11:10 +08:00
font-size: 1.2em;
}
}
2020-06-04 22:11:27 +08:00
2020-11-13 14:43:22 +08:00
2020-10-27 18:11:10 +08:00
.article-header {
position: relative;
padding-left: $avatarWidth;
width: 100%;
height: $avatarWidth;
box-sizing: border-box;
.avatar {
position: absolute;
top: 0
left: 0;
width: $avatarWidth;
height: $avatarWidth;
padding: 1px;
box-sizing: border-box;
border: 1px solid var(--border-color);
border-radius: 50%;
img {
border-radius: 50%;
width: 100%;
height: 100%;
2020-06-04 22:11:27 +08:00
}
}
2020-10-27 18:11:10 +08:00
.info {
padding: 2px 0;
margin-left: 10px;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100%;
height: 100%;
.author {
font-weight: 600;
font-size: 1.18em;
display: flex;
align-items: center;
.level {
margin-left: 10px;
color: #fff;
font-size: 12px;
font-weight: 500;
background: var(--selection-color);
padding: 0 4px;
border-radius: 5px;
}
}
}
2020-03-15 15:45:38 +08:00
}
2020-11-13 14:43:22 +08:00
.article-header, .article-header-meta-info {
2020-10-28 22:25:26 +08:00
margin-top: 16px;
2020-11-20 12:02:22 +08:00
+keep-tablet() {
2020-10-28 22:25:26 +08:00
transform: scale(0.88);
transform-origin: left top;
}
}
2020-11-13 14:43:22 +08:00
.article-content {
margin-top: $component-interspace;
text-align: justify;
padding-bottom: 10px;
border-bottom: 1px solid var(--border-color);
}
.post-copyright-info {
margin-top: $component-interspace;
width: 100%;
}
.article-nav {
height: 40px;
margin-top: $component-interspace;
2020-11-19 11:58:54 +08:00
.article-prev, .article-next {
max-width: $post-nav-max-width;
height: 100%;
box-sizing: border-box;
2020-11-20 12:02:22 +08:00
keep-container(1.08, 1.08, 10px, false);
2020-11-19 11:58:54 +08:00
a {
position: relative;
display: block;
width: 100%;
height: 100%;
box-sizing: border-box;
&.prev {
padding-left: $arrow-icon-width;
}
&.next {
padding-right: $arrow-icon-width;
}
.arrow-icon {
position: absolute;
top: 0;
height: 100%;
width: $arrow-icon-width;
&.left {
left: 0;
}
&.right {
right: 0;
}
}
.title {
width: 100%;
height: 100%;
}
}
}
.article-prev {
float: left;
}
.article-next {
float: right;
}
.post-nav-item {
display: none;
2020-11-20 12:02:22 +08:00
+keep-tablet() {
display: inline-block;
}
}
2020-11-19 11:58:54 +08:00
.post-nav-title-item {
2020-11-19 11:58:54 +08:00
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2020-11-20 12:02:22 +08:00
+keep-tablet() {
display: none;
}
}
}
2020-04-28 23:20:17 +08:00
}