-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from BootcampersCollective/profile-branch
started profile page using flexbox for the layout
- Loading branch information
Showing
5 changed files
with
106 additions
and
6 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,62 @@ | ||
@import url('https://fonts.googleapis.com/css?family=Muli|Nosifer'); | ||
|
||
.profile-name { | ||
font-family: 'Nosifer', cursive; | ||
text-shadow: 5px 5px 10px; | ||
font-size: 8rem; | ||
} | ||
|
||
.tag { | ||
font-family: 'Muli', sans-serif; | ||
flex: 1; | ||
font-size: 5rem; | ||
} | ||
|
||
.red { | ||
color: red; | ||
} | ||
|
||
.main { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.header { | ||
flex: 1; | ||
} | ||
|
||
.anchor-tags { | ||
display: flex; | ||
flex-direction: row; | ||
width: 80vw; | ||
text-align: center; | ||
} | ||
|
||
.anchor-tag { | ||
font-family: 'Muli', sans-serif; | ||
flex: 1; | ||
color: white !important; | ||
background-color: teal; | ||
text-decoration: none; | ||
} | ||
|
||
.section-head { | ||
flex: auto; | ||
font-family: 'Muli', sans-serif; | ||
font-size: 2rem; | ||
text-align: left; | ||
margin-left: 5vw; | ||
} | ||
|
||
.about { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.about-contact { | ||
flex: 1; | ||
} | ||
|
||
.about-summary { | ||
flex: 3; | ||
} |
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,34 @@ | ||
<section> | ||
<link rel="stylesheet" href="/css/profile.css"> | ||
<div class="main"> | ||
<div class="header"> | ||
<h1 class="profile-name red">Your Name</h1> | ||
</div> | ||
<div class="tag"> | ||
<h3>Web Developer</h3> | ||
</div> | ||
<div class="anchor-tags btn-group text-center"> | ||
<div class="anchor-tag btn btn-lg btn-info"> | ||
<a href="#about">About</a> | ||
</div> | ||
<div class="anchor-tag btn btn-lg btn-info"> | ||
<a href="#skills">Skills</a> | ||
</div> | ||
<div class="anchor-tag btn btn-lg btn-info"> | ||
<a href="#experience">Experience</a> | ||
</div> | ||
<div class="anchor-tag btn btn-lg btn-info"> | ||
<a href="#education">Education</a> | ||
</div> | ||
<div class="anchor-tag btn btn-lg btn-info"> | ||
<a href="#contact">Contact</a> | ||
</div> | ||
</div> | ||
<div class="about" id="about"> | ||
<div class="about-contact"> | ||
<h3 class="section-head">About Me</h3> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</section> |