1/* --------------------------------------------------------------
2
3   H6e Minimal Forms
4
5-------------------------------------------------------------- */
6
7/* Inputs
8-------------------------------------------------------------- */
9
10input[type="text"], input[type="password"], input.text, input.button, textarea {
11	padding:0.2em 0.5em;
12	margin:0.5em 0;
13	border:1px solid #bbb;
14	font-size:1.1em;
15}
16
17input[type="text"]:focus, input[type="password"]:focus, input.text:focus, textarea:focus {
18	border:1px solid #666;
19}
20
21input.button {
22	border-color:#4E5368;
23	background:#4E5368;
24	color:white;
25	border:0;
26}