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

49 lines
576 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 {
text-transform: uppercase;
font-weight: 600;
color: $article-title-color;
font-size: 22px;
margin: 0;
}
a {
color: $article-title-color;
}
2020-03-15 15:45:38 +08:00
}
.meta-info {
2020-03-25 16:57:49 +08:00
margin: 10px 0 20px 0;
}
.article-content {
2020-03-25 16:57:49 +08:00
padding-bottom: 10px;
border-bottom: 1px solid #f2f2f2;
}
.article-nav {
height 40px
2020-03-25 16:57:49 +08:00
margin 30px 0
.article-prev {
float left
}
.article-next {
float right
}
}
}