dontmeetme/styles/today/index.css
Frédéric Egenscheviller b5defa213d petites modifs
2021-11-02 00:14:06 +01:00

43 lines
740 B
CSS

.imgbouton{
width: 350px;
height: auto;
border-radius: 5px;
}
#makeachoicehf{
display: flex;
flex-direction: row;
justify-content: center;
margin: auto;
width: auto;
padding-top: 2rem;
padding-bottom: 2rem ;
gap: 1rem;
}
.tuile {
border-radius: 10px;
margin: 7px;
height: auto;
width: 350px;
border: solid black 4px;
background: rgb(255, 131, 131);
transition : 0.3s ease-in-out;
display:flex;
flex-direction: column;
justify-content:center;
text-decoration: none;
text-align: center;
align-items: center;
}
.tuile:hover{
background-color: rgb(255, 255, 255);
box-shadow: black ;
transform:scale(1.05);
}
p{
color: black;
}