Skip to content

Commit 38f80c7

Browse files
committed
font color
1 parent c861243 commit 38f80c7

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

_includes/paginator-list.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<div id="container_in">
99
<div id="list_in">
1010
<a href="{{ post.url | relative_url }}"> {{ post.title | escape }} </a>
11-
<div>
11+
<div id="categories">
1212
<!-- directory -->
1313
{% for category in post.categories %}
1414
<small>{{ category }}</small>
@@ -18,7 +18,7 @@
1818
{% endfor %}
1919
</div>
2020
</div>
21-
<span> {{ post.date | date: date_format }} </span>
21+
<span id="date"> {{ post.date | date: date_format }} </span>
2222
</div>
2323
</li>
2424
{% endfor %}

_sass/pagination.scss

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,17 @@
1717
display: flex;
1818
flex-direction: column;
1919
}
20-
20+
2121
li {
2222
margin-bottom: 10px;
2323
margin-left: 10px;
2424
}
2525

26-
span {
26+
#categories {
27+
color: $grey-color-dark;
28+
}
29+
30+
#date {
2731
color: gray;
2832
text-align: right;
2933
font-size: 14px;
@@ -41,7 +45,7 @@
4145
#container_in {
4246
flex-direction: column;
4347
}
44-
span {
48+
#date {
4549
text-align: left;
4650
}
4751
}
@@ -92,7 +96,7 @@
9296

9397
h3 {
9498
text-align: center;
95-
color: gray;
99+
color: $grey-color-dark;
96100
margin-left: 10px;
97101
margin-right: 10px;
98102
}

0 commit comments

Comments
 (0)