-
Notifications
You must be signed in to change notification settings - Fork 955
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
base: main
Are you sure you want to change the base?
Changes from all commits
8d12fe3
1a80336
8dc63b4
0a84ed8
d72412d
bcc2f42
0b79b24
d0732ba
d196cb4
4d21861
e3e3e80
1680f52
99184a2
69ae1c9
339cd97
eeae46d
74969c6
f749ff3
59fcf53
a89e699
6b9d35f
a3a6008
62676c7
4c68bf6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
* {margin:0;padding:0;} | ||
|
||
.container{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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; | ||
} |
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> | ||
|
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; | ||
} |
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> |
This file was deleted.
There was a problem hiding this comment.
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: