From ece06455ebaed74e5fd0443f3332541cc848a94a Mon Sep 17 00:00:00 2001 From: cristobaltagle7 Date: Fri, 21 Nov 2025 12:59:07 -0300 Subject: [PATCH] agregar hover a iconos --- assets/css/estilos.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/assets/css/estilos.css b/assets/css/estilos.css index dc713cd23..34a211e84 100644 --- a/assets/css/estilos.css +++ b/assets/css/estilos.css @@ -35,5 +35,15 @@ body { .navbar-brand{ width: 100px; } +} + +/* Hover para íconos de "Acerca de mí" */ +#Acerca-de-mi i { + transition: transform 0.3s ease, color 0.3s ease; + cursor: pointer; +} +#Acerca-de-mi i:hover { + transform: scale(1.2); + color: #0dcaf0; /* el celeste de tu tema Bootstrap */ }