Some minimalistic design

This commit is contained in:
Frédéric Péters 2010-06-01 16:37:00 +02:00
parent a71c7677db
commit b2d0729a04
2 changed files with 21 additions and 2 deletions

View File

@ -4,8 +4,24 @@ html, body {
color: black;
}
div#wrap {
width: 40em;
margin: 5em auto;
-moz-border-radius: 6px;
-webkit-border-radius:6px;
-moz-box-shadow: 0 0 4px rgba(0,0,0,0.75);
-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.75);
}
div#header {
background: #eee;
text-align: center;
padding: 2ex;
}
div#content {
margin: 1em 1ex;
padding: 1ex;
}
div#footer {

View File

@ -8,9 +8,11 @@
</head>
<body>
<div id="wrap">
<div id="header">
{% block header %}
{% endblock %}
{% block header %}
<h1>Authentic</h1>
{% endblock %}
</div>
<div id="content">
@ -22,6 +24,7 @@
Copyright &copy; 2010 Entr'ouvert
{% endblock %}
</div>
</div>
</body>
</html>