Skip to content

Commit ef16ec5

Browse files
committed
modifed header and footer. Moved paginator buttons
1 parent e15fc0c commit ef16ec5

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

_includes/pagination.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
<!-- Post list -->
2+
{% include paginator-list.html src=paginator %}
3+
14
<!-- Pagination buttons -->
25
<div class="pagination">
36
<!-- Previous button -->
@@ -6,7 +9,7 @@
69
&#9664;
710
</a>
811
{% else %}
9-
<span class="button"> &#9664; </span>
12+
<span class="button_null"> &#9664; </span>
1013
{% endif %}
1114

1215
<!-- pages -->
@@ -20,9 +23,6 @@
2023
&#9654;
2124
</a>
2225
{% else %}
23-
<span class="button"> &#9654; </span>
26+
<span class="button_null"> &#9654; </span>
2427
{% endif %}
2528
</div>
26-
27-
<!-- Post list -->
28-
{% include paginator-list.html src=paginator %}

_sass/minima/_layout.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
// Positioning context for the mobile navigation icon
1313
position: relative;
14+
background: #f8f9f9;
15+
1416
//background: black; //black;// #ff9933; //#f8f9f9;
1517
}
1618

@@ -117,6 +119,7 @@
117119
border-bottom: none;//5px solid $grey-color-dark;
118120
padding: $spacing-unit 0;
119121

122+
box-shadow: 0px -1px 6px $grey-color-light;
120123
background: #f8f9f9; //#ff9933; //
121124
}
122125

_sass/pagination.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@
8282
.button_link:hover {
8383
background: #b3d1ff;
8484
text-decoration: none;
85+
color: blue;
86+
}
87+
88+
.button_null {
89+
@extend .button;
90+
color: $grey-color-light;
8591
}
8692

8793
.page_number {
@@ -97,6 +103,7 @@
97103
display: flex;
98104
flex-direction: row;
99105
justify-content: center;
106+
padding-top: 10px;
100107

101108
h3 {
102109
text-align: center;

0 commit comments

Comments
 (0)