Sha256: cb239c6e2ce623fff511404c6e32e22aa691d34447c10341c73725a6b60bec84

Contents?: true

Size: 1008 Bytes

Versions: 2

Compression:

Stored size: 1008 Bytes

Contents

// ===================================
//              Panels
// ===================================




.callout {
  position:relative;
  word-wrap:break-word;
  padding:1em;
  background:$button-color;
  border:1px solid $button-active;
  color:$button-text;
  margin-bottom:15px;
  @include rounded($radius);
  &.small {
    font-size:0.8em;
  }
  &.large {
    font-size:1.5em;
  }
  &.error {
    background:$error-color;
    border:1px solid darken($error-color, 10%);
    color:$button-text;
  }
  &.warning {
    background:$warning-color;
    border:1px solid darken($warning-color, 10%);
    color:$button-text;
  }
  &.success {
    background:$success-color;
    border:1px solid darken($success-color, 10%);
    color:$button-text;
  }
  &.square {
    @include rounded(0);
  }
  &.round {
    @include rounded(9999px);
  }
  &.disabled {
    @include state(disabled);
  }
  // content overrides
  h1, h2, h3, h4, h5, h6 {
    color:$button-text;
  }
  *:last-child {
    margin-bottom:0;
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
groundworkcss-rails-0.2.7 vendor/assets/stylesheets/groundworkcss-scss/_callouts.scss
groundworkcss-rails-0.2.6 vendor/assets/stylesheets/groundworkcss-scss/_callouts.scss