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

54 lines
739 B
Stylus
Raw Normal View History

2020-04-01 12:09:06 +08:00
@require "common/variables.styl"
.home-content-container {
.home-article-list {
2020-04-01 12:09:06 +08:00
.home-article-item {
2020-04-01 12:09:06 +08:00
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: 1px solid $border-color;
2020-04-01 12:09:06 +08:00
.home-article-title {
2020-04-01 12:09:06 +08:00
h3 {
font-weight: 600;
color: $article-title-color;
font-size: 22px;
margin: 0;
2020-04-01 12:09:06 +08:00
}
a {
color: $article-title-color;
2020-04-01 12:09:06 +08:00
}
}
.home-article-content {
padding: 15px 0;
line-height: 2em;
2020-04-01 12:09:06 +08:00
}
}
2020-04-01 12:09:06 +08:00
}
.paginator {
2020-04-01 12:09:06 +08:00
padding-bottom: 40px;
2020-04-01 12:09:06 +08:00
.page-number {
display: none !important;
}
2020-04-01 12:09:06 +08:00
a.prev {
float: left;
}
2020-04-01 12:09:06 +08:00
a.next {
float: right;
2020-04-01 12:09:06 +08:00
}
2020-04-01 12:09:06 +08:00
}
2020-04-01 12:09:06 +08:00
}