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
//Requires jquery | |
function regCodeComponent() { | |
'use strict'; | |
var regController = {}; | |
var valid_codes = ['ramseynyc', 'sethsblog', 'garynyc']; | |
regController.init = function (button) { | |
regController.$button = $j(button); |
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
<div class="Brand sc"> | |
<h4>Pop</h4> | |
<h3 class="popBrand">Force Pop</h3> | |
<h4 class="unpopBrand">UnPop</h4> | |
</div> |
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
ul { | |
clear: both; | |
padding: 90px 0 0 0; | |
counter-reset: steps-counter; | |
li { | |
clear: both; | |
&:before { | |
@extend h2; | |
display: inline; | |
content: "Step " counter(steps-counter); |
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
<div class="spriteWrapper sc max_lucado"> | |
<img src="http://a248.e.akamai.net/f/1611/26335/9h/dramsey.download.akamai.com/23572/daveramsey.com/media/fpu/stewardship/conference_2014/sc_headshot_sprite_116.png" alt=""/> | |
</div> | |
<div class="spriteWrapper sc dave_ramsey"> | |
<img src="http://a248.e.akamai.net/f/1611/26335/9h/dramsey.download.akamai.com/23572/daveramsey.com/media/fpu/stewardship/conference_2014/sc_headshot_sprite_116.png" alt=""/> | |
</div> | |
<div class="spriteWrapper sc tom_stanley"> | |
<img src="http://a248.e.akamai.net/f/1611/26335/9h/dramsey.download.akamai.com/23572/daveramsey.com/media/fpu/stewardship/conference_2014/sc_headshot_sprite_116.png" alt=""/> | |
</div> | |
<p>test</p> |
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
# using include to include both class methods and instance methods | |
# http://www.railstips.org/blog/archives/2009/05/15/include-vs-extend-in-ruby/ | |
module Foo | |
def self.included(base) | |
base.extend(ClassMethods) | |
end | |
module ClassMethods | |
def bar |
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
a[href='#']:after { | |
content: ' ⚠'; | |
color: red; | |
} |
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
<article class="EventPass theme--ljl"> | |
<a href="#">test</a> | |
<p>test</p> | |
</article> |
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
@mixin color-theme( | |
$seating_class: $default-primary, | |
$fineprint: $default-background, | |
$fineprint_copy: $default-primary--inverse, | |
$icons: $default-primary | |
) { | |
%theme-seating_class { | |
color: $seating_class; | |
} |
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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
//Generator | |
@mixin theme-generator( | |
$post__title: "", | |
$post__subtitle: "" | |
) { |
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
.post__title, | |
.post__subtitle { | |
color: black; | |
} | |
.theme--forest .post__title { | |
color: forestgreen; | |
} | |
.theme--forest .post__subtitle { |
OlderNewer