POC Campus Condorcet : integration graphique, partie 2

This commit is contained in:
Paul Marillonnet 2017-05-23 15:35:11 +02:00
parent bd5d3915b2
commit e970fa15f5
2 changed files with 19 additions and 0 deletions

View File

@ -12,3 +12,18 @@ h2 {
font-family :'Roboto Slab', serif;
color: #109BC9;
}
div#centered-column{
width: 500px;
float:left;
}
div#padding-left{
width: calc(50% - 250px);
float:left;
}
div#padding-right{
width: calc(50% - 250px);
float:right;
}

View File

@ -3,6 +3,8 @@
{% block content %}
<div id="padding-left">&nbsp;</div>
<div id="centered-column">
{{ form.user_nickname }}<br>
{{ form.user_help_msg }}<br><br>
@ -28,4 +30,6 @@
{% include "registration_field.html" with field=form.hote_unite %}
<input type="submit" value="Submit" />
</form>
</div>
<div id="padding-right">&nbsp;</div>
{% endblock %}