PROJET-WEB_STRI1A/WEB/deposerTrajet/depotTrajet.css

101 lines
1.5 KiB
CSS
Raw Permalink Normal View History

2019-05-22 00:10:25 +02:00
*{
font-family: "Arial";
padding: 0;
margin: 0;
}
2019-05-22 00:27:45 +02:00
body{
2019-05-22 22:52:03 +02:00
background-image:url("../ressources/image/background.jpg");
2019-05-23 17:06:08 +02:00
background-attachment: fixed;
background-size: cover;
2019-05-22 00:27:45 +02:00
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
}
h1{
font-size: 2em;
text-align: center;
margin-bottom: 3em;
}
2019-05-22 00:10:25 +02:00
.villeSelect, .villeText{
box-sizing: border-box;
margin-bottom: 0.7em;
}
.villeText{
width: 20%;
}
.villeSelect{
margin-bottom: 0.7em;
margin-left: 2%;
width: 33%;
}
2019-05-22 00:27:45 +02:00
#supprimerEtape{
display: none;
}
#boutonEtape{
margin-top: 1.5em;
2019-05-22 00:10:25 +02:00
display: flex;
flex-wrap: wrap;
flex-direction: row;
2019-05-22 00:27:45 +02:00
justify-content: space-between;
}
#submit{
margin-top: 1em;
margin-left: 50%;
transform: translate(-50%);
2019-05-22 00:10:25 +02:00
}
#formulaire{
2019-05-23 17:10:39 +02:00
margin-top: 3em;
2019-05-22 00:10:25 +02:00
background-color: white;
border-radius: 10px;
padding: 4em;
width: 40%;
2019-05-23 17:10:39 +02:00
margin-bottom: 3em;
2019-05-22 00:10:25 +02:00
}
.form{
box-sizing: border-box;
width: 55%;
margin-bottom: 0.7em;
}
.button{
cursor: pointer;
font-weight: bold;
padding: 8px;
color: white;
background-color: rgb(65, 154, 28);
border-radius: 5em;
border: none;
}
.line{
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: left;
width: 100%;
}
.error{
2019-05-22 00:27:45 +02:00
margin-top: 1em;
2019-05-22 00:10:25 +02:00
color: red;
text-align: center;
}
.label{
box-sizing: border-box;
font-size: 1.1em;
width: 45%;
min-width: 8em;
}