article/page title text is smaller, heading uppercase text also is smaller
diff --git a/static/css/style.less b/static/css/style.less
index bc2f5e8..ed0d5a7 100644
--- a/static/css/style.less
+++ b/static/css/style.less
@@ -50,13 +50,13 @@
margin: 0 0 15px 0;
font-size: 0.75em;
}
-
+
ul {
margin: 40px 0 0 0;
padding-left: 0;
font-size: 0.875em;
list-style-type: none;
-
+
li {
margin-right: 5px;
display: inline;
@@ -69,7 +69,7 @@
}
}
}
- }
+ }
}
main {
@@ -80,7 +80,7 @@
p {
font-weight: bold;
- font-size: 0.75em;
+ font-size: 0.625em;
text-transform: uppercase;
}
}
diff --git a/templates/article.html b/templates/article.html
index 6c67492..9417a68 100644
--- a/templates/article.html
+++ b/templates/article.html
@@ -10,7 +10,7 @@
{% block content %}
<article>
<div id="article_title">
- <h2><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2>
+ <h3><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark">{{ article.title }}</a></h3>
</div>
<div id="article_text">
diff --git a/templates/index.html b/templates/index.html
index 670d4b1..50c1296 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -3,7 +3,7 @@
{% for article in articles_page.object_list %}
<article>
<div id="article_title">
- <h2><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title }}">{{ article.title }}</a></h2>
+ <h3><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark">{{ article.title }}</a></h3>
</div>
<div id="article_text">
{{ article.summary }}
diff --git a/templates/page.html b/templates/page.html
index d293b1a..a2945ed 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -7,7 +7,7 @@
{% block content %}
<article>
<div id="article_title">
- <h2><a href="{{ SITEURL }}/{{ page.url }}" rel="bookmark">{{ page.title }}</a></h2>
+ <h3><a href="{{ SITEURL }}/{{ page.url }}" rel="bookmark">{{ page.title }}</a></h3>
</div>
<div id="article_text">
{{ page.content }}