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

.button {
  background-color: #fff;
  border: 2px solid #000;
  color: #000;
  cursor: pointer;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  padding: 8px 15px 7px;
  border-radius: 3px;
  display: inline-block;
  line-height: normal;
}
.button:hover,
.button:active,
.button:focus {
  background: #dedede;
  color: #000;
  text-decoration: none;
}
.button.is-disabled:hover,
.button.is-disabled:active,
.button.is-disabled:focus,
.button.is-disabled {
  background: #ededed;
  border-color: #bbb;
  color: #717171;
  cursor: default;
}
