Sha256: 678ba2f3cf55be677384a470800e39d0db5ca658666126d0df64183d233a19b9

Contents?: true

Size: 1.38 KB

Versions: 3

Compression:

Stored size: 1.38 KB

Contents

@import "../app/assets/mixins";

// Clear Floated Elements
.clearfix:after {
  clear: both;
  content: ' ';
  display: block;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

// This is just for the example page
body {
  color: #333;
}

#buttons {
  margin: 50px auto;
  width: 995px;

  h2 {
    font: 300 22px "helvetica neue", sans-serif;
    margin: 0 0 4px 0;
  }

  p {
    color: #777;
    font: normal 14px "helvetica neue", sans-serif;
    margin: 0 0 24px 0;
  }

  .button-set {
    @extend .clearfix;
    margin: 0 0 40px 0;

    p {
      border-bottom: 1px solid #ddd;
      font: bold 14px "helvetica neue", sans-serif;
      padding: 0 0 4px 0;
    }

    section {
      float: left;
      margin-right: 25px;
      text-align: center;
      width: 315px;

      &:last-child {
        margin-right: 0;
      }
    }
  }
}

// Style the buttons
.simple {
  button.default {

    @include button;
  }

  button.color-2 {
    @include button(#f10);
  }

  button.color-3 {
    @include button(#29c13b);
  }
}

.shiny {
  button.default {
    @include button(shiny);
  }

  button.color-2 {
    @include button(shiny,#f10);
  }

  button.color-3 {
    @include button(shiny, #29c13b);
  }
}

.pill {
  button.default {
    @include button(pill);
  }

  button.color-2 {
    @include button(pill, #f10);
  }

  button.color-3 {
    @include button(pill, #29c13b);
  }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bourbon-0.0.7 demo/stylesheets/scss/demo.scss
bourbon-0.0.6 demo/stylesheets/scss/demo.scss
bourbon-0.0.5 demo/stylesheets/scss/demo.scss