Revision 93c68b642e61c9f5853a4ced262b61d061ca4343 authored by Aaron Gao on 21 March 2017, 00:24:20 UTC, committed by Facebook Github Bot on 21 March 2017, 00:39:17 UTC
Summary:
add debug mode for better debugging
refactor some regex
change micros/op to ops/sec
Closes https://github.com/facebook/rocksdb/pull/1999

Differential Revision: D4742806

Pulled By: lightmark

fbshipit-source-id: 0fe3ae6
1 parent 21d8c31
Raw File
_footer.scss
.footerContainer {
  background: $secondary-bg;
  color: $primary-bg;
  overflow: hidden;
  padding: 0 10px;
  text-align: left;

  .footerWrapper {
    border-top: 1px solid $primary-bg;
    padding: 0;

    .footerBlocks {
      align-items: center;
      align-content: center;
      display: flex;
      flex-flow: row wrap;
      margin: 0 -20px;
      padding: 10px 0;
    }

    .footerSection {
      box-sizing: border-box;
      flex: 1 1 25%;
      font-size: 14px;
      min-width: 275px;
      padding: 0px 20px;

      a {
        border: 0;
        color: inherit;
        display: inline-block;
        line-height: 1.2em;
      }

      .footerLink {
        padding-right: 20px;
      }
    }

    .fbOpenSourceFooter {
      align-items: center;
      display: flex;
      flex-flow: row nowrap;
      max-width: 25%;

      .facebookOSSLogoSvg {
        flex: 0 0 31px;
        height: 30px;
        margin-right: 10px;
        width: 31px;

        path {
          fill: $primary-bg;
        }

        .middleRing {
          opacity: 0.7;
        }

        .innerRing {
          opacity: 0.45;
        }
      }

      h2 {
        display: block;
        font-weight: 900;
        line-height: 1em;
      }
    }
  }
}

@media only screen and (min-width: 900px) {
  .footerSection {
    &.rightAlign {
      margin-left: auto;
      max-width: 25%;
      text-align: right;
    }
  }
}
back to top