Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ <h3 class="project-name">
<div class="project">
<div class="project-wrap">
<!-- CHANGE TO YOUR OWN PHOTO AND ID -->

<img src="http://www.chizeck.com/wp-content/uploads/2013/02/Huey_Lewis_y_The_News-Sports-Frontal.jpg" alt="" class="picture" id="daniel">
<h2 class="name">Daniel Olasky</h2>
<h3 class="project-name"><a href="projects/textboxscore.html">Text Box Score thingy</a></h3>
Expand All @@ -88,6 +89,22 @@ <h3 class="project-name"><a href="projects/project-beccatbd.html">TBD...</a></h3
</div>
</div>
<!-- END -->


<!-- ADD YOURSELF HERE -->
<div class="project">
<div class="project-wrap">
<!-- CHANGE TO YOUR OWN PHOTO AND ID -->
<img src="http://media.heavy.com/media/2013/03/freshprince3.jpg" alt="" class="picture" id="YOURNAME">
<h2 class="name">Tony</h2>
<h3 class="project-name">Tony's Project</h3>
<p class="project-description">
<a href="http://media.heavy.com/media/2013/03/freshprince3.jpg">Super baller portfolio of future magical things</a>
</p>

</div>
</div>
<!-- END -->

<!-- ADD YOURSELF HERE -->
<div class="project">
Expand Down
34 changes: 34 additions & 0 deletions projects/project-[TONYPROJECT].html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TONY'S FINAL PROJECT | Project List | MKS Front-End Cohort 1</title>
<link rel="stylesheet" href="../stylesheets/app.css" />
<script src="../bower_components/modernizr/modernizr.js"></script>
</head>

<!-- change the ID here to your name ID. it should be the same as the ID on the .picture div in index.html -->
<body class="project-page" id="YOURNAME">

<!-- YOURNAME Project -->
<div class="project">
<div class="project-wrap">
<div class="picture">
<!-- change to your photo URL -->
<img src="../images/project-YOURIMAGE.png" alt="">
</div>
<h2 class="name">TONY LE</h2>
<h3 class="project-name">My Super Cool Project</h3>
<p class="project-description">
Tell us what you'll be working on! Plenty of space here!
</p>
</div>
</div>
<!-- END -->

<script src="../bower_components/jquery/dist/jquery.min.js"></script>
<script src="../bower_components/foundation/js/foundation.min.js"></script>
<script src="../js/app.js"></script>
</body>
</html>
4 changes: 4 additions & 0 deletions scss/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ $alex-project-color: #3c2267;
// add your project main color here:
// $MYNAME-project-color: HEXVALUE;

$tony-project-color: #7FDCB5;

$daniel-project-color: #1EE8D4;

Expand All @@ -29,3 +30,6 @@ $daniel-project-color: #1EE8D4;
#daniel {
@include readable($daniel-project-color);
}
#tony {
@include readable($tony-project-color);
}