Skip to content

Instantly share code, notes, and snippets.

@jameswomack
Created April 14, 2014 05:49
Show Gist options
  • Save jameswomack/10619442 to your computer and use it in GitHub Desktop.
Save jameswomack/10619442 to your computer and use it in GitHub Desktop.
mooshoo()
background url('mooshoo.png')
foo(i)
-webkit-foo: i;
-opera-foo: i;
-mozilla-foo: i;
foo: i;
#foo
height 100em
a
mooshoo()
.bar
width 900px
&:hover
height 120em
#baz
a
mooshoo()
.qux
foo(44)
#foo {
height: 100em;
}
#foo .bar {
width: 900px;
}
#foo:hover {
height: 120em;
}
#foo a, #baz a {
background: url('mooshoo.png');
}
#baz .qux {
-webkit-foo: 44;
-opera-foo: 44;
-mozilla-foo: 44;
foo: 44;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment