32 lines
820 B
Plaintext
32 lines
820 B
Plaintext
// main: ../style.less
|
|
@import "colors.less";
|
|
|
|
@button-height: 48px;
|
|
@button-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
|
|
@button-success-color-from: #1756ad;
|
|
@button-success-color-to: #002680;
|
|
|
|
button.btn {
|
|
height: @button-height;
|
|
border-radius: 2px;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
box-shadow: @button-shadow;
|
|
padding: 0 20px;
|
|
border:none;
|
|
}
|
|
|
|
button.btn.btn-success {
|
|
background-image: linear-gradient(to bottom, @button-success-color-from, @button-success-color-to);
|
|
color: white;
|
|
}
|
|
|
|
button.btn.btn-success:hover {
|
|
background-image: linear-gradient(to bottom, @button-success-color-from, @button-success-color-from);
|
|
}
|
|
|
|
button.btn.btn-success:active {
|
|
background-image: linear-gradient(to bottom, @button-success-color-to, @button-success-color-from);
|
|
}
|