diff options
author | Matt <s@tuxlite.com> | 2013-05-12 16:46:53 +0000 |
---|---|---|
committer | Matt <s@tuxlite.com> | 2013-05-12 16:46:53 +0000 |
commit | 1abef3723b4db5b3c287db58fbe9275064384ad8 (patch) | |
tree | 9e5432871233f29cc4cd2cc308a6728e7e148ff1 /tuxlite_zf/templates/base.html | |
parent | ff2e25c964ba12505a402d00c9fa566367161667 (diff) | |
download | pelican-themes-1abef3723b4db5b3c287db58fbe9275064384ad8.tar.gz |
Fix misc styling bugs.
- Change header and site name colors
- Fix heading sizes for pages and archives
- Change navigation link color
- Fix syntax highlighting. Now using solarized theme
- Fix HTML lists using list-style-position
- Increased spacing between posts
- Update foundation CSS, JS files
Diffstat (limited to 'tuxlite_zf/templates/base.html')
-rw-r--r-- | tuxlite_zf/templates/base.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tuxlite_zf/templates/base.html b/tuxlite_zf/templates/base.html index 3ba3bd3..2d5e1f2 100644 --- a/tuxlite_zf/templates/base.html +++ b/tuxlite_zf/templates/base.html @@ -6,10 +6,10 @@ <title>{% block title %}{{ SITENAME }}{%endblock%}</title>
- <link rel="stylesheet" href="{{ SITEURL }}/theme/css/normalize.css">
- <link rel="stylesheet" href="{{ SITEURL }}/theme/css/foundation.min.css">
- <link rel="stylesheet" href="{{ SITEURL }}/theme/css/style.css">
- <link rel="stylesheet" href="{{ SITEURL }}/theme/css/pygments.css">
+ <link rel="stylesheet" href="{{ SITEURL }}/theme/css/normalize.css" />
+ <link rel="stylesheet" href="{{ SITEURL }}/theme/css/foundation.min.css" />
+ <link rel="stylesheet" href="{{ SITEURL }}/theme/css/style.css" />
+ <link rel="stylesheet" href="{{ SITEURL }}/theme/css/pygments.css" />
<script src="{{ SITEURL }}/theme/js/custom.modernizr.js"></script>
</head>
@@ -30,12 +30,12 @@ <div class="large-9 columns">
<ul class="button-group navigation">
{% for title, link in MENUITEMS %}
- <li><a href="{{ link }}" class="button small">{{ title }}</a></li>
+ <li><a href="{{ link }}" class="button secondary small">{{ title }}</a></li>
{% endfor %}
{% if DISPLAY_PAGES_ON_MENU %}
{% for page in PAGES %}
- <li><a href="{{ SITEURL }}/{{ page.url }}" class="button small">{{ page.title }}</a></li>
+ <li><a href="{{ SITEURL }}/{{ page.url }}" class="button secondary small">{{ page.title }}</a></li>
{% endfor %}
{% endif %}
</ul>
@@ -110,4 +110,4 @@ </div>
</div>
</div>
-</footer>
\ No newline at end of file +</footer>
|