ReDesign Survey Form Project

Please give some feedback to my developer suvery form project.

1 Like

Really nice. I would only increase the width and height in input[type=radio] and also add some small margin:

input[type=radio] {
  -webkit-appearance: none;
  height: 26px;
  width: 26px;
  margin: 3px;
  border: 3px solid var(--color4);
  border-radius: 50%;
  outline: none;
  vertical-align: middle;
  transition: background-color 200ms ease-in; 
}

I would also add autocomplete="off" to all input type text to make more visible the animation on input:focus. Like:

<input type="text" class="basic-input" id="name" placeholder="Name" required autocomplete="off">

Happy coding

Hey, it’s pretty nice and oh boy… very responsive. Great work.

OMG! This is so cool!