Hello everyone! So I finished the survey form project from the Responsive Web Design section.
Hope you all like and can leave some comments or feedback.
Happy coding!
link and screenshot below
Hello everyone! So I finished the survey form project from the Responsive Web Design section.
Hope you all like and can leave some comments or feedback.
Happy coding!
link and screenshot below
I like the design.
Maybe add a light box shadow to move the form forward? The bottom muddies up the trees just a little.
Looks great!
Did you try slightly changing the opacity of the form-box background? That way the trees would be more noticeable in mobile mode.
maybe leave a codepen link so we can learn from you. Good stuff.
hi thanks for the input , yeah i thought about it by the end but since I had been grinding all day I was tired and wanted to upload it, everything is contained within that black rectangle so if i applied an opacity to it everything turned transparent, any ideas on how to solve that issue?
hi ! thank you very much ! that is a great idea, makes the form box pop a little bit more
hi! i didn’t use codepen but here is the github repo https://github.com/nachoorihuela/fcc_survey_form and i will try to answer any question you may have
Very nice, looks great.
I would add resize: vertical;
to the textarea
so the user can only make the input taller and not wider, so it doesn’t overflow the form.
I would move the background image to the body, set it to 100vh
and then remove the height: 100%;
from #survey
. That should make the background image fill the full height.
body {
font-family: "Raleway", sans-serif;
line-height: 1.5;
color: #aaa;
height: 100vh;
background: url(../img/showcase.jpg) no-repeat center center/cover;
}
#survey {
/* background: url(../img/showcase.jpg) no-repeat center center/cover; */
/* height: 100%; */
display: flex;
align-items: center;
justify-content: center;
}
Again, great job.
I didn’t know about the resize property , it’s great to know ! and i will certainly try moving the image to the body.
Thanks a lot for your kind words and your comments I appreciate it
I was thinking, for the box, something like background: rgba(0, 0, 0, 0.7);
Looks awesome! I have a suggestion: maybe make that black box in the middle a bit transparent by setting the background of it to
rgba(29, 29, 29, 0.88)