teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

CSSを追記しました。

2020/06/18 23:44

投稿

Karafuru
Karafuru

スコア0

title CHANGED
File without changes
body CHANGED
@@ -37,6 +37,40 @@
37
37
  </dl>
38
38
  <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(array('query'=>$the_query)); } ?>
39
39
  <?php wp_reset_postdata(); ?>
40
+
41
+ /* Wp-Pagenavi */
42
+ .wp-pagenavi {
43
+ clear: both;
44
+ text-align:center;
45
+ }
46
+ .wp-pagenavi a, .wp-pagenavi span {
47
+ color: #fff;
48
+ background-color: #1C181A;
49
+ border: 1px solid #1C181A;
50
+ padding: 5px 12px;
51
+ margin: 0 2px;
52
+ white-space: nowrap;
53
+ -moz-border-radius: 3px;
54
+ -webkit-border-radius: 3px;
55
+ border-radius: 3px;
56
+ -webkit-transition: 0.2s ease-in-out;
57
+ -moz-transition: 0.2s ease-in-out;
58
+ -o-transition: 0.2s ease-in-out;
59
+ transition: 0.2s ease-in-out;
60
+ text-align: center;
61
+ text-decoration: none;
62
+ }
63
+ .wp-pagenavi a:hover{
64
+ color: #FFF;
65
+ background-color: #9400d3;
66
+ border-color: #9400d3;
67
+ }
68
+ .wp-pagenavi span.current{
69
+ color: #777;
70
+ background-color: #CFD5DA;
71
+ border-color: #CFD5D;
72
+ font-weight: bold;
73
+ }
40
74
  ```
41
75
 
42
76
  ### 試したこと