-
-
Notifications
You must be signed in to change notification settings - Fork 54
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
base: main
Are you sure you want to change the base?
create new branch for multipage clone #208
Conversation
✅ Deploy Preview for cyf-module-html-css ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
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.
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
MultiPage-Clone/css/main.css
Outdated
/* Dont' forget to link this file to your HTML in the <head> */ | ||
:root { | ||
--clr-Dark-beige:#E6DACD; |
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.
Really nice that you're using variables. A good practice
MultiPage-Clone/css/main.css
Outdated
position: fixed; | ||
top: 0; | ||
width: 100%; | ||
z-index: 1000; |
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.
Is it clear for you why z-index is needed?
MultiPage-Clone/css/main.css
Outdated
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 10px; |
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.
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.
MultiPage-Clone/index.html
Outdated
<span>PROJECT MANAGER</span> | ||
</div> | ||
<ul class="nav-links"> | ||
<li><a href="#">ABOUT ME</a></li> |
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.
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
MultiPage-Clone/css/main.css
Outdated
width: 16px; | ||
height: 16px; | ||
} | ||
.logo1 span:nth-child(3){ |
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.
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?
Hi, Sergey Novikov
Thanks for your response I'm very happy to see your response ❤️
For Z index : I know it works as layer like if we increase an element z
index it's come front and if decrease it go to back Example : I have a
paragraph and an image if I decrease the image z index it goes back to the
paragraph and paragraph shoes in front of the image
Ahh I remember we discussed that PX is not good practice to use most ok I
will change it with rm and rem
Great I used this property to show text in uper case text-transform:
uppercase and it works 🤭
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
block property is used to change the behaviour of an element like firstly I
use display none then I use display block we can use display inline as well
according to requirements
…On Mon, 30 Sept 2024, 1:57 pm Sergey Novikov, ***@***.***> wrote:
***@***.**** commented on this pull request.
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
------------------------------
In MultiPage-Clone/css/main.css
<#208 (comment)>
:
> /* Dont' forget to link this file to your HTML in the <head> */
+:root {
+ --clr-Dark-beige:#E6DACD;
Really nice that you're using variables. A good practice
------------------------------
In MultiPage-Clone/css/main.css
<#208 (comment)>
:
> + --clr-Dark-beige:#E6DACD;
+ --clr-Light-beige:#F4ECE6;
+ --clr-Royal-blue:#0150FD;
+ --clr-Black:#000;
+ --clr-White:#FFF;
+}
+nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ height: 150px;
+ background: var(--clr-White);
+ position: fixed;
+ top: 0;
+ width: 100%;
+ z-index: 1000;
Is it clear for you why z-index is needed?
------------------------------
In MultiPage-Clone/css/main.css
<#208 (comment)>
:
> +nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ height: 150px;
+ background: var(--clr-White);
+ position: fixed;
+ top: 0;
+ width: 100%;
+ z-index: 1000;
+}
+.logo{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ gap: 10px;
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.
------------------------------
In MultiPage-Clone/index.html
<#208 (comment)>
:
> <body>
+<nav>
+ <div class="logo">
+ <div class="logo1">
+ <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQNgjV6Hxw34EU6zli1YKdNKY45CCCzDtqjKkUsX-uIh3nYTEMMFSL_CMb0Y00h16Hs0uo&usqp=CAU">
+ <span>Maya Nelson</span>
+ <span>/</span>
+ </div>
+
+ <span>PROJECT MANAGER</span>
+ </div>
+ <ul class="nav-links">
+ <li><a href="#">ABOUT ME</a></li>
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
------------------------------
In MultiPage-Clone/index.html
<#208 (comment)>
:
> + <div class="logo">
+ <div class="logo1">
+ <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQNgjV6Hxw34EU6zli1YKdNKY45CCCzDtqjKkUsX-uIh3nYTEMMFSL_CMb0Y00h16Hs0uo&usqp=CAU">
+ <span>Maya Nelson</span>
+ <span>/</span>
+ </div>
+
+ <span>PROJECT MANAGER</span>
+ </div>
+ <ul class="nav-links">
+ <li><a href="#">ABOUT ME</a></li>
+ <li><a href="#">RESUME</a></li>
+ <li><a href="#">PROJECT</a></li>
+ <li><a href="#">CONTACT</a>
+ </ul>
+ <div class="navimage">
What is the block used for?
------------------------------
In MultiPage-Clone/main.js
<#208 (comment)>
:
> \ No newline at end of file
+burgerr.addEventListener('click', () => {
You want that the link changes the way it looks when clicked, right?
Have a look at CSS :active selector
https://www.w3schools.com/cssref/sel_active.php.
Probably you don't need javascript for that at all.
------------------------------
In MultiPage-Clone/css/main.css
<#208 (comment)>
:
> + justify-content: center;
+ align-items: center;
+ gap: 10px;
+ margin-left: 2rem;
+}
+.logo1{
+ display: flex;
+ gap: 10px;
+ justify-content: center;
+ align-items: center;
+}
+.logo1 img{
+ width: 16px;
+ height: 16px;
+}
+.logo1 span:nth-child(3){
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?
—
Reply to this email directly, view it on GitHub
<#208 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHWOUAKPUMZRRGY2AVX655TZZE4EJAVCNFSM6AAAAABPASIOOCVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZDGMZXGAZTMOBQGM>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
About the z index. You understand it right. You take an element out of the current layer and show it in front or back. |
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) |
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) |
Keep going. Good job |
Ok I will try thanks for your quick responses ❤️
…On Mon, 30 Sept 2024, 4:42 pm Sergey Novikov, ***@***.***> wrote:
Keep going. Good job
—
Reply to this email directly, view it on GitHub
<#208 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHWOUAIAUU6XJ5LEC3CCSODZZFPL7AVCNFSM6AAAAABPASIOOCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGOBTGQYDMMJVGA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
@@ -0,0 +1,647 @@ | |||
* { |
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.
Don't you see any problems with having a separate css file per html page?
MultiPage-Clone/css/resume.css
Outdated
font-family: Quicksand; | ||
} | ||
|
||
.nav-links li:first-child a { |
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.
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.
MultiPage-Clone/index.html
Outdated
<p>Call</p> | ||
<span>123-456-7890</span> | ||
</div> | ||
<div class="second"> |
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.
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.
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.
Same story for footer-left and footer-right.
Have you tried to use a single class for that?
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.
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.
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.
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".
MultiPage-Clone/main.js
Outdated
|
||
const OVERFLOW = $('#toggle1'); | ||
burgerr.addEventListener('click', () => { |
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.
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?
*Hi, *
*Sergey Novikov Thanks for your response * I use active class to show the
nav link active instead of using the nth-child pseudo-class
yes correct I use three different classes my work is done if I use only one
class the reason why i use three different classes because when i use media
queries for mobile i use display grid on fot-right to position the element
but now I change it and use nth-child pseudo-class for positioning grid
element
also, I use fot-left and fot-right two different classes in footer because
in for-left i use flex-direction:column and fot-right i use
flex-direction:row
I use same code for header and footer in both HTML files because I did't
know how it is possible with javascript to write only one header and footer
and use it in all pages
…On Thu, Oct 3, 2024 at 9:20 AM Sergey Novikov ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In MultiPage-Clone/css/resume.css
<#208 (comment)>
:
> @@ -0,0 +1,647 @@
+* {
Don't you see any problems with having a separate css file per html page?
------------------------------
In MultiPage-Clone/css/resume.css
<#208 (comment)>
:
> +ul {
+ margin-right: 2rem;
+}
+
+.nav-links li {
+ padding: 0 20px;
+}
+
+.nav-links a {
+ color: var(--clr-Black);
+ text-decoration: none;
+ font-size: 15px;
+ font-family: Quicksand;
+}
+
+.nav-links li:first-child a {
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.
------------------------------
In MultiPage-Clone/index.html
<#208 (comment)>
:
> + <p>I’m a great place for you to tell a story and let your users know a little more about you.</p>
+ </div>
+ </div>
+ </div>
+</main>
+<footer>
+ <div class="fot-left">
+ <span>© 2035 by Maya Nelson.</span>
+ <span>Powered and secured by <u>Wix</u></span>
+ </div>
+ <div class="fot-right">
+ <div class="one">
+ <p>Call</p>
+ <span>123-456-7890</span>
+ </div>
+ <div class="second">
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.
------------------------------
In MultiPage-Clone/main.js
<#208 (comment)>
:
>
-const OVERFLOW = $('#toggle1');
+burgerr.addEventListener('click', () => {
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 <https://www.wix.com/website-template/view/html/2622>?
------------------------------
In MultiPage-Clone/index.html
<#208 (comment)>
:
> + <p>I’m a great place for you to tell a story and let your users know a little more about you.</p>
+ </div>
+ </div>
+ </div>
+</main>
+<footer>
+ <div class="fot-left">
+ <span>© 2035 by Maya Nelson.</span>
+ <span>Powered and secured by <u>Wix</u></span>
+ </div>
+ <div class="fot-right">
+ <div class="one">
+ <p>Call</p>
+ <span>123-456-7890</span>
+ </div>
+ <div class="second">
Same story for footer-left and footer-right.
Have you tried to use a single class for that?
------------------------------
In MultiPage-Clone/index.html
<#208 (comment)>
:
> + <p>I’m a great place for you to tell a story and let your users know a little more about you.</p>
+ </div>
+ </div>
+ </div>
+</main>
+<footer>
+ <div class="fot-left">
+ <span>© 2035 by Maya Nelson.</span>
+ <span>Powered and secured by <u>Wix</u></span>
+ </div>
+ <div class="fot-right">
+ <div class="one">
+ <p>Call</p>
+ <span>123-456-7890</span>
+ </div>
+ <div class="second">
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.
------------------------------
In MultiPage-Clone/index.html
<#208 (comment)>
:
> + <p>I’m a great place for you to tell a story and let your users know a little more about you.</p>
+ </div>
+ </div>
+ </div>
+</main>
+<footer>
+ <div class="fot-left">
+ <span>© 2035 by Maya Nelson.</span>
+ <span>Powered and secured by <u>Wix</u></span>
+ </div>
+ <div class="fot-right">
+ <div class="one">
+ <p>Call</p>
+ <span>123-456-7890</span>
+ </div>
+ <div class="second">
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".
—
Reply to this email directly, view it on GitHub
<#208 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHWOUAIIVLJTOGTVR25P4PLZZTV5HAVCNFSM6AAAAABPASIOOCVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZDGNBUHAYDAMJXGM>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Ok, let's pair program a bit next time we meet. Probably easier this way. |
Yeah, that's a good idea.
…On Fri, 4 Oct 2024, 9:09 am Sergey Novikov, ***@***.***> wrote:
Ok, let's pair program a bit next time we meet. Probably easier this way.
—
Reply to this email directly, view it on GitHub
<#208 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHWOUALRAATUHJDHXV26O3DZZY5L3AVCNFSM6AAAAABPASIOOCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGOJSHE3TSOJTGM>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
MultiPage-Clone/css/project.css
Outdated
@@ -326,6 +334,139 @@ ul { | |||
} | |||
} | |||
|
|||
@media screen and (min-width: 900px) { |
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.
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.
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.
I saw you deleted some pieces of media queries. Well done. Keep going
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.
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.
- 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.
- 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.
Thank you for the feedback! I understand the importance of deduplicating
the code and will focus on organizing the CSS better, reducing redundancy,
and moving common styles out of media queries.I appreciate the advice and
will apply it moving forward.
…On Wed, 9 Oct 2024, 9:31 am Sergey Novikov, ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In MultiPage-Clone/css/project.css
<#208 (comment)>
:
> @@ -326,6 +334,139 @@ ul {
}
}
***@***.*** screen and (min-width: 900px) {
I saw you deleted some pieces of media queries. Well done. Keep going
—
Reply to this email directly, view it on GitHub
<#208 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHWOUAIEDUO5UT24EIK4OJLZ2TLWHAVCNFSM6AAAAABPASIOOCVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZDGNJWGI4DSNZXGU>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
…n an element on resume page
Learners, PR Template
Self checklist
Changelist
Briefly explain your PR.
Questions
Ask any questions you have for your reviewer.