Beautify- Form & buttons

What better way to make your website more appealing but to add a little beauty to your forms and buttons. Make the Forms and buttons match your site with css.
How It Works – CSS
--------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
1 input, .faux-field, textbox, select, button, .button1, .content a.button1 { |
|
This will target all the forms and buttons in your website.
-------------------------------------------------------------------------------------------------------------------
|
|
2 background-color: #F4f4f4;
3 border: 1px solid #eee;
4 border-radius: 5px 5px 5px 5px;
5 color: #565656;
6 cursor: pointer;
7 font-family: Helvetica,Arial,sans-serif;
8 font-size: 12px;
9 font-weight: normal;
10 margin-bottom: 0.5em;
11 padding: 3px;
}
|
|
---------------------------------------------------------------------------------------------------------------------------------------------------------------
change the values as you please then add this to your custom modifiers sheet or your css sheet, both work. Have fun and happy editing.css.