-
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
d2f5318
commit 957564c
Showing
3 changed files
with
31 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,40 @@ | ||
html, body { | ||
height: 100%; | ||
margin: 0; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
main { | ||
flex: 1; | ||
padding: 20px; | ||
} | ||
|
||
.footer { | ||
padding: 32px 0; | ||
background-color: #f1f1f1; /* Color de fondo del footer */ | ||
text-align: center; /* Centra el contenido textual */ | ||
box-shadow: 0 -2px 4px rgba(0,0,0,0.1); /* Sombra para dar un efecto elevado */ | ||
position: absolute; | ||
bottom: 0; | ||
background-color: #f1f1f1; | ||
text-align: center; | ||
box-shadow: 0 -2px 4px rgba(0,0,0,0.1); | ||
width: 100%; | ||
} | ||
|
||
.footer-links { | ||
display: flex; | ||
justify-content: center; /* Alinea los enlaces horizontalmente al centro */ | ||
gap: 20px; /* Espacio entre los enlaces */ | ||
justify-content: center; | ||
gap: 20px; | ||
} | ||
|
||
.footer-link { | ||
text-decoration: none; | ||
color: #000; /* Color del texto de los enlaces */ | ||
font-weight: bold; /* Negrita para el texto */ | ||
padding: 8px 15px; /* Padding para hacer los enlaces más clickeables */ | ||
border-radius: 5px; /* Bordes redondeados para los enlaces */ | ||
transition: background-color 0.3s, color 0.3s; /* Transición suave para hover */ | ||
color: #000; | ||
font-weight: bold; | ||
padding: 8px 15px; | ||
border-radius: 5px; | ||
transition: background-color 0.3s, color 0.3s; | ||
cursor: pointer; | ||
} | ||
|
||
.footer-link:hover { | ||
background-color: #ff914d; /* Cambia el fondo al pasar el ratón */ | ||
color: #fff; /* Cambia el color del texto al pasar el ratón */ | ||
background-color: #ff914d; | ||
color: #fff; | ||
} |
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