Sha256: 7f67a8b547665949e3d78032c4bc88c17fe228d10bcc64372d94410bdd66e70e

Contents?: true

Size: 1.1 KB

Versions: 3

Compression:

Stored size: 1.1 KB

Contents

// Stipe comes with a series of pre-designed buttons that are easily useable and configutable
// gloss-default, shiny-default, flat-default and three-dee
// -----------------------------------------------------------

// Default values - edit in `_config.scss` file
// -----------------------------------------------------------
$button-color:  $button-color !default;
$button-text-color: $white !default;
$button-line-height: 32 !default;
$button-border-radius: 3 !default;
$button-padding: 20 !default;
$button-font-size: 18 !default;
$button-weight: bold !default;
$button-text-shadow: true !default;
$button-box-shadow: true !default;

// button-default
// -----------------------------------------------------------
@mixin button-default ($text-color: $button-text-color, $line-height: $button-line-height, $border-radius: $button-border-radius, $padding: $button-padding, $font-size: $button-font-size, $weight: $button-weight){
  color: $text-color;
  line-height: em($line-height);
  border-radius: em($border-radius);
  padding: 0 em($padding);
  font-size: em($font-size);
  font-weight: $weight;
}

@import "lib/*";

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
stipe-0.0.5.7.2 stylesheets/stipe/buttons/_mixins.scss
stipe-0.0.5.7.1 stylesheets/stipe/buttons/_mixins.scss
stipe-0.0.5.7 stylesheets/stipe/buttons/_mixins.scss