2018-09-24 23:32:15 +02:00
|
|
|
body {
|
2018-09-25 17:37:06 +02:00
|
|
|
max-width: 320px;
|
2018-09-24 23:32:15 +02:00
|
|
|
margin: auto;
|
2018-09-25 17:37:06 +02:00
|
|
|
padding: 30px 20px;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 14px;
|
2018-09-24 23:32:15 +02:00
|
|
|
}
|
|
|
|
|
2018-09-25 17:37:06 +02:00
|
|
|
/* Titres */
|
|
|
|
h1 {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 20px;
|
2018-09-24 23:32:15 +02:00
|
|
|
}
|
|
|
|
|
2018-09-25 17:37:06 +02:00
|
|
|
/* Formulaires */
|
|
|
|
.btn,
|
|
|
|
button,
|
|
|
|
[type="submit"] {
|
|
|
|
display: block;
|
|
|
|
width: 200px;
|
|
|
|
margin: 10px auto auto;
|
2018-10-19 11:43:45 +02:00
|
|
|
padding: 8px 0;
|
2018-09-25 17:37:06 +02:00
|
|
|
text-align: center;
|
|
|
|
color: blue;
|
|
|
|
border: 1px solid blue;
|
|
|
|
border-radius: 4px;
|
2018-10-19 11:43:45 +02:00
|
|
|
background-color: white;
|
2018-09-24 23:32:15 +02:00
|
|
|
}
|
|
|
|
|
2018-09-25 17:37:06 +02:00
|
|
|
label,
|
|
|
|
input {
|
|
|
|
display: inline;
|
2018-09-24 23:32:15 +02:00
|
|
|
}
|
|
|
|
|
2018-09-25 17:37:06 +02:00
|
|
|
/* Apparence */
|
|
|
|
section:not(:last-of-type) {
|
|
|
|
margin-bottom: 30px;
|
2018-09-26 21:59:09 +02:00
|
|
|
}
|
|
|
|
|
2018-10-19 11:43:45 +02:00
|
|
|
input[type="text"], input[type="email"] {
|
2018-09-26 21:59:09 +02:00
|
|
|
border:0;
|
|
|
|
border-bottom:1px solid black;
|
|
|
|
line-height:60%;
|
|
|
|
}
|
|
|
|
|
2018-10-19 12:29:12 +02:00
|
|
|
.toggle-field {
|
|
|
|
color: blue;
|
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overlay {
|
|
|
|
background: rgba(1, 1, 1, .3);
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 5;
|
|
|
|
}
|
2018-10-20 00:12:58 +02:00
|
|
|
|
2018-10-19 12:29:12 +02:00
|
|
|
.modal {
|
|
|
|
background: #fff;
|
|
|
|
top: 10%;
|
|
|
|
left: 40%;
|
|
|
|
padding: 10px;
|
|
|
|
position: absolute;
|
2018-10-20 00:12:58 +02:00
|
|
|
z-index: 10;
|
2018-10-19 12:29:12 +02:00
|
|
|
}
|