22 lines
430 B
CSS
22 lines
430 B
CSS
input.BigButton {
|
|
width: 150px;
|
|
padding: 20px;
|
|
white-space: normal;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
font-size: 120%;
|
|
background: #3366cc;
|
|
color: #fff;
|
|
border: 5px solid #112233;
|
|
border-radius: 10px;
|
|
-moz-box-shadow: 6px 6px 5px #999;
|
|
-webkit-box-shadow: 6px 6px 5px #999;
|
|
box-shadow: 6px 6px 5px #999;
|
|
}
|
|
|
|
input.BigButton:hover {
|
|
color: #ffff00;
|
|
background: #000;
|
|
border: 5px solid #fff;
|
|
}
|