-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e313dcb
commit 952aae4
Showing
3 changed files
with
65 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* Estilo para alinear los íconos de servicios horizontalmente */ | ||
.icon-container { | ||
display: flex; /* Utiliza flex para alinear horizontalmente */ | ||
justify-content: center; /* Centra los íconos en la página */ | ||
gap: 20px; /* Espaciado entre cada ícono */ | ||
margin-top: 20px; | ||
} | ||
|
||
.icon-container img { | ||
width: 80px; /* Ajusta el tamaño de los íconos según sea necesario */ | ||
cursor: pointer; /* Cambia el cursor cuando se pasa sobre los íconos */ | ||
transition: transform 0.2s; /* Efecto de transición al pasar el mouse sobre los íconos */ | ||
} | ||
|
||
.icon-container img:hover { | ||
transform: scale(1.1); /* Efecto de aumento al pasar el mouse */ | ||
} | ||
|