site-accueil-insa/assets/css/page/vacances.css
2022-07-31 12:28:22 +02:00

59 lines
No EOL
803 B
CSS

main {
text-align: center;
width: 100vw;
}
section {
display: inline-block;
background-color: rgba(255,255,255,0.5);
aspect-ratio: 425/600;
width: 43vw;
margin: 60px auto 1vw;
}
img {
width: 100%;
background-color: transparent;
}
form {
margin: 20px;
}
.input {
display: inline-block;
width: 35%;
background-color: white;
border: 3px solid grey;
border-radius: 4px;
text-align: center;
height: 30px;
margin: 5px;
}
.submit {
width: 50%;
background-color: grey;
border: 3px solid grey;
color: white;
border-radius: 4px;
text-align: center;
height: 30px;
margin: 5px;
font-weight: bold;
}
.submit:hover {
transition: 0.3s ease;
transform: scale(1.05);
}
@media (max-width: 1500px) {
section {
display: flex;
width: 90vw;
aspect-ratio: auto;
height: auto;
}
}