Skip to content

Instantly share code, notes, and snippets.

@sapegin
Created May 26, 2014 13:55
Show Gist options
  • Save sapegin/1bcd40cea54808f26248 to your computer and use it in GitHub Desktop.
Save sapegin/1bcd40cea54808f26248 to your computer and use it in GitHub Desktop.
body {
background: -webkit-linear-gradient(top, #fff, #000);
background: -moz-linear-gradient(top, #fff, #000);
background: -o-linear-gradient(top, #fff, #000);
background: -ms-linear-gradient(top, #fff, #000);
background: linear-gradient(to bottom, #fff, #000);
}
body {
background: -webkit-linear-gradient(top, #fff, #000);
background: -moz-linear-gradient(top, #fff, #000);
background: -o-linear-gradient(top, #fff, #000);
background: -ms-linear-gradient(top, #fff, #000);
background: linear-gradient(to bottom, #fff, #000);
}
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-stylus');
grunt.initConfig({
stylus: {
options: {
compress: false
},
basic: {
files: {
"c1.css": "s1.styl"
}
},
dropzone: {
files: {
"c2.css": "s2.styl"
}
}
}
});
grunt.registerTask('default', ['stylus']);
};
@import 'nib';
body {
background: linear-gradient(top, white, black);
}
@import 'nib';
body {
background: linear-gradient(top, white, black);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment