2012-11-28 12:09:54 +01:00
|
|
|
// ===========================================================================
|
|
|
|
// THEMES
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// EASY LINK COLORS
|
|
|
|
|
2012-11-28 17:23:08 +01:00
|
|
|
$hover: "&:hover, &:focus";
|
|
|
|
|
2012-11-28 12:09:54 +01:00
|
|
|
@mixin link($link-setting: $link-color, $hover-setting: $link-hover-color, $active-setting: $link-active-color) {
|
|
|
|
&,
|
|
|
|
&:visited { color: $link-setting; }
|
|
|
|
|
2012-11-28 17:23:08 +01:00
|
|
|
#{$hover} { color: $hover-setting; }
|
2012-11-28 12:09:54 +01:00
|
|
|
|
|
|
|
&:active { color: $active-setting; }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
2012-11-28 17:23:08 +01:00
|
|
|
// TEXT SHADOWS
|
|
|
|
|
|
|
|
@mixin text-shadow($color-setting: $shadow-color) { text-shadow: 0 -1px 1px $color-setting; }
|
|
|
|
|
2012-11-28 12:09:54 +01:00
|
|
|
|
|
|
|
|
2012-11-28 17:23:08 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// ALL CAPS
|
|
|
|
|
|
|
|
@mixin caps {
|
|
|
|
@extend %source-sans-pro-bold;
|
|
|
|
@include font-size($font-size, $line-height-alt);
|
|
|
|
letter-spacing: .05em;
|
|
|
|
text-transform: uppercase;
|
2012-11-28 12:09:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-11-28 17:23:08 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// TAPPABLE LINKS
|
2012-11-28 12:09:54 +01:00
|
|
|
|
2012-11-28 17:23:08 +01:00
|
|
|
@mixin tappable-link {
|
|
|
|
display: inline-block;
|
|
|
|
padding: .875em 2em;
|
|
|
|
text-align: center;
|
|
|
|
@include caps;
|
2012-11-28 12:09:54 +01:00
|
|
|
}
|