summaryrefslogtreecommitdiffstats
path: root/frontends/php/styles/form.css
blob: b2d718c2406ac6ede8507f1adc64ac9532db606f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* CSS Document */

/**************** FORM ELEMENTS ****************/
.biginput
{
	font-family: Verdana, Helvetica, Geneva;
	font-size: 10px;
	border: 1px solid gray;
	background-color: white;
	margin: 2px;
}
.biginput:focus	{
	border-color: black;
}
.biginput:hover	{
	border-color: black;
}

.biginput[readonly] /* NOTE: Ignored by IE */
{
	border-color: #D0D0D0;
	background-color: #EEEEEE;
}

.button {
	font-family: Verdana, Helvetica, Geneva;
	font-size: 10px;
	background: #F0F0F0 url('../images/gradients/button.gif') repeat-x top left;
	border: 1px solid #808080;
	height: 18px;
	padding: 0px 5px 0px 5px;
	margin: 2px;
}
.button:hover {
	text-decoration: underline;
	border-color: black;
}