-
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.
- Loading branch information
1 parent
7c9bfe0
commit 0f726e0
Showing
6 changed files
with
86 additions
and
29 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,21 @@ | ||
import React, { Component } from 'react' | ||
import styles from './styles.css' | ||
|
||
class Nav extends Component { | ||
|
||
render() { | ||
return ( | ||
<div className={styles.nav}> | ||
<span className={styles.workoutBuddy}> | ||
Workout Buddy | ||
</span> | ||
<span className={styles.verticalRuleNav}/> | ||
<span className={styles.navLink}>Input</span> | ||
<span className={styles.navLink}>Workouts</span> | ||
<span className={styles.navLink}>Trends</span> | ||
</div> | ||
) | ||
} | ||
} | ||
|
||
export default Nav |
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,29 @@ | ||
.nav { | ||
display: flex; | ||
background-color: #E8DDB5; | ||
padding: 20px 10px 20px 10px; | ||
} | ||
|
||
.verticalRuleNav { | ||
margin-left: 30px; | ||
margin-right: 30px; | ||
height: 3em; | ||
border: 1px solid; | ||
color: grey; | ||
opacity: 0.6; | ||
} | ||
|
||
.navLink { | ||
margin-top: auto; | ||
margin-bottom: auto; | ||
margin-right: 30px; | ||
font-family: 'Open Sans', sans-serif; | ||
} | ||
|
||
.workoutBuddy { | ||
font-family: 'Quicksand', sans-serif; | ||
font-size: 2.5em; | ||
margin-top:auto; | ||
margin-bottom:auto; | ||
margin-left:22px; | ||
} |
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