diff --git a/static/css/formulaire_inscription.css b/static/css/formulaire_inscription.css index ed4aca3..7c4e793 100644 --- a/static/css/formulaire_inscription.css +++ b/static/css/formulaire_inscription.css @@ -1,3 +1,80 @@ +/* Le style de la barre de progression du haut */ + +#progressbar { + margin-bottom: 30px; + overflow: hidden; + color: lightgrey +} + +#progressbar .active { + color: #e74c3c +} + +#progressbar li { + list-style-type: none; + font-size: 15px; + width: 25%; + float: left; + position: relative; + font-weight: 400 +} + +#progressbar #identite:before { + font-family: FontAwesome; + content: "\f007" +} + +#progressbar #responsables:before { + font-family: FontAwesome; + content: "\f0c0" +} + +#progressbar #scolarite:before { + font-family: FontAwesome; + content: "\f040" +} + +#progressbar #projet:before { + font-family: FontAwesome; + content: "\f00c" +} + +#progressbar li:before { + width: 50px; + height: 50px; + line-height: 45px; + display: block; + font-size: 20px; + color: #ffffff; + background: lightgray; + border-radius: 50%; + margin: 0 auto 10px auto; + padding: 2px +} + +#progressbar li:after { + content: ''; + width: 100%; + height: 2px; + background: lightgray; + position: absolute; + left: 0; + top: 25px; + z-index: -1 +} + +#progressbar li.active:before, +#progressbar li.active:after { + background: #e74c3c +} + +.progress { + height: 20px +} + +.progress-bar { + background-color: #e74c3c +} /* Retrait de asterisk des champs requis */ .asteriskField { diff --git a/templates/base.html b/templates/base.html index d388a90..b97fa23 100644 --- a/templates/base.html +++ b/templates/base.html @@ -9,7 +9,7 @@ - + {% block stylesheet %}{% endblock %} diff --git a/templates/inscription/formulaire_inscription.html b/templates/inscription/formulaire_inscription.html index 54b6584..e15bbdc 100644 --- a/templates/inscription/formulaire_inscription.html +++ b/templates/inscription/formulaire_inscription.html @@ -13,14 +13,24 @@ {{ form.media }} {% block content %} +

Inscription au Lycée Expérimental

{{ wizard.form.media }} +
- + +
+
+
+
-

Étape {{ wizard.steps.step1 }} sur {{ wizard.steps.count }} - {{ wizard.form.name }}

{% csrf_token %}