47 lines
742 B
CSS
47 lines
742 B
CSS
html {
|
|
font-size: 1.5rem;
|
|
font-family: var(--police);
|
|
}
|
|
|
|
#content2 {
|
|
text-align: center;
|
|
justify-content: center;
|
|
width: 900px;
|
|
}
|
|
|
|
.contentchild {
|
|
margin: 50px;
|
|
}
|
|
|
|
/* bouton retour à l'accueil */
|
|
.clique {
|
|
display: flex;
|
|
background-color: #0000ff94;
|
|
padding: 20px;
|
|
padding-bottom: 0px;
|
|
border-radius: 30px;
|
|
box-shadow: 0px 25px 80px rgb(0 0 0 / 50%);
|
|
width: auto;
|
|
height: auto;
|
|
max-width: 700;
|
|
transition: all ,0.5s;
|
|
}
|
|
|
|
|
|
.clique:hover {
|
|
box-shadow: 0px 25px 80px rgba(0, 0, 0, 0.60);
|
|
}
|
|
|
|
.clique>a>img {
|
|
height: 50px;
|
|
width: 50px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
display: flex;
|
|
/* padding: 20px; */
|
|
}
|
|
|
|
.clique>a>h2 {
|
|
text-align: center;
|
|
}
|