cspace-ui
Version:
CollectionSpace user interface for browsers
25 lines (21 loc) • 534 B
CSS
@value buttonBg, buttonBgActive from 'cspace-input/styles/colors.css';
.common {
display: inline-block;
border-radius: 5px;
padding: 10px 20px 10px 50px;
background-color: buttonBg;
background-image: url(../../images/login.svg);
background-size: 28px 28px;
background-position: 16px center;
background-repeat: no-repeat;
font-size: 24px;
font-weight: 400;
color: white;
text-decoration: none;
}
.common:hover {
background-color: buttonBgActive;
}
.common:focus {
box-shadow: 0 0 0 2px buttonBgActive;
}