Skip to content

Final project laura #16

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
Binary file added images/laura_crop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project List | MKS Front-End Cohort 1</title>
<link rel="stylesheet" href="stylesheets/app.css" />
<link rel="stylesheet" href="stylesheest/app.css" />
<script src="bower_components/modernizr/modernizr.js"></script>
</head>
<body class="project-list-page">
Expand Down Expand Up @@ -78,11 +78,11 @@ <h3 class="project-name">Your Project Name</h3>
<div class="project">
<div class="project-wrap">
<!-- CHANGE TO YOUR OWN PHOTO AND ID -->
<img src="images/project-puppy.jpg" alt="" class="picture" id="YOURNAME">
<h2 class="name">Your Name</h2>
<h3 class="project-name">Your Project Name</h3>
<img src="images/laura_crop.png" alt="" class="picture" id="laurastude">
<h2 class="name">Laura Stude</h2>
<h3 class="project-name">Law Firm Fun</h3>
<p class="project-description">
Tell us what you'll be working on in 140 characters or less!
Working with John to create a law firm site for a friend. Yeah!
</p>
</div>
</div>
Expand Down
34 changes: 34 additions & 0 deletions projects/project-LAURASTUDE.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>ATX Nerdy Ladies | 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">Your Name</h2>
<h3 class="project-name">Your Project Name</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>
6 changes: 5 additions & 1 deletion scss/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

$elyse-project-color: #651B63;


// add your project main color here:
// $MYNAME-project-color: HEXVALUE;


$laura-project-color: #6633FF;


// change the body background color on each page based on your name
Expand All @@ -18,3 +19,6 @@ $elyse-project-color: #651B63;

#sartaj {}

#laura {
@include readable($laura-project-color);
}
Loading