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

44 lines
516 B
Stylus
Raw Normal View History

2020-04-01 12:09:06 +08:00
@require 'common/variables.styl'
2020-04-01 12:09:06 +08:00
.article-content-container {
.article-title {
h3 {
font-weight: 600;
font-size: 1.8em;
margin: 0;
}
a {
color: var(--second-text-color);
}
2020-03-15 15:45:38 +08:00
}
.meta-info {
margin: 10px 0 30px 0;
}
.article-content {
padding-bottom: 30px;
2020-04-01 23:03:38 +08:00
border-bottom: 1px solid $border-color;
}
.article-nav {
height 40px
2020-04-01 23:03:38 +08:00
margin 40px 0
.article-prev {
float left
}
.article-next {
float right
}
}
}