-
Notifications
You must be signed in to change notification settings - Fork 91
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
Big change always starts with small ideas! Project 3 #58
base: master
Are you sure you want to change the base?
Conversation
Added Readme! Italic
I added a Hamburger menu, however I failed to made it work (I need some java script). I finished with the desktop mobile adjustments I added a footer
I added a Feedback Form in the About me page.
Added footer icons (not linked yet), they only appear on the start site and not on the other sites (I don't know why). On the about me site: added a Feedback Box: Button, Text box, Mail box
I changed some styling on the feedback website. Used a texture instead of an input which allowed me to increase the text box size. I made each field responsive.
Projet 3: Spark conversations Forum, style, and data sent between webpages and services. - Buttons (Link) - Submit Button - Text Fields
Hi Rebecca! I have done a code review on this project already - haven't I? I just can't find it 🤔 I'll make a short new one anyway and you can ping me if you have any questions. |
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 Rebecca with your form! At first, I didn't realize you added more pages to your project, sorry about that. Keep up the good work!
<title>BIG CHANGE ALWAYS STARTS WITH SMALL IDEAS!</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"/> | ||
<link rel="icon" type="image/x-icon" href="/Users/rebeccabrogli/Desktop/Project1/project-p1-first-webpage-master/images/bulb_on.svg"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.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.
Would be so nice with a favicon here as well 😊
<div> </div> | ||
</div> | ||
|
||
<img src="/Users/rebeccabrogli/Desktop/Desktop - Rebecca’s MacBook Air/Project1/project-p1-first-webpage-master/images/bulb_on.svg" alt="Big Idea Logo"> |
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.
You need to add any images to your uploads, this will only show on your computer since it's a local path.
<section class="welcome-comtainer"> | ||
<div class="titel"> |
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.
Spelling of class names will help you when you reuse them ;)
</div> | ||
</section> | ||
|
||
<section class="idea-boxes"> |
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.
Very nice flexboxing!
<footer> | ||
<div class="footer-content"> | ||
<h4>More about me!</h4> | ||
<ul class="socials"> | ||
<li><a href="#"><i class="fa fa-linkedin-square"></i></a></li> | ||
<li><a href="#"><i class="fa fa-linkedin"></i></a></li> | ||
<li><a href="#"><i class="fa fa-envelope"></i></a></li> | ||
</ul> | ||
</div> | ||
|
||
</footer> |
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.
Very nice footer!
<h4> How did you like the journey through the website?</h4> | ||
<h4> Please leave a Feedback 👍🏽</h4> | ||
|
||
<form action="https://httpbin.org/anything" method="post"> |
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.
Aha - I guess this is the new part!
form { | ||
max-width: 500px; | ||
text-align:center; | ||
border-radius: 5%; | ||
margin: 0 auto; | ||
} |
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.
Very nice form!
max-width: 100%; | ||
} | ||
|
||
textarea { |
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 usually prevent resize of the textarea
to not give the user the ability to break the design:
resize: none;
input:valid { | ||
background-color: rgb(244, 136, 97, 0.7); | ||
font-weight: bold; | ||
color: rgb(255, 233, 214); | ||
} | ||
|
||
input:invalid { | ||
background-color:rgba(244, 136, 97, 0.488); | ||
color: rgb(255, 233, 214); | ||
} | ||
|
||
textarea:valid { | ||
background-color: rgb(244, 136, 97, 0.7); | ||
font-weight: bold; | ||
color: rgb(255, 233, 214); | ||
} | ||
|
||
textarea:invalid { | ||
background-color:rgba(244, 136, 97, 0.488); | ||
} |
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 with these different styles! Makes it more comprehensible
.SubmitButton:hover { | ||
background-color: rgb(244, 136, 97); | ||
font-weight: bold; | ||
} |
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.
Very nice that the styling is aligned with the rest of the page 👍
I finished now with the third project and I had some issues making pull requests. I hope this time it worked.
Thanks a lot for your comments.