You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SAE4.01_FORMULAIRE/Source/Views/CSS/form.css

87 lines
1.3 KiB

#container_form {
display: flex;
flex-direction: row;
justify-content: center;
margin-top: 5%;
}
#container_form h2{
padding-top: 1%;
}
#container_form #button {
margin-top: 5%;
width: 20%;
height: 5%;
margin-left: 79%;
margin-bottom: 10%;
cursor: pointer;
background-color: #ebceb2;
color: black;
border-radius: 20px;
}
#container_form #button:hover {
background-color: rgb(23,143,150);
}
#container_testimony, #container_personalInfos {
display: flex;
flex-direction: column;
margin-right: 2.5%;
margin-left: 2.5%;
}
#container_personalInfos {
width: 15%;
}
#container_personalInfos .inputs {
margin-bottom: 4%;
border-radius: 10px;
height: 6%;
padding-left: 4%;
float: left;
}
#container_testimony {
width: 60%;
}
#container_testimony #description {
height: 10em;
border-radius: 20px;
padding: 3%;
font-size: 1.2em;
margin-bottom: 4%;
}
#container_testimony #video {
font-weight: bold;
}
textarea {
resize: none;
}
@media screen and (max-width: 1024px)
{
#container_form {
flex-direction: column;
align-items: center;
}
#container_personalInfos {
width: 60%;
}
#container_form #button {
margin-top: 12%;
}
#logoUCA {
display: none;
}
}