27 lines
610 B
CSS
27 lines
610 B
CSS
|
|
.back_button_1 {
|
|
box-shadow:inset 0px 1px 0px 0px #bee2f9;
|
|
background:linear-gradient(to bottom, #63b8ee 5%, #468ccf 100%);
|
|
background-color:#63b8ee;
|
|
border-radius:5px;
|
|
border:1px solid #3866a3;
|
|
display:inline-block;
|
|
cursor:pointer;
|
|
color:#14396a;
|
|
font-family:Arial;
|
|
font-size:11px;
|
|
font-weight:bold;
|
|
padding:3px 7px;
|
|
text-decoration:none;
|
|
text-shadow:0px 1px 0px #7cacde;
|
|
box-shadow: 1px 1px 2px #30303030;
|
|
margin:0
|
|
}
|
|
.back_button_1:hover {
|
|
background:linear-gradient(to bottom, #468ccf 5%, #63b8ee 100%);
|
|
background-color:#468ccf;
|
|
}
|
|
.back_button_1:active {
|
|
position:relative;
|
|
top:1px;
|
|
} |