Style for header

This commit is contained in:
Michal Čihař 2012-03-01 10:26:18 +01:00
parent 4d5105b254
commit 4bbc9ec476
2 changed files with 16 additions and 1 deletions

View File

@ -26,7 +26,7 @@
</head>
<body>
<h1>{% include "title.html" %}</h1>
<h1 class="ui-state-default">{% include "title.html" %}</h1>
<ul class="menu">
{% if user.is_authenticated %}
@ -55,8 +55,10 @@
{% endfor %}
{% endif %}
<div class="content">
{% block content %}
{% endblock %}
</div>
<ul class="footer">
<li>{% blocktrans %}Powered by <a href="http://weblate.org">Weblate {{ version }}</a>{% endblocktrans %}</li>
</ul>

View File

@ -1,3 +1,12 @@
body {
color:black;
background:white;
padding:0;
margin:0;
}
div.content {
margin: 0.5em;
}
td.right {
text-align: right;
}
@ -22,3 +31,7 @@ table.translator th.source {
width: 30em;
max-width: 50%;
}
h1 {
padding: 0.5em;
margin: 0;
}