24 lines
538 B
CSS
24 lines
538 B
CSS
.alc-button-normal {
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
padding: 0 16px;
|
|
margin-left: 16px;
|
|
margin-top: 8px;
|
|
min-width: 100px;
|
|
outline: none;
|
|
border: 1px solid #e3e7e8;
|
|
background-color: #f7f9fa;
|
|
box-shadow: 1px 1px 1px #fff inset;
|
|
color: #3498db;
|
|
text-align: center;
|
|
line-height: 32px;
|
|
}
|
|
.alc-button-normal:hover {
|
|
background-color: #c8d6dd;
|
|
box-shadow: none;
|
|
cursor: pointer;
|
|
}
|
|
.alc-button-normal:active {
|
|
color: #f7f9fa;
|
|
background-color: #54b8eb;
|
|
} |