Public Access
5
0

credits partiel sans media

This commit is contained in:
2025-11-28 13:47:46 -05:00
parent 64c0fcd15b
commit d37d0a0853
4 changed files with 312 additions and 7 deletions

View File

@@ -885,4 +885,109 @@ blockquote a {
.armures .habilites {
position: relative;
z-index: 15;
}
/****************************/
/* PAGE: Crédits */
/* AUTEUR: Jeremy */
/****************************/
.credits {
background: #13172c url("../images/imagesTeam/Intro.png") center;
background-size: cover;
background-position: top;
color: #ffefe5;
}
.credits header.introduction {
background: #13172c url("../images/imagesDE/temporaire.webp") center/cover fixed;
background-position: top;
height: 100vh;
display: block;
text-align: center;
align-content: center;
}
.credits header.introduction h1,
.credits header.introduction p {
line-height: 5;
font-size: 2rem;
}
.credits header.introduction div.introduction {
background-color: #13172cd5;
height: 100vh;
}
.credits div.bouton a {
display: inline-block;
text-decoration: none;
color: #ffefe5;
padding: 10.8px 16px;
margin: 0 4px;
background-color: #13172c;
border-radius: 20px;
}
.credits div.bouton a:hover {
border-radius: 20px;
background-color: #b47871;
}
.credits main {
margin: auto;
}
.credits div.titre {
text-align: center;
font-size: 2rem;
padding-top: 66px;
}
.credits div.grille {
background-color: rgba(115, 110, 154, 0.9);
border-radius: 20px;
display: grid;
align-items: flex-start;
grid-template-areas:
"soustitre soustitre"
"description description"
"bouton bouton";
/*grid-template-columns: 1fr 3fr;*/
padding: 16px;
margin: 16px 5%;
text-align: center;
}
.credits div.bouton {
grid-area: bouton;
grid-template-columns: 15%;
display: flex;
justify-content: center;
align-items: center;
margin: 16px;
}
.credits div.soustitre {
grid-area: soustitre;
grid-template-columns: 85%;
text-align: center;
}
.credits div.description {
grid-area: description;
grid-template-columns: 85%;
}
.credits div.image img {
width: 100%;
aspect-ratio: 1 / 1;
/* hauteur = largeur */
border-radius: 20%;
padding: 16px;
}
.credits div.grilleDroite:hover,
.credits div.grilleGauche:hover {
background-color: rgba(39, 58, 86, 90%);
}