-
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?
Conversation
styling finished for all pages, note the project buttons in portfolio are not linked anywhere yet though. |
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.
Nice job, Kindra! Your HTML looked very good!
Things to consider:
- Some of your css files had repeated styling, like
* {margin:0;padding:0;}
. We could create a default css file that contains all the styling that would be seen on every html file. Then create a css file that is specific to each html file. - Some tags could be combined together to shorten repeated styling rules.
@@ -0,0 +1,107 @@ | |||
* {margin:0;padding:0;} |
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:
*{
margin:0;
padding:0;
}
@@ -0,0 +1,107 @@ | |||
* {margin:0;padding:0;} | |||
|
|||
.container{ |
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.
Great job using css grid! 👍
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 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!
a:link{ | ||
text-decoration: none; | ||
color: lightgray; | ||
} | ||
a:visited{ | ||
text-decoration: none; | ||
color: lightgray; | ||
} |
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.
Hmm could we combine these, so we aren't repeating styling?
a:link,
a:visited{
text-decoration: none;
color: lightgray;
}
about.html
Outdated
<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 graduating in August 2023. | ||
Check out some of my projects, linked in my portfolio, to see what i've learned along the way. | ||
</p> | ||
</section> | ||
|
||
<div class="image"> |
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.
Maybe we can call this a section
instead of a div
/* display: grid; | ||
grid-template-columns: 1fr; | ||
grid-template-rows: 1fr; */ |
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.
Let's get rid of this:
/* display: grid; | |
grid-template-columns: 1fr; | |
grid-template-rows: 1fr; */ |
} | ||
|
||
.project-description{ | ||
/* grid-column: 1/2; */ |
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.
/* grid-column: 1/2; */ |
It is a landing page made from scratch incorporating a user interaction.</p> | ||
<button>Load Project</button> | ||
</div> | ||
<!-- <img class ="image" src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/054/258/original/Screen_Shot_2022-11-17_at_10.15.40_AM.png?1668698584" alt="SheCodes weather app project"> --> |
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.
<!-- <img class ="image" src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/054/258/original/Screen_Shot_2022-11-17_at_10.15.40_AM.png?1668698584" alt="SheCodes weather app project"> --> |
</p> | ||
<button>Load Project</button> | ||
</div> | ||
<!-- <img class ="image" src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/054/253/original/Screen_Shot_2022-11-17_at_10.00.42_AM.png?1668697475" alt="SheCodes weather app project"> --> |
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.
<!-- <img class ="image" src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/054/253/original/Screen_Shot_2022-11-17_at_10.00.42_AM.png?1668697475" alt="SheCodes weather app project"> --> |
Personal Portfolio Site
Congratulations! You're submitting your assignment!
Comprehension Questions