This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Quick CSS Resets for Sass | |
// | |
// .example { | |
// @include reset(spacing); | |
// } | |
@mixin reset($type: null) { | |
@if $type == spacing { margin: 0; padding: 0; } | |
@if $type == list { margin: 0; padding: 0; list-style: none; | |
& li { margin: 0; padding: 0; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Tint/Shade for Sass | |
// | |
// .example { | |
// background-color: tint($color-var, 35%); | |
// color: shade(#00cdff, 20%); | |
// } | |
@function tint($color, $percentage) { | |
@return mix(white, $color, $percentage); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Custom Luminate Transaction Summary | |
For use in place of [[S120:dc:transactionSummary]] | |
--> | |
<p>Date: [[S120:dc:transactionDate]]<br /> | |
Amount: [[S120:dc:giftAmount]] | |
[[?xx::x[[S120:dc:recurringFrequencyLabel]]x::::<br />Frequency: [[S120:dc:recurringFrequencyLabel]]]] | |
[[?xx[[S120:dc:premiumSelected]]xx::xxfalsexx::::<br />Thank You Gift: [[S120:dc:premiumName]]]]</p> | |
<p>[[S120:dc:firstName]] [[?xx::x[[S120:dc:middleName]]x::::[[S120:dc:middleName]] ]][[S120:dc:lastName]]<br /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// wamu.org Core Palette Sass Vars | |
// Some of the primary colors used on wamu.org | |
// Questions? zelnar@wamu.org | |
$almost-white: #f7f7fa; /* Ex: Page Background */ | |
$gray: #777777; /* Ex: Captions */ | |
$gray-dark: #242e33; /* Ex: Headline */ | |
$gray-cool: #596980; /* Ex: Story Text, Footer Ground */ | |
$blue: #0077cc; /* Ex: Global Nav Text */ |