Skip to content
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

Cedar - Laurel #66

Open
wants to merge 2 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/GitHub-Mark-120px-plus copy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/clouds-png-23428.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/cursor-png-1111.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/retro-video-store.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/swapmeet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 24 additions & 1 deletion pages/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,31 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="/styles/styles-about.css" rel="stylesheet">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to add the .. to get the correct path. The VSCode extension doesn't catch this issue with the path. It is also true for the images directory.

Suggested change
<link href="/styles/styles-about.css" rel="stylesheet">
<link href="../styles/styles-about.css" rel="stylesheet">

</head>
<body>
<body class="grid-container">

<header>
</header>
<h1 id="hello1" class="grid-item">Hi! I'm an aspiring software developer at Ada Developers Academy. My interests include surfing the net and browsing the web. And finding a job.</h1>
<iframe class="grid-item" width="840" height="630"
src="https://www.youtube.com/embed/ZXzDh1Q1JsM?autoplay=1&mute=1">
</iframe>
<nav class="navbar grid-item" id="overlay">
<!-- list items block nav bar -->
<ul class="grid-item">
<li>
<div class="cursor-container">
<img src="/images/cursor-png-1111.png" />
</div>
</li>
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">My Portfolio</a></li>
<li><a class="active" href="about.html">About Me</a></li>
</ul>
</nav>
<footer>
</footer>

</body>
</html>
30 changes: 28 additions & 2 deletions pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,34 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="/styles/styles.css" rel="stylesheet">
</head>
<body>

<body class="grid-container">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is a convention to organize the files such that index.html is at the project root director level, and the rest of the pages are in a pages directory.

<header></header>

<h1 id="hello1" class="grid-item">Laurel Stickney</h1>

<h2 id="hello3" class="grid-item ">(developer-in-training)</h2>

<div id="cursor-img" class="container grid-item">
<img src="/images/clouds-png-23428.png">
</div>

<nav class="navbar grid-item" id="overlay">
<!-- list items block nav bar -->
<ol class="grid-item">
<li>
<div class="cursor-container">
<img src="/images/cursor-png-1111.png" />
</div>
</li>
<li><a class="active" href="index.html">Home</a></li>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Love the use of the active class for styling!

<li><a href="portfolio.html">My Portfolio</a></li>
<li><a href="about.html">About Me</a></li>
</ol>
</nav>
<footer>
</footer>

</body>
</html>
28 changes: 27 additions & 1 deletion pages/portfolio.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,34 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="/styles/styles-portfolio.css" rel="stylesheet">
</head>
<body>
<body class="grid-container">

<a href="https://github.com/paperbackwriter2/" target="_blank" rel="noopener noreferrer"><img class="icon" src="/images/GitHub-Mark-120px-plus copy.png" alt="Github icon"></a>

<!-- Project 1: Retro Video Store -->
<img class="project1 grid-item" class="grid-item" src="/images/retro-video-store.png" alt="Screenshot of retro video store project">
<h2 id="retro-desc" class="grid-item project-description"> A command line interface for an app which allows users to rent and check-in videos.</h2>
<a id="retro-link" target="_blank" rel="noopener noreferrer" class="project-name grid-item" href="https://github.com/jacyyang04/retro-video-store">Retro Video Store</a>

<!-- Project 2: Swap Meet -->
<img class="project2 grid-item" class="grid-item" src="/images/swapmeet.png" alt="Screenshot of swap meet project">
<h2 id="swap-desc" class="grid-item project-description"> An app which utilizes object oriented programming concepts and simulates the trading activities of a swap meet.</h2>
<a id="swap-link" class="project-name grid-item" target="_blank" rel="noopener noreferrer" href="https://github.com/paperbackwriter2/swap-meet">Swap Meet</a>

<nav class="navbar grid-item" id="overlay">
<!-- list items block nav bar -->
<ul class="grid-item">
<li>
<div class="cursor-container">
<img src="/images/cursor-png-1111.png" />
</div>
</li>
<li><a href="index.html">Home</a></li>
<li><a class="active" href="portfolio.html">My Portfolio</a></li>
<li><a href="about.html">About Me</a></li>
</ul>
</nav>
</body>
</html>
129 changes: 129 additions & 0 deletions styles/styles-about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
/* <style> */

body {
background-image: url(https://images.pexels.com/photos/1831234/pexels-photo-1831234.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
background-attachment: fixed;
background-position: center;
background-color: rgba(218, 214, 215, 0.671);
background-size: cover;
}

a {
display: block;
padding: 8px;
text-decoration: none;
text-align: center;
color: rgb(253, 205, 205);
padding: 14px 16px;
font-variant: small-caps;

color: white;
font-size: 22pt;
font-family: 'Superclarendon', sans-serif;
}


li {
list-style-type: none;
display: inline;
float: right;
}

li a:hover {
text-decoration: underline overline;
color: rgb(253, 205, 205);
}

.navbar {
grid-column-start: 1;
grid-column-end: 6;
}

#overlay {
position: fixed;
width: 100%;
height: 11%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0,0,0,0.5);
z-index: 2;
}

#hello1 {
color: rgb(84, 134, 135);
float: right;
font-family: 'Superclarendon', sans-serif;
font: bold;
font-size: 75pt;
grid-column-start: 2;
grid-column-end: 5;
grid-row-start: 1;
grid-row-end: 3;
position: relative;
justify-self: center;
top: 12%;
}

body {
min-height: 100vh;
}


ul {
list-style-type: none;
margin: 0;
padding: 0;
position: fixed;
top: 2%;
width: 100%;
right: 50px;
}

/* grid */

.grid-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr;
}

.container {
width: 1500px;
grid-column-start: 2;
grid-column-end: 5;
grid-row-start: 2;
grid-row-end: 4;
position: relative;
bottom: 200px;
justify-self: center;
z-index: -1;
}

/* Resize images */

.cursor-container {
width: 50px;
position: fixed;
left: 20px;
}

.cursor-container img {
width: 100%;
}

.active {
background-color: rgb(84, 134, 135);;
}

iframe {
grid-column-start: 2;
grid-column-end: 5;
grid-row-start: 3;
grid-row-end: 4;
width: 840;
height: 630;
margin-top: 158px;
justify-self: center;
}
Loading