style: Categories,Tags
This commit is contained in:
parent
54216601f2
commit
77ecc930bd
15
README.md
15
README.md
@ -220,6 +220,21 @@ pageFooter: true
|
|||||||
$ npm uninstall hexo-generator-index --save
|
$ npm uninstall hexo-generator-index --save
|
||||||
$ npm install hexo-generator-index-pin-top --save
|
$ npm install hexo-generator-index-pin-top --save
|
||||||
```
|
```
|
||||||
|
### Categories
|
||||||
|
``` bash
|
||||||
|
hexo new page categories
|
||||||
|
```
|
||||||
|
Then paste following codes to file: _posts/categories/index.md
|
||||||
|
``` md
|
||||||
|
---
|
||||||
|
title: categories
|
||||||
|
type: categories
|
||||||
|
layout: "categories"
|
||||||
|
---
|
||||||
|
```
|
||||||
|
|
||||||
|
### Tags
|
||||||
|
Same as categories.
|
||||||
|
|
||||||
### Post poster
|
### Post poster
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@
|
|||||||
padding-left 3rem
|
padding-left 3rem
|
||||||
.archive-article-title
|
.archive-article-title
|
||||||
text-decoration: none
|
text-decoration: none
|
||||||
font-size 1.5rem
|
font-size 1.8rem
|
||||||
|
|
||||||
.archive-article-footer
|
.archive-article-footer
|
||||||
margin-top: 1.5rem
|
margin-top: 1.5rem
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
@extend $block-caption
|
@extend $block-caption
|
||||||
&::before
|
&::before
|
||||||
content '\eaf2'
|
content '\eaf2'
|
||||||
margin-right .5rem
|
margin-right .15rem
|
||||||
font-family remixicon
|
font-family remixicon
|
||||||
opacity .5
|
opacity .5
|
||||||
|
|
||||||
@ -42,7 +42,7 @@
|
|||||||
&:before
|
&:before
|
||||||
content "\efde"
|
content "\efde"
|
||||||
font-family remixicon
|
font-family remixicon
|
||||||
margin-right .5rem
|
margin-right .15rem
|
||||||
opacity 0.6
|
opacity 0.6
|
||||||
.article-category-link
|
.article-category-link
|
||||||
@extend $block-caption
|
@extend $block-caption
|
||||||
|
@ -4,10 +4,36 @@
|
|||||||
list-unstyled()
|
list-unstyled()
|
||||||
margin-right -.5rem
|
margin-right -.5rem
|
||||||
margin-left -.5rem
|
margin-left -.5rem
|
||||||
> .category-list-item
|
.category-list-item
|
||||||
display inline-block
|
margin: 10px 10px;
|
||||||
padding .5rem 1rem
|
padding: 0 14px;
|
||||||
|
display: inline-block;
|
||||||
|
text-align: center;
|
||||||
|
height: 38px;
|
||||||
|
min-width: 80px;
|
||||||
|
line-height: 38px;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-weight: 500;
|
||||||
|
border-radius: 5px;
|
||||||
|
word-wrap: break-word;
|
||||||
|
cursor: pointer;
|
||||||
|
box-shadow: 0 3px 5px rgba(0, 0, 0, .12);
|
||||||
|
background-color: water
|
||||||
&:before
|
&:before
|
||||||
content "\efde"
|
content "\efde"
|
||||||
font-family remixicon
|
font-family remixicon
|
||||||
margin-right .5rem
|
margin-right .5rem
|
||||||
|
display inline-block
|
||||||
|
vertical-align middle
|
||||||
|
&:hover
|
||||||
|
background: linear-gradient(to right, link-hover-color 0%, link-active-color 100%) !important;
|
||||||
|
a
|
||||||
|
color: #fff
|
||||||
|
&:before
|
||||||
|
color: #fff
|
||||||
|
a
|
||||||
|
display inline-block
|
||||||
|
vertical-align middle
|
||||||
|
text-decoration: none
|
||||||
|
color: body-color
|
||||||
|
|
@ -12,3 +12,15 @@
|
|||||||
content "\eec3"
|
content "\eec3"
|
||||||
font-family remixicon
|
font-family remixicon
|
||||||
margin-right .5rem
|
margin-right .5rem
|
||||||
|
display inline-block
|
||||||
|
vertical-align middle
|
||||||
|
color: tag-color
|
||||||
|
.tag-list-link
|
||||||
|
text-decoration: none
|
||||||
|
height 30px
|
||||||
|
line-height 30px
|
||||||
|
padding: 5px 15px
|
||||||
|
font-size: 1.5rem
|
||||||
|
border-radius: 15px
|
||||||
|
background-color tag-color
|
||||||
|
color white
|
||||||
|
Loading…
Reference in New Issue
Block a user