Sha256: 32c0669a9cea0652ef9459fcf777eee795179d370fabce56efef59c24eef1c2b

Contents?: true

Size: 1.46 KB

Versions: 39

Compression:

Stored size: 1.46 KB

Contents

/// Typographic Mixins

@mixin copy-face {
  font-family: "azo-sans-web", arial, "helvetica neue", helvetica, sans-serif;
  font-weight: 400;
}

@mixin title-face {
  font-family: "azo-sans-web", arial, "helvetica neue", helvetica, sans-serif;
  font-weight: 700;
}

@mixin title-face-highlight {
  font-family: "azo-sans-web", arial, "helvetica neue", helvetica, sans-serif;
  font-weight: 400;
  color: $heading-highlight-color;
}

@mixin reversed-text-smoothing {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@mixin no-text-smoothing {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

@mixin subtle-heading {
  @include heading-5;
  @include copy-face;
  color: $heading-highlight-color;
  margin-bottom: 1em;
}

@mixin link-reverse-alt {
  color: $link-color-reverse-alt;
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid transparent;

  &:hover, &:focus {
    color: shade($link-color-reverse-alt, 40%);
    text-decoration: none;
    border-color: $highlight-color;
  }
}

@mixin button-highlight {
  @include button;
  color: $text-color;
  background-color: $highlight-color;
  &:hover,
  &:focus {
    color:$text-color;
    background-color: $highlight-color-hover;
  }
}

@mixin navigation-link {
  color:$highlight-color;

  &:hover, &:focus {
    color: $highlight-color-hover;
    border-color: transparent;
  }
  @include breakpoint($breakpoint-nav) {
    @include link-reverse-alt;
  }
}



Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
trusty-festivity-extension-2.5.0 app/assets/stylesheets/skins/traf/library/_general-mixins.scss
trusty-festivity-extension-2.4.6 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.4.5 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.4.4 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.4.3 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.4.2 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.4.1 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.4.0 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.3.30 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.3.29 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.3.28 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.3.27 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.3.26 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.3.25 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.3.24 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.3.23 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.3.22 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.3.21 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.3.20 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss
trusty-festivity-extension-2.3.19 app/assets/stylesheets/traf-stylesheets/library/_general-mixins.scss