This commit is contained in:
Le Libre Au Quotidien 2019-12-30 14:44:53 +01:00
parent adcdaf911f
commit c727aa935e
4 changed files with 27 additions and 6 deletions

View File

@ -1,9 +1,12 @@
<h1>Nom du sondage</h1>
<p>Ce sondage est protégé par un mot de passe</p>
<h1 class="margin-btm-x3">Nom du sondage</h1>
<p class="margin-btm-x6">Ce sondage est protégé par un mot de passe</p>
<form>
<label for="password"></label>
<input type="password" name="password">
<input type="submit" name="view" value="Voir" class="btn btn--small btn--purple">
<input type="submit" name="go" value="Accéder au sondage" class="btn btn--primary btn--full">
<label for="password">Mot de passe :</label>
<section class="row">
<input class="margin-btm-x5" type="password" name="password">
<input type="submit" name="view" value="Voir" class="btn btn--small btn--purple">
</section>
<input type="submit" name="go" value="Accéder au sondage" class="btn btn--primary btn--full btn--semi-bold">
</form>

View File

@ -0,0 +1,12 @@
form{
display:flex;
flex-direction: column;
}
label{
font-weight: 600;
font-size: 18px;
}
h1{
display:flex;
align-self: center;
}

View File

@ -31,6 +31,9 @@
&--primary {
@include btnTheme($primary_color);
}
&--semi-bold {
font-weight: 600;
}
&--black-text {
color:black;
}

View File

@ -108,6 +108,9 @@
.margin-top-x8{
margin-top:80px;
}
.margin-right-x2{
margin-bottom:20px;
}
.text-14{
font-size: 14px;
}