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
This commit is contained in:
Matt
2013-05-12 16:46:53 +00:00
parent ff2e25c964
commit 1abef3723b
10 changed files with 656 additions and 520 deletions

View File

@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% block content %}
<h1>Archives</h1>
<h3>Archives</h3>
<table class="table-archive">
<tbody>
@@ -14,4 +14,4 @@
</tbody>
</table>
{% endblock %}
{% endblock %}

View File

@@ -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>
</footer>

View File

@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}
<h1>{{ page.title }}</h1>
<h3>{{ page.title }}</h3>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">PDF</a>{% endif %}