Revision 8432bcf555649ada68bc1bbfaab98967598070dd authored by Siying Dong on 02 March 2017, 18:08:49 UTC, committed by Facebook Github Bot on 02 March 2017, 18:24:12 UTC
Summary: Closes https://github.com/facebook/rocksdb/pull/1941

Differential Revision: D4637253

Pulled By: siying

fbshipit-source-id: a59dcdb
1 parent d5b607a
Raw File
_buttons.scss
.button {
  border: 1px solid $primary-bg;
  border-radius: 3px;
  color: $primary-bg;
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2em;
  padding: 10px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;

  &:hover {
    background: $primary-bg;
    color: $primary-overlay;
  }
}

.homeContainer {
  .button {
    border-color: $primary-overlay;
    border-width: 1px;
    color: $primary-overlay;

    &:hover {
      background: $primary-overlay;
      color: $primary-bg;
    }
  }
}

.blockButton {
  display: block;
}

.edit-page-link {
    float: right;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    opacity: 0.6;
    transition: opacity 0.5s;
}

.edit-page-link:hover {
  opacity: 1;
}
back to top