2020-03-21 23:04:01 +08:00
|
|
|
@require 'variables.styl'
|
|
|
|
|
2020-03-19 18:11:13 +08:00
|
|
|
.home-container {
|
2020-03-18 23:14:09 +08:00
|
|
|
|
|
|
|
.article-post-list {
|
|
|
|
|
|
|
|
.article-post-item {
|
|
|
|
|
|
|
|
margin-bottom 30px
|
2020-03-22 20:31:13 +08:00
|
|
|
padding-bottom 30px
|
2020-03-21 23:04:01 +08:00
|
|
|
border-bottom: 1px solid $border-color;
|
2020-03-18 23:14:09 +08:00
|
|
|
|
|
|
|
.article-post-title {
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 600;
|
2020-03-21 23:04:01 +08:00
|
|
|
color: $article-title-color;
|
2020-03-18 23:14:09 +08:00
|
|
|
font-size: 22px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2020-03-21 23:04:01 +08:00
|
|
|
|
2020-03-18 23:14:09 +08:00
|
|
|
a {
|
2020-03-21 23:04:01 +08:00
|
|
|
color: $article-title-color;
|
|
|
|
}
|
2020-03-18 23:14:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.article-post-content {
|
2020-03-19 14:51:48 +08:00
|
|
|
padding 15px 0
|
2020-03-21 23:04:01 +08:00
|
|
|
line-height 2em
|
2020-03-18 23:14:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2020-03-20 16:31:20 +08:00
|
|
|
|
|
|
|
.paginator {
|
|
|
|
|
|
|
|
padding-bottom 40px
|
|
|
|
|
|
|
|
.page-number {
|
|
|
|
display none !important
|
|
|
|
}
|
|
|
|
|
|
|
|
a.prev {
|
|
|
|
float left
|
|
|
|
}
|
|
|
|
|
|
|
|
a.next {
|
|
|
|
float right
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-03-18 23:14:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-03-21 23:04:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
|