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

Tigers Kindra Greenawalt #39

Open
wants to merge 24 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8d12fe3
created 3 html files w/ all content
kkgre257 Nov 17, 2022
1a80336
updated some content in html files
kkgre257 Nov 17, 2022
8dc63b4
created index style sheet, styled header&footer
kkgre257 Nov 18, 2022
0a84ed8
created and completed style sheet for home page
kkgre257 Nov 18, 2022
d72412d
created about pg style sheet
kkgre257 Nov 18, 2022
bcc2f42
grammar tweaks to about.html
kkgre257 Nov 18, 2022
0b79b24
portfolio style sheet basics
kkgre257 Nov 22, 2022
d0732ba
styling updated for portfolio page
kkgre257 Nov 23, 2022
d196cb4
update linkedin/github logos, corrected typo
kkgre257 May 9, 2023
4d21861
updated github logo img
kkgre257 May 9, 2023
e3e3e80
updated github logo img
kkgre257 May 9, 2023
1680f52
updated linkedin logo img
kkgre257 May 9, 2023
99184a2
updated linkedin logo image
kkgre257 May 9, 2023
69ae1c9
changed linkedin/github logos on all tabs
kkgre257 May 10, 2023
339cd97
Added more projects to protfolio section
kkgre257 May 10, 2023
eeae46d
added href to op gamification load project button
kkgre257 May 10, 2023
74969c6
removed href to op gamification load project button
kkgre257 May 10, 2023
f749ff3
added form element to link op gamification load prjct bttn
kkgre257 May 10, 2023
59fcf53
form element on the load prjct bttn open new tab
kkgre257 May 10, 2023
a89e699
added links to all but 3 prjcts
kkgre257 May 10, 2023
6b9d35f
commented out bttn lnks to missing prjcts
kkgre257 May 10, 2023
a3a6008
added missing project links
kkgre257 May 31, 2023
62676c7
moved op. gamification to top in portfolio
kkgre257 May 31, 2023
4c68bf6
added operation gamification picture to project description
kkgre257 May 31, 2023
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ Present the elements on the page as you see fit by using the following at least
Both of these containers do not need to be on the same page. Try using one for one page, and the other for another page!

<details>
<summary>If you need some inspiration, here are two common layouts you can replicate</summary>
<summary>If you need some inspiration, here are two common layouts you can replicate</summary>

![Personal Portfolio Wfireframe Example 1](./assets/personal-portfolio_wireframe1.png)
![Personal Portfolio Wfireframe Example 1](./assets/personal-portfolio_wireframe1.png)

![Personal Portfolio Wfireframe Example 2](./assets/personal-portfolio_wireframe2.png)
</details>
Expand Down
107 changes: 107 additions & 0 deletions about-me-style-sheet.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
* {margin:0;padding:0;}
Copy link
Contributor

Choose a reason for hiding this comment

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

While we can do this, let's stay consistent with the rest of our css:

*{
    margin:0;
    padding:0;
}


.container{
Copy link
Contributor

Choose a reason for hiding this comment

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

Great job using css grid! 👍

display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 10fr 1fr;
}

header{
background-color: darkgray;
grid-column: 1/3;
grid-row: 1/2;
display: flex;
Copy link
Contributor

Choose a reason for hiding this comment

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

Great! Glad you see that we can combine flexbox and grid inside each other!

flex-direction: row;
justify-content: space-between;
align-items: center;
}

h4{
color: #FCFBFE;
margin-left: 50px;
font-size: 25px;
}

ul{
justify-content: end;
margin-right: 50px;
}
ul li{
list-style: none;
display: inline;
margin-left: 10px;
font-size: 15px;
}

a{
color: lightgray;
text-decoration: none;
}
a:link{
text-decoration: none;
color: lightgray;
}
a:visited{
text-decoration: none;
color: lightgray;
}
Comment on lines +40 to +47
Copy link
Contributor

Choose a reason for hiding this comment

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

Hmm could we combine these, so we aren't repeating styling?

a:link,
a:visited{
    text-decoration: none;
    color: lightgray;
}

a:hover{
text-decoration: none;
color: #FCFBFE;
}
#currentpage{
color: #FCFBFE;
}

section{
padding-left: 15px;
background-color: #FCFBFE;
grid-row: 2/3;
grid-column: 1/2;
display: grid;
align-content: center;
}

.hi{
font-size: 50px;
margin-left: 50px;
margin-bottom: 20px;
}

.paragraph{
font-size: large;
margin-left: 50px;
max-width: 500px;
height: auto;
}

.image{
background-color: #FCFBFE;
grid-row: 2/3;
grid-column: 2/3;
display: grid;
flex-direction: row;
justify-content: space-around;
align-items: center;
}

.pineapple{
max-height: 700px;
width: auto;
}

footer{
background-color: darkgray;
grid-column: 1/3;
grid-row: 3/4;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
footer .media{
display: inline-block;
width: 50px;
height: auto;
margin: 10px;
}
59 changes: 59 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<link rel="stylesheet" href="about-me-style-sheet.css">
</head>

<body class="container">
<header>
<h4>
Bio
</h4>
<nav>
<ul>
<li>
<a id="currentpage" href="about.html">about</a>
</li>
<li>
<a href="portfolio.html">portfolio</a>
</li>
<li>
<a href="index.html">home</a>
</li>
</ul>
</nav>

</header>
<section>
<h1 class="hi">Hi!<br>I'm Kindra,</h1>
<p class="paragraph">
a down to earth girl born and raised in Buffalo, NY (GO BILLS!) who wanted to change the world with travel.
So I packed my bags and went to school for International Hotel & Tourism Management.
Turns out student loans are expensive; and post graduation instead of changing the world by promoting small town economies via tourism, I started my 7 year career with Marriott.
<br><br>Now don't get me wrong, I loved my time managing front office and housekeeping teams at some of the largest hotels in NYC,
but when the pandemic furloughs hit I realized it was my chance to pivot to a career better aligned with my creative and analytical skill sets,
SOFTWARE ENGINEERING!
<br><br>I have a passion for continuous learning, process improvement, and coupling analytics with creativity to solve problems.
After completing my first course with SheCodes I found software engineering and web development fused my passions beautifully and became addicted!
<br><br> The learning didn't stop there, I'm now a proud C18 Adie with Ada Developers Academy.
Check out some of my projects, linked in my portfolio, to see what i've learned along the way. Seeking full time opportunites upon graduation in July 2023.
</p>
</section>

<div class="image">
<img class="pineapple" src="https://img.freepik.com/free-vector/hand-drawn-fresh-pineapple-vector_53876-108732.jpg?w=996&t=st=1668714434~exp=1668715034~hmac=2cb1dd404c2b621a4d1544366fc72eca354f32b7f5319ca776346e502b48219a" alt="Pineapple Drawing">
</div>
<footer class="footer">
<a href="https://www.linkedin.com/in/kindragreenawalt">
<img class="media" src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/081/227/original/large_linkedin_logo_no_background.png?1683660738" alt="linkedin link" />
</a>
<a href="https://github.com/kkgre257?tab=repositories">
<img class="media" src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/081/222/original/github_logo_no_background.png?1683659653" alt="github link"/>
</footer>
</body>
</html>

105 changes: 105 additions & 0 deletions index-style-sheet.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
* {margin:0;padding:0;}

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

header{
background-color: darkgray;
grid-column: 1/3;
grid-row: 1/2;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}

h4{
color: #FCFBFE;
margin-left: 50px;
font-size: 25px;
}

ul{
justify-content: end;
margin-right: 50px;
}
ul li{
list-style: none;
display: inline;
margin-left: 10px;
font-size: 15px;
}

a{
color: lightgray;
text-decoration: none;
}
a:link{
text-decoration: none;
color: lightgray;
}
a:visited{
text-decoration: none;
color: lightgray;
}
a:hover{
text-decoration: none;
color: #FCFBFE;
}
#currentpage{
color: #FCFBFE;
}

.text{
padding-left: 15px;
background-color: #FCFBFE;
grid-row: 2/3;
grid-column: 1/2;
display: grid;
align-content: center;

}
.fullstack{
font-size: 100px;
margin-left: 50px;
}

.city{
font-size: 30px;
color: lightgray;
margin-left: 50px;
}

.image{
background-color: #FCFBFE;
grid-row: 2/3;
grid-column: 2/3;
display: grid;
flex-direction: row;
justify-content: space-around;
align-items: center;
}

.pineapple{
max-height: 700px;
width: auto;
}

footer{
background-color: darkgray;
grid-column: 1/3;
grid-row: 3/4;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
footer .media{
display: inline-block;
width: 50px;
height: auto;
margin: 10px;
}
51 changes: 51 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kindra K. Greenawalt</title>
<link rel="stylesheet" href="index-style-sheet.css">
</head>
<body class="container">
<header class="header">
<h4 class="name">
Kindra K. Greenawalt
</h4>

<ul>
<li>
<a id="currentpage" href="index.html">home</a>
</li>

<li>
<a href="portfolio.html">portfolio</a>
</li>
<li>
<a href="about.html">about</a>
</li>
</ul>
</header>

<div class="text">
<h1 class="fullstack">
Full Stack <br>
Developer
</h1>
<h6 class="city">
Arlington, Virginia
</h6>
</div>

<div class="image">
<img class="pineapple" src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/054/547/original/Screen_Shot_2022-11-18_at_1.38.45_PM.png?1668797616" alt="Pineapple Drawing">
</div>
<footer class="footer">
<a href="https://www.linkedin.com/in/kindragreenawalt">
<img class="media" src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/081/227/original/large_linkedin_logo_no_background.png?1683660738" alt="linkedin link" />
</a>
<a href="https://github.com/kkgre257?tab=repositories">
<img class="media" src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/081/222/original/github_logo_no_background.png?1683659653" alt="github link"/>
</footer>
</body>
</html>
12 changes: 0 additions & 12 deletions pages/portfolio.html

This file was deleted.

Loading