50 lines
992 B
CSS
50 lines
992 B
CSS
.big_green_button, .submit {
|
|
margin:0px;
|
|
margin-left: 3em;
|
|
border:solid 1px #ccc;
|
|
border-top:solid 1px #ddd;
|
|
border-left:solid 1px #ddd;
|
|
font-size:22px;
|
|
color:#fff;
|
|
cursor:pointer;
|
|
line-height:42px;
|
|
height:42px;
|
|
padding:0px 15px;
|
|
overflow:visible;
|
|
border-radius:5px;
|
|
-moz-border-radius:5px;
|
|
-webkit-border-radius:5px;
|
|
background:#87b500;
|
|
border-width:0px;
|
|
border-right:solid 1px #689300;
|
|
border-bottom:solid 1px #689300;
|
|
text-shadow:#719e03 1px 1px;
|
|
}
|
|
|
|
.big_button:active {
|
|
background:#87b500;
|
|
color:#ECF5DE;
|
|
line-height:44px;
|
|
}
|
|
|
|
.big_button.red {
|
|
border-top:solid 1px #cc293c;
|
|
border-left:solid 1px #cc293c;
|
|
background:#bc2133 /* url('/images/big_red_button_bg.png') */ top repeat-x;
|
|
border-right:solid 1px #570710;
|
|
border-bottom:solid 1px #570710;
|
|
text-shadow:#a61727 1px 1px;
|
|
}
|
|
|
|
.big_button.red:active {
|
|
background:#bc2133;
|
|
color:#F5DFDF;
|
|
line-height:44px;
|
|
}
|
|
|
|
button.giant_blue_button {
|
|
padding:0;
|
|
background:transparent;
|
|
border:none;
|
|
cursor:pointer;
|
|
}
|