initial commit

This commit is contained in:
Riku Rouvila
2014-01-14 09:15:11 +02:00
commit a88e1a4f7b
11 changed files with 186 additions and 0 deletions

2
src/coffee/main.coffee Normal file
View File

@@ -0,0 +1,2 @@
$ = require 'jquery'
console.log 'foobar'

8
src/jade/index.jade Normal file
View File

@@ -0,0 +1,8 @@
doctype html
html
head
title Gulp template
link(rel='stylesheet', href='css/style.css')
script(src='js/bundle.js')
body
h1 Hello world!

27
src/stylus/mixins.styl Normal file
View File

@@ -0,0 +1,27 @@
vendor(prop, args)
-webkit-{prop} args
-moz-{prop} args
-ms-{prop} args
-o-{prop} args
{prop} args
border-radius()
vendor('border-radius', arguments)
user-select()
vendor('user-select', arguments)
box-shadow()
vendor('box-shadow', arguments)
box-sizing()
vendor('box-sizing', arguments)
transition()
vendor('transition', arguments)
transform()
vendor('transform', arguments)
animation()
vendor('animation', arguments)

4
src/stylus/style.styl Normal file
View File

@@ -0,0 +1,4 @@
@import "mixins"
body, html
margin 0