-
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.
feat: change header style and shorten it
- Loading branch information
Showing
4 changed files
with
88 additions
and
77 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 |
---|---|---|
|
@@ -17,21 +17,21 @@ export const cvData: CVData = { | |
email: '[email protected]', | ||
linkedin: { | ||
href: 'https://linkedin.com/in/luizgonzaga', | ||
display: '/luizgonzaga', | ||
display: 'linkedin.com/in/luizgonzaga', | ||
}, | ||
topmate: { | ||
href: 'https://topmate.io/luizgonzaga', | ||
display: '/luizgonzaga', | ||
display: 'topmate.io/luizgonzaga', | ||
}, | ||
// twitter: { | ||
// href: 'https://twitter.com/luizmarelo', | ||
// display: '/luizmarelo', | ||
// display: 'twitter.com/luizmarelo', | ||
// }, | ||
speakerdeck: { | ||
href: 'https://speakerdeck.com/lfilho', | ||
display: '/lfilho', | ||
display: 'speakerdeck.com/lfilho', | ||
}, | ||
github: { href: 'https://github.com/lfilho', display: '/lfilho' }, | ||
github: { href: 'https://github.com/lfilho', display: 'github.com/lfilho' }, | ||
}, | ||
introduction: [ | ||
`A brazillian-canadian people-first leader building impactful products and high-performing teams for ~{{CAREER_TENURE}} years.`, | ||
|
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,5 +1,31 @@ | ||
h1 { | ||
font-size: 2rem; | ||
color: var(--highlight-black); | ||
/* padding-bottom: 1rem; */ | ||
margin: 0; | ||
font-weight: bold; | ||
letter-spacing: -0.15rem; | ||
font-variant-ligatures: common-ligatures; | ||
line-height: 1em; | ||
} | ||
|
||
.vcard aside { | ||
float: left; | ||
margin: 0 2rem 1.5rem 0; | ||
margin: 0.5rem auto 0.9rem auto; | ||
padding: 0 0 0.5rem 0; | ||
color: var(--highlight-black); | ||
border-bottom: 0.2rem solid #008cba; | ||
} | ||
.vcard ul { | ||
list-style-type: none; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.vcard li { | ||
display: inline-block; | ||
margin: 0 1rem 0 0; | ||
padding: 0; | ||
font-size: 0.85rem; | ||
} | ||
header main { | ||
} |