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

View File

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