Ajustements pour Gauth

This commit is contained in:
Gilles Van Assche 2025-02-28 13:53:57 +01:00
parent 58f0ea30ce
commit 0611189f5f
4 changed files with 22 additions and 14 deletions

View File

@ -285,7 +285,10 @@
font-weight: 600; font-weight: 600;
} }
.portfolio-project-card{ .portfolio-project-card {
position: absolute;
z-index: 2;
position: relative;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
padding-left: 3rem; padding-left: 3rem;
@ -356,18 +359,18 @@
font-size: 0.875rem; font-size: 0.875rem;
line-height: 1.25rem; line-height: 1.25rem;
--tw-text-opacity: 1; --tw-text-opacity: 1;
color: rgb(115 115 115 / var(--tw-text-opacity, 1)); color: rgb(0 0 0 / var(--tw-text-opacity, 1));
} }
.portfolio-project-card__details .excerpt a{ .portfolio-project-card__details .excerpt p a{
--tw-text-opacity: 1; --tw-text-opacity: 1;
color: rgb(115 115 115 / var(--tw-text-opacity, 1)); color: rgb(0 0 0 / var(--tw-text-opacity, 1));
text-decoration: underline; text-decoration: underline;
text-decoration-color: #999999; text-decoration-color: #999999;
transition: all 0.2s ease-in; transition: all 0.2s ease-in;
} }
.portfolio-project-card__details .excerpt a:hover { .portfolio-project-card__details .excerpt p a:hover {
text-decoration: underline; text-decoration: underline;
text-decoration-color: #000; text-decoration-color: #000;
} }

View File

@ -3169,6 +3169,7 @@ p:empty {
width: 390px; width: 390px;
left: -15px; left: -15px;
top: -40%; top: -40%;
z-index: 1;
} }
} }

View File

@ -2715,6 +2715,7 @@ p:empty {
width: 390px; width: 390px;
left: -15px; left: -15px;
top: -40%; top: -40%;
z-index: 1;
} }
} }

View File

@ -26,6 +26,9 @@
} }
.portfolio-project-card { .portfolio-project-card {
position: absolute;
z-index: 2;
position: relative;
@apply mx-auto px-12 pt-32; @apply mx-auto px-12 pt-32;
max-width: 1800px; max-width: 1800px;
@ -65,16 +68,16 @@
/* @apply bigCaslon text-4xl; */ /* @apply bigCaslon text-4xl; */
} }
p { p {
@apply text-sm text-neutral-500 pb-0 mb-0; @apply text-sm text-black pb-0 mb-0;
} a{
a{ @apply text-black;
@apply text-neutral-500;
text-decoration: underline;
text-decoration-color: #999999;
transition: all 0.2s ease-in;
&:hover {
text-decoration: underline; text-decoration: underline;
text-decoration-color: #000; text-decoration-color: #999999;
transition: all 0.2s ease-in;
&:hover {
text-decoration: underline;
text-decoration-color: #000;
}
} }
} }
} }