funky-framadate-front/public/style.css
Yannick Francois 23902aca1f Ajoute la ponctuation
unifie les boutons (input et lien)
2018-10-19 11:44:06 +02:00

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%;
}