style: réduire taille icônes et uniformiser couleurs

This commit is contained in:
2026-07-06 23:00:57 +04:00
parent d32801a5d1
commit cf7385a350
+23 -15
View File
@@ -1194,7 +1194,7 @@ html.light-theme .hero::before {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
gap: 2rem; gap: 1.5rem;
flex-wrap: wrap; flex-wrap: wrap;
max-width: 1200px; max-width: 1200px;
margin: 0 auto; margin: 0 auto;
@@ -1204,8 +1204,8 @@ html.light-theme .hero::before {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
width: 4rem; width: 3rem;
height: 4rem; height: 3rem;
color: var(--or-oki); color: var(--or-oki);
text-decoration: none; text-decoration: none;
transition: transform 0.2s, opacity 0.2s; transition: transform 0.2s, opacity 0.2s;
@@ -1219,19 +1219,20 @@ html.light-theme .hero::before {
} }
.contact-social-link img { .contact-social-link img {
width: 60%; width: 70%;
height: 60%; height: 70%;
object-fit: contain; object-fit: contain;
filter: brightness(0) saturate(100%) invert(0.9) sepia(0.8) hue-rotate(30deg);
} }
@media (min-width: 768px) { @media (min-width: 768px) {
.contact-socials { .contact-socials {
gap: 2.5rem; gap: 2rem;
} }
.contact-social-link { .contact-social-link {
width: 4.5rem; width: 3.5rem;
height: 4.5rem; height: 3.5rem;
} }
} }
@@ -1301,8 +1302,8 @@ footer .flag-bar {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
width: 2.5rem; width: 1.75rem;
height: 2.5rem; height: 1.75rem;
color: var(--or-oki); color: var(--or-oki);
text-decoration: none; text-decoration: none;
transition: transform 0.2s, opacity 0.2s; transition: transform 0.2s, opacity 0.2s;
@@ -1313,19 +1314,26 @@ footer .flag-bar {
height: 100%; height: 100%;
} }
.social-link img {
width: 100%;
height: 100%;
object-fit: contain;
filter: brightness(0) saturate(100%) invert(0.9) sepia(0.8) hue-rotate(30deg);
}
.social-link:hover { .social-link:hover {
transform: scale(1.1); transform: scale(1.15);
opacity: 0.8; opacity: 0.9;
} }
@media (min-width: 768px) { @media (min-width: 768px) {
.footer-socials { .footer-socials {
gap: 1.5rem; gap: 1rem;
} }
.social-link { .social-link {
width: 2.75rem; width: 2rem;
height: 2.75rem; height: 2rem;
} }
} }