Skip to content

Commit d59881c

Browse files
committed
max .obvious-color
1 parent 618c1a6 commit d59881c

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

apps/blog/static/blog/css/style.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1386,13 +1386,13 @@ img.aligncenter, img.alignright, img.alignleft {
13861386
}
13871387

13881388
#pagenavi .pages {
1389-
color: white
1389+
color: white;
13901390
}
13911391

13921392
#friend .friend-url {
1393-
color: #A8A8A8
1393+
color: #A8A8A8;
13941394
}
13951395

13961396
.obvious-color {
1397-
color: #A8A8A8
1397+
color: #A8A8A8 !important;
13981398
}

apps/blog/templates/blog/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<meta name='description' content="一个程序员的技术积累,包括各种各样的问题">
99
<title>低调诺的博客</title>
1010
<link rel="shortcut icon" type="image/x-icon" href="{% static 'blog/img/favicon.ico' %}" media="screen" />
11-
<link rel="stylesheet" href="{% static 'blog/css/style.css' %}">
1211
<link rel="stylesheet" href="{% static 'lib/css/bootstrap.min.css' %}">
12+
<link rel="stylesheet" href="{% static 'blog/css/style.css' %}">
1313
<style type="text/css">
1414
body { background: #000; margin: 0; padding:0; }
1515
canvas {position: fixed; z-index: -1}

apps/blog/templates/blog/index.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,12 @@ <h1 class="title">
4343

4444
{% if page.has_previous or page.has_next %}
4545
<div>
46-
{% if page.has_previous %}<a href="?q={{ query }}&page={{ page.previous_page_number }}">{% endif %}« Previous{% if page.has_previous %}</a>{% endif %}
47-
|
48-
{% if page.has_next %}<a href="?q={{ query }}&page={{ page.next_page_number }}">{% endif %}Next »{% if page.has_next %}</a>{% endif %}
46+
{% if page.has_previous %}
47+
<a class='obvious-color' href="?q={{ query }}&page={{ page.previous_page_number }}">« Previous |</a>
48+
{% endif %}
49+
{% if page.has_next %}
50+
<a class='obvious-color' href="?q={{ query }}&page={{ page.next_page_number }}">Next »</a>
51+
{% endif %}
4952
</div>
5053
{% endif %}
5154
{% else %}

static/blog/css/style.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1386,13 +1386,13 @@ img.aligncenter, img.alignright, img.alignleft {
13861386
}
13871387

13881388
#pagenavi .pages {
1389-
color: white
1389+
color: white;
13901390
}
13911391

13921392
#friend .friend-url {
1393-
color: #A8A8A8
1393+
color: #A8A8A8;
13941394
}
13951395

13961396
.obvious-color {
1397-
color: #A8A8A8
1397+
color: #A8A8A8 !important;
13981398
}

0 commit comments

Comments
 (0)