-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (99 loc) · 1.93 KB
/
Copy pathstyle.css
File metadata and controls
103 lines (99 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
Theme Name: NexT WP
Theme URI: https://github.com/pengtikui/NexT
Author: Paranoid_K
Author URI: http://pengtikui.cn/
Version: 0.1
Description: NexT WP 是一款移植自 Hexo 的主题 <a href="https://github.com/iissnan/hexo-theme-next">NexT</a> 的 WordPress 主题
Tag: Hexo, NexT
*/
/* highlight */
.hljs{
background: none !important;
}
/* 404 page */
.next-404 h1{
font-size: 7em;
color: #000;
font-weight: bold;
}
.next-404 p{
margin-bottom: 10px;
}
/* pagination */
.pagination {
margin: 120px 0 40px;
text-align: center;
border-top: 1px solid #eee;
}
.pagination h2{
display: none;
}
.page-number-basic,
.pagination .prev,
.pagination .next,
.pagination .page-numbers,
.pagination .space {
display: inline-block;
position: relative;
top: -1px;
margin: 0 6px;
padding: 0 10px;
line-height: 30px;
}
@media (max-width: 767px) {
.page-number-basic,
.pagination .prev,
.pagination .next,
.pagination .page-numbers,
.pagination .space {
margin: 0 5px;
}
}
.pagination .prev,
.pagination .next,
.pagination .page-numbers {
border-bottom: 0;
border-top: 1px solid #eee;
transition-property: border-color;
transition-duration: 0.2s;
transition-timing-function: ease-in-out;
transition-delay: 0s;
}
.pagination .prev:hover,
.pagination .next:hover,
.pagination .page-numbers:hover {
border-top-color: #222;
}
.pagination .space {
padding: 0;
margin: 0;
}
.pagination .prev {
margin-left: 0;
}
.pagination .next {
margin-right: 0;
}
.pagination .page-numbers.current {
color: #fff;
background: #ccc;
border-top-color: #ccc;
}
@media (max-width: 767px) {
.pagination {
border-top: none;
}
.pagination .prev,
.pagination .next,
.pagination .page-numbers {
margin-bottom: 10px;
border-top: 0;
border-bottom: 1px solid #eee;
}
.pagination .prev:hover,
.pagination .next:hover,
.pagination .page-numbers:hover {
border-bottom-color: #222;
}
}