/**
 * @file
 * Styles for Bartik's buttons.
 */

.button {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  border-radius: 0.5em 0 0.5em 0;
  background-color: #18BB7C;
  padding: 0.75em 1.5em;
  margin: 0;
  border: none;
  color: #FFF;
}
.button:hover,
.button:active,
.button:focus {
  border: none;
  color: #FFF;
  background-color: #108256;
}
.button.is-disabled:hover,
.button.is-disabled:active,
.button.is-disabled:focus,
.button.is-disabled {
  cursor: default;
}
