Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Design First login form design. Constructive criticism please? Reply To: First login form design. Constructive criticism please?

#167766
GroovyMotion
Participant

I get a 404 on your link.
I did a pen for your code: http://codepen.io/GroovyMotion/pen/DCzet/?editors=110

As for the form, like @Robby said, I’d go with slightly larger text, and maybe a little darker?

By looking at your code here is a tip to make it cleaner and easier…you don’t need to repeat the margins and padding, you can go from:
margin-top: 2%;
margin-bottom: 10px;
margin-left:auto;
margin-right:auto;

to: margin: 2% auto 10px auto; or even margin: 1em auto 0.3em auto;
Here is a short article on CSS shorthand: http://www.456bereastreet.com/archive/200502/efficient_css_with_shorthand_properties/

Cheers!