mirror of
https://github.com/koodiklinikka/koodiklinikka.fi.git
synced 2026-02-12 05:51:55 +00:00
initial commit
This commit is contained in:
2
src/coffee/main.coffee
Normal file
2
src/coffee/main.coffee
Normal file
@@ -0,0 +1,2 @@
|
||||
$ = require 'jquery'
|
||||
console.log 'foobar'
|
||||
8
src/jade/index.jade
Normal file
8
src/jade/index.jade
Normal 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
27
src/stylus/mixins.styl
Normal 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
4
src/stylus/style.styl
Normal file
@@ -0,0 +1,4 @@
|
||||
@import "mixins"
|
||||
|
||||
body, html
|
||||
margin 0
|
||||
Reference in New Issue
Block a user