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

116 lines
1.9 KiB
Stylus
Raw Normal View History

2020-04-01 12:09:06 +08:00
@require "common/variables.styl"
@require "common/magic-theme.styl"
2020-04-01 12:09:06 +08:00
.home-content-container {
.home-article-list {
2020-04-01 12:09:06 +08:00
.home-article-item {
2020-10-28 00:20:32 +08:00
position: relative;
2020-11-13 14:43:22 +08:00
ils-container(1.02, 1.02, 30px);
2020-10-28 00:20:32 +08:00
.top-icon {
position: absolute;
top: 6px;
right: 10px;
font-size: 1.8em;
transform: rotate(50deg);
+ils-tablet() {
display: 1.6em;
}
+ils-mobile() {
font-size: 1.38em;
}
2020-10-28 00:20:32 +08:00
}
.home-article-title {
position: relative;
font-weight: 600;
color: var(--second-text-color);
font-size: 1.5em;
line-height: 1.5em;
2020-06-04 22:11:27 +08:00
+ils-tablet() {
font-size: 1.3em;
}
2020-11-13 14:43:22 +08:00
2020-06-04 22:11:27 +08:00
+ils-mobile() {
font-size: 1.2em;
}
2020-11-13 14:43:22 +08:00
margin: 0;
2020-09-09 16:30:18 +08:00
2020-04-01 12:09:06 +08:00
}
2020-11-13 14:43:22 +08:00
.home-article-content {
text-align: justify;
2020-11-13 14:43:22 +08:00
margin: 20px 0;
line-height: 2em;
2020-04-01 12:09:06 +08:00
}
2020-11-13 14:43:22 +08:00
.home-article-meta-info-container {
display: flex;
justify-content: space-between;
align-items: center;
color: var(--third-text-color);
2020-11-13 14:43:22 +08:00
font-size: 1em;
2020-04-26 18:34:51 +08:00
.home-article-meta-info {
letter-spacing: 0.5px;
span {
2020-04-26 18:34:51 +08:00
margin-right: 10px;
&:last-child {
margin-right: 0;
}
ul, li {
display: inline;
}
}
.home-article-category {
+ils-mobile() {
display: none;
}
}
.home-article-tag {
+ils-tablet() {
display: none;
}
}
}
2020-11-13 14:43:22 +08:00
hr {
border: none;
flex: 1;
height: 1px;
background: var(--border-color);
margin: 0 10px;
}
a {
color: var(--third-text-color);
&:hover {
color: var(--primary-color)
}
}
}
}
2020-04-01 12:09:06 +08:00
}
}