-
Notifications
You must be signed in to change notification settings - Fork 640
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
304a45a
commit 1a772e7
Showing
2 changed files
with
94 additions
and
15 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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
body { | ||
margin: 0 auto; | ||
max-width: 50em; | ||
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; | ||
color: #566b78; | ||
|
||
} | ||
|
||
h2 { | ||
margin-top: 1em; | ||
padding-top: 1em; | ||
} | ||
|
||
h1, | ||
h2, | ||
h3, | ||
strong { | ||
color: #333; | ||
} | ||
|
||
.footer { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
a { | ||
color: #e81c4f; | ||
display: flex; | ||
} | ||
|
||
img { | ||
display: inline-block; | ||
width: 150px; /* o el ancho que desees */ | ||
height: auto; | ||
} | ||
|
||
.skills-idiomas { | ||
max-width: 800px; /* Ancho máximo para el bloque de habilidades */ | ||
margin: 0 auto; /* Centrar el bloque de habilidades horizontalmente */ | ||
} | ||
|
||
.skills-title { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
margin: 5px; | ||
|
||
} | ||
|
||
.skills-idiomas { | ||
display: flex; | ||
} | ||
|
||
.col { | ||
flex: 1; /* Ambas columnas ocupan el mismo espacio */ | ||
padding: 10px; | ||
} | ||
|
||
|