site-accueil-insa/assets/css/page/vacances.css

61 lines
840 B
CSS
Raw Normal View History

2022-06-12 21:45:19 +02:00
main {
2022-06-12 16:12:39 +02:00
text-align: center;
2022-06-12 21:45:19 +02:00
width: 100vw;
2022-06-12 16:12:39 +02:00
}
2022-06-12 21:45:19 +02:00
img {
width: 100%;
2022-06-12 23:52:11 +02:00
background-color: transparent;
}
form {
margin: 20px;
}
2022-06-13 18:41:47 +02:00
.input {
display: inline-block;
width: 35%;
background-color: white;
border: 3px solid grey;
border-radius: 4px;
text-align: center;
height: 30px;
margin: 5px;
}
2023-06-22 17:30:50 +02:00
.numeric-input {
display: inline-block;
width: 10%;
background-color: white;
border: 3px solid grey;
border-radius: 4px;
text-align: center;
height: 30px;
margin: 5px;
}
2022-06-13 18:41:47 +02:00
.submit {
2022-06-12 23:52:11 +02:00
width: 50%;
2022-06-13 18:41:47 +02:00
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);
2022-06-12 21:45:19 +02:00
}
2022-06-13 18:41:47 +02:00
2022-06-12 21:45:19 +02:00
@media (max-width: 1500px) {
section {
2022-06-13 18:41:47 +02:00
display: flex;
2022-06-12 21:45:19 +02:00
width: 90vw;
2022-06-13 18:41:47 +02:00
aspect-ratio: auto;
height: auto;
2022-06-12 21:45:19 +02:00
}
2022-06-12 16:12:39 +02:00
}