sci-pro
Version:
32 lines (31 loc) • 668 B
CSS
.sci-demo-button {
box-sizing: border-box;
display: inline-block;
padding: 12px 20px;
margin: 0;
font-size: 14px;
font-weight: 500;
line-height: 1;
color: #606266;
text-align: center;
white-space: nowrap;
cursor: pointer;
background: #fff;
border: 1px solid #dcdfe6;
border-radius: 4px;
outline: none;
transition: 0.1s;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.sci-demo-button.sci-demo-button--primary {
color: #fff;
background-color: #409eff;
border-color: #409eff;
}
.sci-demo-button.sci-demo-button--primary:hover {
color: #fff;
background: #66b1ff;
border-color: #66b1ff;
}