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

create new branch for multipage clone #208

Open
wants to merge 22 commits into
base: main
Choose a base branch
from

Conversation

SyedArslanHaider
Copy link

Learners, PR Template

Self checklist

  • I have committed my files one by one, on purpose, and for a reason
  • I have titled my PR with COHORT_NAME | FIRST_NAME LAST_NAME | REPO_NAME | WEEK
  • I have tested my changes
  • My changes follow the style guide
  • My changes meet the requirements of this task

Changelist

Briefly explain your PR.

Questions

Ask any questions you have for your reviewer.

Copy link

netlify bot commented Sep 28, 2024

Deploy Preview for cyf-module-html-css ready!

Name Link
🔨 Latest commit de60727
🔍 Latest deploy log https://app.netlify.com/sites/cyf-module-html-css/deploys/670a65e11ffd410008d27ec2
😎 Deploy Preview https://deploy-preview-208--cyf-module-html-css.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

@nsi88 nsi88 left a comment

Choose a reason for hiding this comment

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

Well done. Keep going.
Left some questions and suggestions.
Feel free to disagree. I don't know CSS much better than you, ahah)
Also feel free to ask if not clear. We can have a call as well

/* Dont' forget to link this file to your HTML in the <head> */
:root {
--clr-Dark-beige:#E6DACD;
Copy link

Choose a reason for hiding this comment

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

Really nice that you're using variables. A good practice

position: fixed;
top: 0;
width: 100%;
z-index: 1000;
Copy link

Choose a reason for hiding this comment

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

Is it clear for you why z-index is needed?

display: flex;
justify-content: center;
align-items: center;
gap: 10px;
Copy link

Choose a reason for hiding this comment

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

Not critical at all, just a reminder of our lunch conversation) You usually use em or rem for text and px for images. Otherwise if px is used for text, proportions break when you change the font size in the browser.

<span>PROJECT MANAGER</span>
</div>
<ul class="nav-links">
<li><a href="#">ABOUT ME</a></li>
Copy link

Choose a reason for hiding this comment

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

It's a good practice to keep meaning in HTML and visualisation in CSS.
Writing "ABOUT ME" in upper case is a part of visualisation to me.
It can be done in CSS. See https://www.w3schools.com/cssref/pr_text_text-transform.php

width: 16px;
height: 16px;
}
.logo1 span:nth-child(3){
Copy link

Choose a reason for hiding this comment

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

What do you want to do with the :nth-child selectors?
To have different elements of logo1 to have different font and padding?
Is it easy to write the CSS? Would you understand in a month what you meant?
Can you think of another way to express in CSS what you need?

@SyedArslanHaider
Copy link
Author

SyedArslanHaider commented Sep 30, 2024 via email

@nsi88
Copy link

nsi88 commented Sep 30, 2024

About the z index. You understand it right. You take an element out of the current layer and show it in front or back.
There are cases when it's not the tool though.
For your example for putting an image to the background, usually it's done with background-image property.
In the code here, the nav element doesn't even need to be in front of the main. From what I understood from the template they just go one after the other. In case of the nav I don't think you need z-index at all. Try it out

@nsi88
Copy link

nsi88 commented Sep 30, 2024

Yes I use nth:child because its parent child relationship and I easily use
when needs sometime CSS is not work and I use nth child property that works
correctly

I agree that it works. But it's unreadable to be honest) When you will start working as a programmer you will meet a lot of comments about code readability)
When you look at css you can't say what element the rule aplies to until you go to the template and count the elements.
The usual way to it is to use classes. You use them in other places.
You would have a selector like: .logo .name, .logo .job-title, etc.

@nsi88
Copy link

nsi88 commented Sep 30, 2024

Btw, you can answer to each my comment separately) This way I don't need to search for my comment to remember what we're talking about)

@nsi88
Copy link

nsi88 commented Sep 30, 2024

Keep going. Good job

@SyedArslanHaider
Copy link
Author

SyedArslanHaider commented Sep 30, 2024 via email

@@ -0,0 +1,647 @@
* {
Copy link

Choose a reason for hiding this comment

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

Don't you see any problems with having a separate css file per html page?

font-family: Quicksand;
}

.nav-links li:first-child a {
Copy link

Choose a reason for hiding this comment

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

For resume it should be the second child.
But usually people don't count children in css. They just use an extra class. For example "active" or something like this.

<p>Call</p>
<span>123-456-7890</span>
</div>
<div class="second">
Copy link

Choose a reason for hiding this comment

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

What was the difficulty with using a single class instead of 3 separate classes: one, second, third?
You need to be able to add similar html elements without changing css.

Copy link

Choose a reason for hiding this comment

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

Same story for footer-left and footer-right.
Have you tried to use a single class for that?

Copy link

Choose a reason for hiding this comment

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

Class means "one of". For example "one of footer items".
If it doesn't read like this, there is something wrong probably.
"One of footer right" doesn't read really well. There is just one footer right component.

Copy link

Choose a reason for hiding this comment

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

I'd recommend to check for all cases when classes are used this way and to try to change it to us a single class.
If one element should look differently, for example an active navigation link, it gets an extra class "active".


const OVERFLOW = $('#toggle1');
burgerr.addEventListener('click', () => {
Copy link

Choose a reason for hiding this comment

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

Right now we just reload a page on click. No javascript is used basically.
Is there a requirement for the task to reload only a part of the page as in the demo?

@SyedArslanHaider
Copy link
Author

SyedArslanHaider commented Oct 3, 2024 via email

@nsi88
Copy link

nsi88 commented Oct 4, 2024

Ok, let's pair program a bit next time we meet. Probably easier this way.

@SyedArslanHaider
Copy link
Author

SyedArslanHaider commented Oct 4, 2024 via email

@@ -326,6 +334,139 @@ ul {
}
}

@media screen and (min-width: 900px) {
Copy link

Choose a reason for hiding this comment

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

Will complicate a bit the task for you)
Do all the properties below change comparing to other screen sizes?
If not it's better to have them outside of the media query block.
Less code to maintain and to load to browser.

Copy link

Choose a reason for hiding this comment

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

I saw you deleted some pieces of media queries. Well done. Keep going

Copy link

@nsi88 nsi88 left a comment

Choose a reason for hiding this comment

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

Will comment one thing again because it's important.
For when you make it work. Try to deduplicate the code as much as you can.

  1. The majority of styles repeat across pages. Try to have a single css file. Or one css with common styles and then page specific css files with a minimum of content.
  2. Try to move common styles for all page sizes outside of media queries.

Having the duplication makes you double the work as well.
Also you risk to have different styles on different pages.

@SyedArslanHaider
Copy link
Author

SyedArslanHaider commented Oct 9, 2024 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants