2015-08-03 11:23:48 -04:00
|
|
|
// ==========================================================================
|
|
|
|
|
// Button objects
|
|
|
|
|
// ==========================================================================
|
2015-11-16 17:28:51 -05:00
|
|
|
.o-button {
|
2016-08-22 10:30:46 -04:00
|
|
|
padding: rem(10px);
|
|
|
|
|
background-color: lightgray;
|
2015-08-03 11:23:48 -04:00
|
|
|
|
2016-08-22 10:30:46 -04:00
|
|
|
&:focus {
|
|
|
|
|
background-color: darkgray;
|
|
|
|
|
}
|
2015-08-03 11:23:48 -04:00
|
|
|
|
2016-08-22 10:30:46 -04:00
|
|
|
&:hover {
|
|
|
|
|
background-color: gray;
|
|
|
|
|
}
|
2015-08-03 11:23:48 -04:00
|
|
|
|
2016-08-22 10:30:46 -04:00
|
|
|
&:active {
|
|
|
|
|
background-color: dimgray;
|
|
|
|
|
}
|
2015-08-03 11:23:48 -04:00
|
|
|
}
|