@klauke-enterprises/antonia
Version:
CSS & JavaScript library for designing simple but effective websites. A collection mainly dominated by Font Awesome, Google Fonts and Bootstrap Grid.
52 lines (36 loc) • 688 B
text/less
.button {
text-align: center;
padding: 12px;
border-radius: 5px;
font-family: @font-roboto;
cursor: pointer;
}
.button-shadow {
box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}
.button-block {
display: block;
}
.button-primary {
background-color: @color-blue;
color: @color-white;
transition: 0.6s;
&:hover {
background-color: @color-white-smoke;
color: @color-black;
transition: 0.6s;
}
}
.button-secondary {
background-color: @color-orange;
color: @color-white;
transition: 0.6s;
&:hover {
background-color: @color-white-smoke;
color: @color-black;
transition: 0.6s;
}
}
.button-disabled {
cursor: not-allowed;
}