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

53 lines
732 B
CSS
Raw Normal View History

2022-06-12 13:49:12 +02:00
* {
text-align: center;
}
section {
display: block;
2022-06-13 16:35:44 +02:00
background-color: rgba(255,255,255,0.5);
2022-06-12 13:49:12 +02:00
width: 80%;
max-width: 800px;
margin-left: auto;
margin-right: auto;
padding: 50px;
font-size: 1.2rem;
margin-top: 40px;
2022-06-13 18:41:47 +02:00
}
.input {
width: 50%;
background-color: white;
border: 3px solid grey;
border-radius: 4px;
text-align: center;
height: 50px;
margin: 10px;
font-weight: bold;
}
.submit {
width: 50%;
background-color: grey;
border: 3px solid grey;
color: white;
border-radius: 4px;
text-align: center;
height: 50px;
margin: 10px;
font-weight: bold;
}
.submit:hover {
transition: 0.3s ease;
transform: scale(1.05);
}
@media (max-width: 700px) {
.submit {
width: 80%;
}
.input {
width: 80%;
}
2022-06-12 13:49:12 +02:00
}