gbissett (owner)

Revisions

gist: 229707 Download_button fork
public
Public Clone URL: git://gist.github.com/229707.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
whitey:dev grant$ cat test.sass
= vendor_attribute(!attribute, !value)
  :-webkit-#{!attribute} #{!value}
  :-moz-#{!attribute} #{!value}
  :-o-#{!attribute} #{!value}
  :#{!attribute} #{!value}
 
h1
  +vendor_attribute("box-shadow", "1px 1px 1px red")
 
whitey:dev grant$ sass test.sass
h1 {
  -webkit-box-shadow: 1px 1px 1px red;
  -moz-box-shadow: 1px 1px 1px red;
  -o-box-shadow: 1px 1px 1px red;
  box-shadow: 1px 1px 1px red; }