Notes On Susy
General
- Susy removes this layer altogether. You can immediately target any css class and apply a grid to it.
// 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 |
#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" |
$(function(){ | |
var win = $(window); //cache your jq objects! | |
function fixScrollTop(){ | |
win.scrollTop(win.scrollTop() - 50); | |
} | |
if(window.location.hash !== ""){ |
Readme:
Hello.
Code examples from book. | |
http://my.safaribooksonline.com/book/-/9781849516709 |
asdsad | |
asdsa | |
d | |
ds | |
da | |
s | |
da |
<div class="comment-count sticker"> | |
<a href="#disqus_thread" data-disqus-identifier="" class="icon icon--online">Comment</a> | |
</div> |
#featured a.join-today strong { | |
line-height: 32px; | |
} |
B |