- Susy removes this layer altogether. You can immediately target any css class and apply a grid to it.
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
// Assign these to play around with | |
$a = 1; | |
$b = 2; | |
// 1. Assignment operators | |
$a = $b; // Assign the value of $b to $a | |
$a += $b; // Assign the value of $a + $b to $a | |
$a -= $b; // Assign the value of $a - $b to $a | |
$a .= $b; // Concatenate $a and $b |
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
#function for all the fun GIT stuff, w00t! | |
function parse_git_dirty { | |
[[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*" | |
} | |
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1$(parse_git_dirty)]/" | |
} | |
export PS1='\[\033[1m\]\[\033[40m\]\[\033[40m\]\[\033[30m\]Mac\[\033[40m\]\[\033[35m\] \w\[\033[0;32m\]$(parse_git_branch)\[\033[35m\]$\[\033[37m\] ' | |
#export PATH="$PATH:~/dev/drush:/usr/local/bin" |
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
$(function(){ | |
var win = $(window); //cache your jq objects! | |
function fixScrollTop(){ | |
win.scrollTop(win.scrollTop() - 50); | |
} | |
if(window.location.hash !== ""){ |
Readme:
Hello.
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
Code examples from book. | |
http://my.safaribooksonline.com/book/-/9781849516709 |
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
asdsad | |
asdsa | |
d | |
ds | |
da | |
s | |
da |
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="comment-count sticker"> | |
<a href="#disqus_thread" data-disqus-identifier="" class="icon icon--online">Comment</a> | |
</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
#featured a.join-today strong { | |
line-height: 32px; | |
} |
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
B |
OlderNewer