-
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
Ricardo Sousa
committed
Oct 6, 2018
1 parent
4389917
commit 6c75879
Showing
4 changed files
with
98 additions
and
61 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,30 @@ | ||
<div class="image-bg"><i></i></div> | ||
|
||
<div class="intro-content"> | ||
<div class="presentation"><h1></h1><h2></h2></div> | ||
<div class="presentation"> | ||
<h1> | ||
<span class="name">I'm <span class="de-emphasize">Ricardo</span> Sousa.</span> | ||
</h1> | ||
<h2 *ngIf="showTechnologies"> | ||
<span class="title"><span class="de-emphasize">Software</span> Developer</span> | ||
<span class="dot"><span class="de-emphasize"> ⋅ </span></span> | ||
<span class="jscript">Javascript <span class="de-emphasize">/</span> Typescript</span> | ||
<span class="style">LESS <span class="de-emphasize">/</span> SCSS <span class="de-emphasize">/</span> | ||
CSS | ||
</span> | ||
<span class="framework">Angular <span class="de-emphasize">/</span> React <span class="de-emphasize">/</span> | ||
Vue | ||
</span> | ||
<span class="markup">HTML <span class="de-emphasize">/</span> | ||
XML <span class="de-emphasize">/</span> | ||
YML <span class="de-emphasize">/</span> Markdown | ||
</span> | ||
<span class="backend"> | ||
NodeJS <span class="de-emphasize">/</span> PHP <span class="de-emphasize">/</span> Java</span> | ||
<span class="db">MySQL <span class="de-emphasize">/</span> MongoDB</span> | ||
<span class="devops">Shell script <span class="de-emphasize">/</span> Docker</span> | ||
<span class="obs"><span class="de-emphasize">WEB</span> technologies passionate!</span> | ||
</h2> | ||
</div> | ||
<app-social-drawer [items]="socialDrawerItems"></app-social-drawer> | ||
</div> |
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 |
---|---|---|
@@ -1,41 +1,3 @@ | ||
/* Set default font family as Ubuntu font family */ | ||
|
||
@import 'layout'; | ||
div.presentation { | ||
position: absolute; | ||
top: 50%; | ||
transform: translateY(-50%); | ||
padding: 20px; | ||
height: 260px; | ||
h1 { | ||
margin: 5px 0; | ||
font-size: 55px; | ||
text-transform: uppercase; | ||
color: white; | ||
font-weight: bold; | ||
text-shadow: -5px 0px 10px #101010; | ||
margin: 0; | ||
} | ||
h2 { | ||
margin: 10px 0 5px 0; | ||
font-weight: 300; | ||
font-size: 1.1rem; | ||
text-transform: uppercase; | ||
color: #ffffff; | ||
text-shadow: 0 0 6px rgba(0, 0, 0, 0.2); | ||
text-align: left; | ||
} | ||
@media (max-width: 640px) and (min-height: 361px) { | ||
top: 40%; | ||
h2 { | ||
text-align: center; | ||
margin-top: 60px; | ||
} | ||
} | ||
h1, | ||
h2 { | ||
span { | ||
color: #828282; | ||
} | ||
} | ||
} |