mirror of
https://github.com/locomotivemtl/locomotive-boilerplate.git
synced 2026-01-15 00:55:08 +08:00
20 lines
412 B
SCSS
20 lines
412 B
SCSS
// ==========================================================================
|
|
// Button objects
|
|
// ==========================================================================
|
|
.o-button {
|
|
padding: rem(10px);
|
|
background-color: lightgray;
|
|
|
|
&:focus {
|
|
background-color: darkgray;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: gray;
|
|
}
|
|
|
|
&:active {
|
|
background-color: dimgray;
|
|
}
|
|
}
|