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

.button {
  background-color: #eee;
  border: 1px solid #ccc;
  color: #666;
  cursor: pointer;
  font-size: 0.929em;
  font-weight: normal;
  text-align: center;
  padding: 0.250em 1.063em;
  display: inline-block;
  line-height: normal;
}
.button:hover,
.button:active,
.button:focus {
  background: #dedede;
  color: #5a5a5a;
  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;
}
