mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
23902aca1f
unifie les boutons (input et lien)
46 lines
636 B
CSS
46 lines
636 B
CSS
body {
|
|
max-width: 320px;
|
|
margin: auto;
|
|
padding: 30px 20px;
|
|
font-family: sans-serif;
|
|
font-size: 14px;
|
|
}
|
|
|
|
/* Titres */
|
|
h1 {
|
|
text-align: center;
|
|
font-size: 20px;
|
|
}
|
|
|
|
/* Formulaires */
|
|
.btn,
|
|
button,
|
|
[type="submit"] {
|
|
display: block;
|
|
width: 200px;
|
|
margin: 10px auto auto;
|
|
padding: 8px 0;
|
|
text-align: center;
|
|
color: blue;
|
|
border: 1px solid blue;
|
|
border-radius: 4px;
|
|
background-color: white;
|
|
}
|
|
|
|
label,
|
|
input {
|
|
display: inline;
|
|
}
|
|
|
|
/* Apparence */
|
|
section:not(:last-of-type) {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
input[type="text"], input[type="email"] {
|
|
border:0;
|
|
border-bottom:1px solid black;
|
|
line-height:60%;
|
|
}
|
|
|