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.
38.
39.
40.
41.
42.
43.
44.
45.
46.
|
/* Buttons */
.button a, .button-action a, .button-submit-action input, .button-submit input, .button-submit-big input { /* defines general properties of buttons, the font color and typeface, and padding */
color: #419430;
font: bold 11px Arial, Helvetica, sans-serif;
padding: 2px 8px 3px 8px;
}
/* input buttons */
.button-submit-action, .button-submit, .button-submit-big, .button, .button-action { /* defines the right part of the background for action button and height */
background: url('images/but_right_action.gif') no-repeat right top;
height: 20px;
}
.button-submit-action, .button-action { /* right padding in action button for all browsers */
padding-right: 17px;
margin-left: 6px;
}
.button-submit-action, .button-action, x:-moz-any-link { /* right padding in action button only for Firefox */
padding-right: 12px;
}
.button-submit-action input, .button-submit input, .button-submit-big input, .button-action a { /* defines the left part of the background for action button, height and padding */
background: transparent url('images/but_left_action.gif') no-repeat left top;
padding: 3px 0px 4px 9px;
height: 20px;
line-height: 14px;
}
.button-submit-action input, .button-submit input, .button-submit-big input, .button-action a { /* shifts the element with the left part of the background to the left by the radius of the curve */
border: 0px none;
margin: 0 0 0 -6px;
}
.button-submit-action input, .button-submit-big input, .button-action a, x:-moz-any-link { /* defines padding for Firefox */
padding: 1px 0px 4px 6px;
}
.button-submit, .button {
background: #13b3e7 none; /* if regular button has no background image, then define only the background color */
background: #13b3e7 url('images/but_bg.gif') repeat left top; /* if regular button has a background image, then define it here */
border: 1px solid #0e94c0;
}
.button-submit input, .button a {
background-image: none;
font: bold 12px Tahoma;
padding: 1px 6px 2px 5px;
}
.button-submit input {
padding-bottom: 6px;
line-height: 16px;
}
/* Buttons */ |